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/jam-2.4.ebuild | |
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/jam-2.4.ebuild')
-rw-r--r-- | dev-util/jam/jam-2.4.ebuild | 26 |
1 files changed, 26 insertions, 0 deletions
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 +} |