summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Schlemmer <azarah@gentoo.org>2002-12-28 00:05:38 +0000
committerMartin Schlemmer <azarah@gentoo.org>2002-12-28 00:05:38 +0000
commitd502b84022daa68b5bee4e0a5475257305bdf1c8 (patch)
tree17cc4e810bfe2a319a623b6c149608033ef7f12d /dev-util
parentAdded configure patch to ebuild. Submitted by Arnim Littek (diff)
downloadgentoo-2-d502b84022daa68b5bee4e0a5475257305bdf1c8.tar.gz
gentoo-2-d502b84022daa68b5bee4e0a5475257305bdf1c8.tar.bz2
gentoo-2-d502b84022daa68b5bee4e0a5475257305bdf1c8.zip
tab fixes, etc; mark stable
Diffstat (limited to 'dev-util')
-rw-r--r--dev-util/jam/ChangeLog8
-rw-r--r--dev-util/jam/jam-2.4.ebuild21
2 files changed, 18 insertions, 11 deletions
diff --git a/dev-util/jam/ChangeLog b/dev-util/jam/ChangeLog
index 028bef8f7c7d..da55fea7eb07 100644
--- a/dev-util/jam/ChangeLog
+++ b/dev-util/jam/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for dev-util/jam
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/jam/ChangeLog,v 1.1 2002/11/04 01:22:28 jrray Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/jam/ChangeLog,v 1.2 2002/12/28 00:05:38 azarah Exp $
+
+ 28 Dec 2002; Martin Schlemmer <azarah@gentoo.org> :
+ Tab fixes, etc. Mark stable as it test fine, and not critical
+ ebuild. I should note that Brian Olsen <bnolsen@attbi.com> also
+ submitted an ebuild long ago, but I could just never get to
+ it (bug #4583).
*jam-2.4 (03 Nov 2002)
diff --git a/dev-util/jam/jam-2.4.ebuild b/dev-util/jam/jam-2.4.ebuild
index 8501c79e37dd..f9c79dea0d05 100644
--- a/dev-util/jam/jam-2.4.ebuild
+++ b/dev-util/jam/jam-2.4.ebuild
@@ -1,26 +1,27 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/jam/jam-2.4.ebuild,v 1.1 2002/11/04 01:22:28 jrray Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/jam/jam-2.4.ebuild,v 1.2 2002/12/28 00:05:38 azarah Exp $
+IUSE=""
+
+S="${WORKDIR}/${P}"
DESCRIPTION="jam (Just Another Make) - advanced make replacement"
-HOMEPAGE="http://www.perforce.com/jam/jam.html"
SRC_URI="ftp://ftp.perforce.com/pub/jam/${P}.zip"
+HOMEPAGE="http://www.perforce.com/jam/jam.html"
+
LICENSE="as-is"
SLOT="0"
-KEYWORDS="~x86"
-IUSE=""
+KEYWORDS="x86"
+
DEPEND="dev-util/yacc"
-RDEPEND=""
-S=${WORKDIR}/${P}
src_compile() {
- # the bootstrap makefile assumes ${S} is in the path
- PATH=${PATH}:${S} make || die
+ # The bootstrap makefile assumes ${S} is in the path
+ PATH="${PATH}:${S}" make || die
}
src_install() {
- cd ${S}
- BINDIR=${D}/usr/bin ./jam0 install
+ BINDIR="${D}/usr/bin" ./jam0 install
dohtml Jam.html Jambase.html Jamfile.html
dodoc README RELNOTES Porting
}