diff options
author | J Robert Ray <jrray@gentoo.org> | 2002-11-04 01:22:28 +0000 |
---|---|---|
committer | J Robert Ray <jrray@gentoo.org> | 2002-11-04 01:22:28 +0000 |
commit | d6add75f823f85f0ce60a1bb11eee3c92e2ed719 (patch) | |
tree | 64f00e63f945c18238a9768f3f415116db9b90d5 /dev-util/jam | |
parent | fixed metacity-2.4.3 gcc ICE patch for ppc (diff) | |
download | gentoo-2-d6add75f823f85f0ce60a1bb11eee3c92e2ed719.tar.gz gentoo-2-d6add75f823f85f0ce60a1bb11eee3c92e2ed719.tar.bz2 gentoo-2-d6add75f823f85f0ce60a1bb11eee3c92e2ed719.zip |
new ebuild
Diffstat (limited to 'dev-util/jam')
-rw-r--r-- | dev-util/jam/ChangeLog | 8 | ||||
-rw-r--r-- | dev-util/jam/files/digest-jam-2.4 | 1 | ||||
-rw-r--r-- | dev-util/jam/jam-2.4.ebuild | 26 |
3 files changed, 35 insertions, 0 deletions
diff --git a/dev-util/jam/ChangeLog b/dev-util/jam/ChangeLog new file mode 100644 index 000000000000..028bef8f7c7d --- /dev/null +++ b/dev-util/jam/ChangeLog @@ -0,0 +1,8 @@ +# 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 $ + +*jam-2.4 (03 Nov 2002) + + 03 Nov 2002; J Robert Ray <jrray@gentoo.org> : + New ebuild, submitted by Jeffrey Palmer <jeffrey.palmer@acm.org>. diff --git a/dev-util/jam/files/digest-jam-2.4 b/dev-util/jam/files/digest-jam-2.4 new file mode 100644 index 000000000000..b7dcfa3f7040 --- /dev/null +++ b/dev-util/jam/files/digest-jam-2.4 @@ -0,0 +1 @@ +MD5 9af98a917377fa7406b2f5f5be5e26b6 jam-2.4.zip 181908 diff --git a/dev-util/jam/jam-2.4.ebuild b/dev-util/jam/jam-2.4.ebuild new file mode 100644 index 000000000000..8501c79e37dd --- /dev/null +++ b/dev-util/jam/jam-2.4.ebuild @@ -0,0 +1,26 @@ +# 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 $ + +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" +LICENSE="as-is" +SLOT="0" +KEYWORDS="~x86" +IUSE="" +DEPEND="dev-util/yacc" +RDEPEND="" +S=${WORKDIR}/${P} + +src_compile() { + # the bootstrap makefile assumes ${S} is in the path + PATH=${PATH}:${S} make || die +} + +src_install() { + cd ${S} + BINDIR=${D}/usr/bin ./jam0 install + dohtml Jam.html Jambase.html Jamfile.html + dodoc README RELNOTES Porting +} |