diff options
author | Ryan Hill <dirtyepic@gentoo.org> | 2009-08-13 04:40:31 +0000 |
---|---|---|
committer | Ryan Hill <dirtyepic@gentoo.org> | 2009-08-13 04:40:31 +0000 |
commit | b7446e3ba9d325ffd3ca099d558156ab8bc4f3f1 (patch) | |
tree | fe6778bcd30470b7c19c55d329d0ef7a1b44f7e8 /dev-util/ftjam/ftjam-2.5.3_rc2-r1.ebuild | |
parent | Version bump. (diff) | |
download | gentoo-2-b7446e3ba9d325ffd3ca099d558156ab8bc4f3f1.tar.gz gentoo-2-b7446e3ba9d325ffd3ca099d558156ab8bc4f3f1.tar.bz2 gentoo-2-b7446e3ba9d325ffd3ca099d558156ab8bc4f3f1.zip |
Revision bump. Respect CC (bug #244002), CFLAGS (bug #240276), and LDFLAGS
(bug #281210) for the jam part of the build.
(Portage version: 2.2_rc38/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/ftjam/ftjam-2.5.3_rc2-r1.ebuild')
-rw-r--r-- | dev-util/ftjam/ftjam-2.5.3_rc2-r1.ebuild | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/dev-util/ftjam/ftjam-2.5.3_rc2-r1.ebuild b/dev-util/ftjam/ftjam-2.5.3_rc2-r1.ebuild new file mode 100644 index 000000000000..cf22902da332 --- /dev/null +++ b/dev-util/ftjam/ftjam-2.5.3_rc2-r1.ebuild @@ -0,0 +1,43 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/ftjam/ftjam-2.5.3_rc2-r1.ebuild,v 1.1 2009/08/13 04:40:31 dirtyepic Exp $ + +inherit eutils toolchain-funcs versionator + +MY_PV=$(delete_version_separator _) + +DESCRIPTION="Jam is a powerful alternative to make. FTJam is a 100% compatible enhanced Jam implementation." +HOMEPAGE="http://freetype.sourceforge.net/jam/index.html" +SRC_URI="http://david.freetype.org/jam/ftjam-${MY_PV}.tar.bz2" + +LICENSE="perforce GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" + +DEPEND="!dev-util/jam + sys-devel/bison" +RDEPEND="!dev-util/jam" + +S=${WORKDIR}/${PN}-${MY_PV} + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-2.5.3-nostrip.patch + epatch "${FILESDIR}"/${PN}-2.5.3-i-hate-yacc.patch + epatch "${FILESDIR}"/${PN}-2.5.3-false-flags.patch +# epatch "${FILESDIR}"/${PN}-2.5.3-debug-commandline.patch # development only +} + +src_compile() { + tc-export CC + econf + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die + dodoc README README.ORG CHANGES INSTALL RELNOTES + dohtml Jam.html Jambase.html Jamfile.html +} |