diff options
author | Andrej Kacian <ticho@gentoo.org> | 2005-05-16 09:50:49 +0000 |
---|---|---|
committer | Andrej Kacian <ticho@gentoo.org> | 2005-05-16 09:50:49 +0000 |
commit | aa47c0ff0821d2b1b62f6b05c057ffe290f08608 (patch) | |
tree | 8e241e1a15d59b3f99a5379918a7fefc6c1a1cb6 /net-mail | |
parent | (Portage version: 2.0.51.19) (Manifest recommit) (diff) | |
download | gentoo-2-aa47c0ff0821d2b1b62f6b05c057ffe290f08608.tar.gz gentoo-2-aa47c0ff0821d2b1b62f6b05c057ffe290f08608.tar.bz2 gentoo-2-aa47c0ff0821d2b1b62f6b05c057ffe290f08608.zip |
Inherit toolchain-funcs.eclass instead of gcc.eclass. Bug #92745.
(Portage version: 2.0.51.21-r1)
Diffstat (limited to 'net-mail')
-rw-r--r-- | net-mail/checkpassword/ChangeLog | 8 | ||||
-rw-r--r-- | net-mail/checkpassword/checkpassword-0.90-r1.ebuild | 10 |
2 files changed, 11 insertions, 7 deletions
diff --git a/net-mail/checkpassword/ChangeLog b/net-mail/checkpassword/ChangeLog index e425e6c6cd1a..977a41cae51d 100644 --- a/net-mail/checkpassword/ChangeLog +++ b/net-mail/checkpassword/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-mail/checkpassword -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/checkpassword/ChangeLog,v 1.17 2004/07/05 02:29:19 robbat2 Exp $ +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/checkpassword/ChangeLog,v 1.18 2005/05/16 09:50:49 ticho Exp $ + + 16 May 2005; Andrej Kacian <ticho@gentoo.org> + checkpassword-0.90-r1.ebuild: + Inherit toolchain-funcs.eclass instead of gcc.eclass. Bug #92745. 04 Jul 2004; Robin H. Johnson <robbat2@gentoo.org> checkpassword-0.90-r1.ebuild: diff --git a/net-mail/checkpassword/checkpassword-0.90-r1.ebuild b/net-mail/checkpassword/checkpassword-0.90-r1.ebuild index 2b2f96a05ace..6013c622cfcd 100644 --- a/net-mail/checkpassword/checkpassword-0.90-r1.ebuild +++ b/net-mail/checkpassword/checkpassword-0.90-r1.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/checkpassword/checkpassword-0.90-r1.ebuild,v 1.14 2004/07/05 02:29:19 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/checkpassword/checkpassword-0.90-r1.ebuild,v 1.15 2005/05/16 09:50:49 ticho Exp $ -inherit eutils gcc +inherit eutils toolchain-funcs DESCRIPTION="A uniform password checking interface for root applications" HOMEPAGE="http://cr.yp.to/checkpwd.html" @@ -23,8 +23,8 @@ src_unpack() { LDFLAGS="${LDFLAGS} -s" use pic && CFLAGS="${CFLAGS} -fPIC" use static && LDFLAGS="${LDFLAGS} -static" - echo "$(gcc-getCC) ${CFLAGS}" > conf-cc - echo "$(gcc-getCC) ${LDFLAGS}" > conf-ld + echo "$(tc-getCC) ${CFLAGS}" > conf-cc + echo "$(tc-getCC) ${LDFLAGS}" > conf-ld } src_compile() { |