diff options
-rw-r--r-- | dev-util/tmake/ChangeLog | 7 | ||||
-rw-r--r-- | dev-util/tmake/tmake-2.12.ebuild | 15 |
2 files changed, 14 insertions, 8 deletions
diff --git a/dev-util/tmake/ChangeLog b/dev-util/tmake/ChangeLog index 7c6058ba3121..0ddd0c89279d 100644 --- a/dev-util/tmake/ChangeLog +++ b/dev-util/tmake/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/tmake -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/tmake/ChangeLog,v 1.25 2009/01/08 02:54:54 darkside Exp $ +# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-util/tmake/ChangeLog,v 1.26 2010/04/06 09:25:20 abcd Exp $ + + 06 Apr 2010; Jonathan Callen <abcd@gentoo.org> tmake-2.12.ebuild: + Bump to EAPI=3, add prefix keywords 08 Jan 2009; Jeremy Olexa <darkside@gentoo.org> tmake-2.12.ebuild: add ~amd64 kw and QA fixes. bug 253385 diff --git a/dev-util/tmake/tmake-2.12.ebuild b/dev-util/tmake/tmake-2.12.ebuild index b98e78d3b634..57bbe83a128d 100644 --- a/dev-util/tmake/tmake-2.12.ebuild +++ b/dev-util/tmake/tmake-2.12.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/tmake/tmake-2.12.ebuild,v 1.6 2009/01/08 02:54:54 darkside Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/tmake/tmake-2.12.ebuild,v 1.7 2010/04/06 09:25:20 abcd Exp $ + +EAPI="3" DESCRIPTION="A Cross platform Makefile tool" SRC_URI="mirror://sourceforge/tmake/${P}.tar.bz2" @@ -10,15 +12,16 @@ RDEPEND=">=dev-lang/perl-5" SLOT="0" LICENSE="as-is" -KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~s390 ~sparc ~x86" +KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~s390 ~sparc ~x86 ~x86-linux ~ppc-macos" IUSE="" src_install () { dobin bin/tmake bin/progen dodir /usr/lib/tmake - cp -pPRf "${S}"/lib/* "${D}"/usr/lib/tmake + cp -pPRf "${S}"/lib/* "${ED}"/usr/lib/tmake dodoc README dohtml -r doc/* - dodir /etc/env.d - echo "TMAKEPATH=/usr/lib/tmake/linux-g++" > ${D}/etc/env.d/51tmake + echo "TMAKEPATH=\"${EPREFIX}/usr/lib/tmake/linux-g++\"" > "${T}"/51tmake + doenvd "${T}"/51tmake } + |