diff options
author | 2008-12-30 18:53:51 +0000 | |
---|---|---|
committer | 2008-12-30 18:53:51 +0000 | |
commit | 04987915d0534c03e635b13cae17ffb87aebc2e4 (patch) | |
tree | bf501f9f8f8c133059ebc32c83deea5d8ccf9d90 /app-emulation/dinero | |
parent | Add ~arm/~s390 wrt #238712 (diff) | |
download | gentoo-2-04987915d0534c03e635b13cae17ffb87aebc2e4.tar.gz gentoo-2-04987915d0534c03e635b13cae17ffb87aebc2e4.tar.bz2 gentoo-2-04987915d0534c03e635b13cae17ffb87aebc2e4.zip |
QA: Respect AR/CC/RANLIB (bug 243576)
(Portage version: 2.2_rc20/cvs/Linux 2.6.28 x86_64)
Diffstat (limited to 'app-emulation/dinero')
-rw-r--r-- | app-emulation/dinero/ChangeLog | 7 | ||||
-rw-r--r-- | app-emulation/dinero/dinero-4.7.ebuild | 12 |
2 files changed, 15 insertions, 4 deletions
diff --git a/app-emulation/dinero/ChangeLog b/app-emulation/dinero/ChangeLog index c05213f8ad02..d2b96a32dd74 100644 --- a/app-emulation/dinero/ChangeLog +++ b/app-emulation/dinero/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-emulation/dinero -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/dinero/ChangeLog,v 1.9 2007/05/13 18:25:56 bangert Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emulation/dinero/ChangeLog,v 1.10 2008/12/30 18:53:51 angelos Exp $ + + 30 Dec 2008; Christoph Mende <angelos@gentoo.org> dinero-4.7.ebuild: + QA: Respect AR/CC/RANLIB (bug 243576) 13 May 2007; Thilo Bangert <bangert@gentoo.org> metadata.xml: add <herd>no-herd</herd> diff --git a/app-emulation/dinero/dinero-4.7.ebuild b/app-emulation/dinero/dinero-4.7.ebuild index 71123422ab01..792cfdf40a8c 100644 --- a/app-emulation/dinero/dinero-4.7.ebuild +++ b/app-emulation/dinero/dinero-4.7.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2005 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emulation/dinero/dinero-4.7.ebuild,v 1.8 2005/04/24 03:07:04 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emulation/dinero/dinero-4.7.ebuild,v 1.9 2008/12/30 18:53:51 angelos Exp $ + +inherit toolchain-funcs MY_P="d${PV/./-}" S="${WORKDIR}/${MY_P}" @@ -13,6 +15,12 @@ KEYWORDS="x86 ppc" LICENSE="as-is" IUSE="" +src_compile() { + tc-export AR CC RANLIB + econf + emake || die "emake failed" +} + src_install() { dobin dineroIV || die "dobin failed" dodoc CHANGES COPYRIGHT NOTES README TODO || die "dodoc failed" |