diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-25 15:12:58 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-12-25 15:12:58 +0000 |
commit | 4b3b25318248f82bad78cad777df436207ed56e5 (patch) | |
tree | 16a7017c9a2e96b7bd64fc66dcb5775142359186 /net-libs/liblockfile | |
parent | Use bindnow-flags function instead of -Wl,-z,now. Drop ppc-macos special case. (diff) | |
download | gentoo-2-4b3b25318248f82bad78cad777df436207ed56e5.tar.gz gentoo-2-4b3b25318248f82bad78cad777df436207ed56e5.tar.bz2 gentoo-2-4b3b25318248f82bad78cad777df436207ed56e5.zip |
Use bindnow-flags function instead of -Wl,-z,now.
(Portage version: 2.1_pre2)
Diffstat (limited to 'net-libs/liblockfile')
-rw-r--r-- | net-libs/liblockfile/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/liblockfile/liblockfile-1.06.ebuild | 6 |
2 files changed, 8 insertions, 4 deletions
diff --git a/net-libs/liblockfile/ChangeLog b/net-libs/liblockfile/ChangeLog index 55227076f80d..85113dbead2c 100644 --- a/net-libs/liblockfile/ChangeLog +++ b/net-libs/liblockfile/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/liblockfile # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/liblockfile/ChangeLog,v 1.27 2005/08/10 11:24:51 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/liblockfile/ChangeLog,v 1.28 2005/12/25 15:11:56 flameeyes Exp $ + + 25 Dec 2005; Diego Pettenò <flameeyes@gentoo.org> + liblockfile-1.06.ebuild: + Use bindnow-flags function instead of -Wl,-z,now. 10 Aug 2005; Aaron Walker <ka0ttic@gentoo.org> liblockfile-1.06.ebuild: Stable on mips. diff --git a/net-libs/liblockfile/liblockfile-1.06.ebuild b/net-libs/liblockfile/liblockfile-1.06.ebuild index 7e4217fbf78a..c14476938cc1 100644 --- a/net-libs/liblockfile/liblockfile-1.06.ebuild +++ b/net-libs/liblockfile/liblockfile-1.06.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/liblockfile/liblockfile-1.06.ebuild,v 1.10 2005/08/10 11:24:51 ka0ttic Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/liblockfile/liblockfile-1.06.ebuild,v 1.11 2005/12/25 15:11:56 flameeyes Exp $ -inherit eutils multilib +inherit eutils multilib flag-o-matic DESCRIPTION="Implements functions designed to lock the standard mailboxes." SRC_URI="mirror://debian/pool/main/libl/${PN}/${PN}_${PV}.tar.gz" @@ -17,7 +17,7 @@ IUSE="" src_compile() { # Do not use lazy bindings on setXid files - sed -i -e 's~-o dotlockfile~-Wl,-z,now &~g' Makefile.in + sed -i -e 's~-o dotlockfile~'$(bindnow-flags)' &~g' Makefile.in econf --with-mailgroup=mail --enable-shared || die emake || die } |