diff options
author | 2008-12-30 16:35:22 +0000 | |
---|---|---|
committer | 2008-12-30 16:35:22 +0000 | |
commit | b5a5e719b6ea07753aeb518a70e70d8d1fd02bd5 (patch) | |
tree | bf46571a626bd3997ce2fdb207f0706f74228f41 /app-crypt | |
parent | Cleanup (diff) | |
download | gentoo-2-b5a5e719b6ea07753aeb518a70e70d8d1fd02bd5.tar.gz gentoo-2-b5a5e719b6ea07753aeb518a70e70d8d1fd02bd5.tar.bz2 gentoo-2-b5a5e719b6ea07753aeb518a70e70d8d1fd02bd5.zip |
Fixed hardcoded CC as per bug #243534
(Portage version: 2.2_rc20/cvs/Linux 2.6.28-gentoo i686)
Diffstat (limited to 'app-crypt')
-rw-r--r-- | app-crypt/aesutil/ChangeLog | 5 | ||||
-rw-r--r-- | app-crypt/aesutil/aesutil-1.0.7.ebuild | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/app-crypt/aesutil/ChangeLog b/app-crypt/aesutil/ChangeLog index 2a6ab1884280..f9e313fbddc6 100644 --- a/app-crypt/aesutil/ChangeLog +++ b/app-crypt/aesutil/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-crypt/aesutil # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/aesutil/ChangeLog,v 1.6 2008/02/04 20:26:59 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/aesutil/ChangeLog,v 1.7 2008/12/30 16:35:22 mpagano Exp $ + + 30 Dec 2008; Mike Pagano <mpagano@gentoo.org> aesutil-1.0.7.ebuild: + Fixed hardcoded CC as per bug #243534 04 Feb 2008; Fabian Groffen <grobian@gentoo.org> aesutil-1.0.7.ebuild: Dropped ppc-macos keyword, see you in prefix diff --git a/app-crypt/aesutil/aesutil-1.0.7.ebuild b/app-crypt/aesutil/aesutil-1.0.7.ebuild index 903cc708b439..fbc978a646bb 100644 --- a/app-crypt/aesutil/aesutil-1.0.7.ebuild +++ b/app-crypt/aesutil/aesutil-1.0.7.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/aesutil/aesutil-1.0.7.ebuild,v 1.4 2008/02/04 20:26:59 grobian Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/aesutil/aesutil-1.0.7.ebuild,v 1.5 2008/12/30 16:35:22 mpagano Exp $ + +inherit toolchain-funcs MY_P="${PN/util/}-${PV}" DESCRIPTION="Command line program ('aes') to encrypt and decrypt data using the Rijndael algorithm" @@ -18,15 +20,15 @@ S=${WORKDIR}/${MY_P} src_unpack() { unpack ${A} - cd ${S} + cd "${S}" sed -e "s:CFLAGS=-g -Wall:CFLAGS=-g -Wall ${CFLAGS}:" Makefile.linux > Makefile } src_compile() { - emake || die + emake CC="$(tc-getCC)" || die } src_install() { - dobin aes + dobin aes || die dodoc CHANGES INSTALL README TODO } |