diff options
author | Tom Martin <slarti@gentoo.org> | 2004-08-09 17:00:48 +0000 |
---|---|---|
committer | Tom Martin <slarti@gentoo.org> | 2004-08-09 17:00:48 +0000 |
commit | 87b731c555a66d0861448e18b0eb3a4b8790df70 (patch) | |
tree | 4365726f1fb505cbdbad8893f394753c1018f94c /net-libs/libident | |
parent | Stable on hppa. (Manifest recommit) (diff) | |
download | gentoo-2-87b731c555a66d0861448e18b0eb3a4b8790df70.tar.gz gentoo-2-87b731c555a66d0861448e18b0eb3a4b8790df70.tar.bz2 gentoo-2-87b731c555a66d0861448e18b0eb3a4b8790df70.zip |
Marked ~amd64, -fPIC fix
Diffstat (limited to 'net-libs/libident')
-rw-r--r-- | net-libs/libident/ChangeLog | 5 | ||||
-rw-r--r-- | net-libs/libident/libident-0.22.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-libs/libident/ChangeLog b/net-libs/libident/ChangeLog index 7219db306cb7..c2be65a14804 100644 --- a/net-libs/libident/ChangeLog +++ b/net-libs/libident/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-libs/libident # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libident/ChangeLog,v 1.6 2004/07/01 22:25:28 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libident/ChangeLog,v 1.7 2004/08/09 17:00:48 slarti Exp $ + + 09 Aug 2004; Tom Martin <slarti@gentoo.org> libident-0.22.ebuild: + Marked ~amd64, added -fPIC to CFLAGS so it builds. 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> libident-0.22.ebuild: virtual/glibc -> virtual/libc diff --git a/net-libs/libident/libident-0.22.ebuild b/net-libs/libident/libident-0.22.ebuild index c373c1d1def3..5e7977c6fce8 100644 --- a/net-libs/libident/libident-0.22.ebuild +++ b/net-libs/libident/libident-0.22.ebuild @@ -1,18 +1,18 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libident/libident-0.22.ebuild,v 1.9 2004/07/15 00:54:49 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libident/libident-0.22.ebuild,v 1.10 2004/08/09 17:00:48 slarti Exp $ DESCRIPTION="A small library to interface to the Ident protocol server" HOMEPAGE="ftp://ftp.lysator.liu.se/pub/ident/libs" SRC_URI="ftp://ftp.lysator.liu.se/pub/ident/libs/${P}.tar.gz" LICENSE="public-domain" SLOT="0" -KEYWORDS="alpha ~hppa ~mips ~sparc x86 ia64 s390 ~ppc" +KEYWORDS="alpha ~hppa ~mips ~sparc x86 ia64 s390 ~ppc ~amd64" IUSE="" DEPEND="virtual/libc" src_compile() { - emake CFLAGS="${CFLAGS} -DHAVE_ANSIHEADERS" all || die + emake CFLAGS="${CFLAGS} -fPIC -DHAVE_ANSIHEADERS" all || die } src_install() { |