diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2005-05-16 16:25:46 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2005-05-16 16:25:46 +0000 |
commit | e1112ea84856b1b8823054167db6ca85848c52de (patch) | |
tree | 092d17599110444845d59c81b7cf2a518711835d /net-mail/checkpw | |
parent | stable on hppa (diff) | |
download | gentoo-2-e1112ea84856b1b8823054167db6ca85848c52de.tar.gz gentoo-2-e1112ea84856b1b8823054167db6ca85848c52de.tar.bz2 gentoo-2-e1112ea84856b1b8823054167db6ca85848c52de.zip |
Fixed inheriting gcc, Bug 92745.
(Portage version: 2.0.51.19)
Diffstat (limited to 'net-mail/checkpw')
-rw-r--r-- | net-mail/checkpw/ChangeLog | 7 | ||||
-rw-r--r-- | net-mail/checkpw/Manifest | 2 | ||||
-rw-r--r-- | net-mail/checkpw/checkpw-1.01.ebuild | 10 |
3 files changed, 11 insertions, 8 deletions
diff --git a/net-mail/checkpw/ChangeLog b/net-mail/checkpw/ChangeLog index 42f9bf7262cc..e1b1f2c2ac87 100644 --- a/net-mail/checkpw/ChangeLog +++ b/net-mail/checkpw/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-mail/checkpw -# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-mail/checkpw/ChangeLog,v 1.3 2004/07/01 22:29:22 eradicator Exp $ +# Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-mail/checkpw/ChangeLog,v 1.4 2005/05/16 16:25:46 matsuu Exp $ + + 16 May 2005; MATSUU Takuto <matsuu@gentoo.org> checkpw-1.01.ebuild: + Fixed inheriting gcc, Bug 92745. 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> checkpw-1.01.ebuild: virtual/glibc -> virtual/libc diff --git a/net-mail/checkpw/Manifest b/net-mail/checkpw/Manifest index 07901319bc29..bf1d534deaa5 100644 --- a/net-mail/checkpw/Manifest +++ b/net-mail/checkpw/Manifest @@ -1,4 +1,4 @@ +MD5 8b63af63c876e18d8d3d67961befb46f checkpw-1.01.ebuild 1711 MD5 5bbef6103da6e38a1d8536fabab89b58 ChangeLog 424 -MD5 801eee43279f78a26bc460b2a51ae547 checkpw-1.01.ebuild 1701 MD5 4eac7ce84d867cb31c2da842504c6336 metadata.xml 512 MD5 60b13a4dcd71f0024bc66e32f783ee82 files/digest-checkpw-1.01 63 diff --git a/net-mail/checkpw/checkpw-1.01.ebuild b/net-mail/checkpw/checkpw-1.01.ebuild index 5bb60da4804b..ed198faa14c3 100644 --- a/net-mail/checkpw/checkpw-1.01.ebuild +++ b/net-mail/checkpw/checkpw-1.01.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/checkpw/checkpw-1.01.ebuild,v 1.3 2004/07/01 22:29:22 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-mail/checkpw/checkpw-1.01.ebuild,v 1.4 2005/05/16 16:25:46 matsuu Exp $ -inherit gcc +inherit toolchain-funcs DESCRIPTION="an implementation of the checkpassword interface that checks a password" HOMEPAGE="http://checkpw.sourceforge.net/checkpw/" @@ -23,8 +23,8 @@ src_unpack() { # the -s is from the original build LDFLAGS="${LDFLAGS} -s" use static && LDFLAGS="${LDFLAGS} -static" - echo "$(gcc-getCC) ${CFLAGS}" > conf-cc || die - echo "$(gcc-getCC) ${LDFLAGS}" > conf-ld || die + echo "$(tc-getCC) ${CFLAGS}" > conf-cc || die + echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die echo ".maildir" > conf-maildir || die if [ -z "$QMAIL_HOME" ]; then |