diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2010-09-06 12:50:01 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2010-09-06 12:50:01 +0000 |
commit | bf3352ab581385f04798f9580f4847ba71d117bf (patch) | |
tree | 87eb8d2591dcdaaeb70ed2f0bcadb6fae8dfd5af /x11-plugins/bfm | |
parent | Version bump with some fixes. (diff) | |
download | gentoo-2-bf3352ab581385f04798f9580f4847ba71d117bf.tar.gz gentoo-2-bf3352ab581385f04798f9580f4847ba71d117bf.tar.bz2 gentoo-2-bf3352ab581385f04798f9580f4847ba71d117bf.zip |
Honour Gentoo LDFLAGS. Closes bug #333987.
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'x11-plugins/bfm')
-rw-r--r-- | x11-plugins/bfm/ChangeLog | 5 | ||||
-rw-r--r-- | x11-plugins/bfm/bfm-0.6.4-r1.ebuild | 5 |
2 files changed, 7 insertions, 3 deletions
diff --git a/x11-plugins/bfm/ChangeLog b/x11-plugins/bfm/ChangeLog index 1d658e0187d5..441b979df4e8 100644 --- a/x11-plugins/bfm/ChangeLog +++ b/x11-plugins/bfm/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-plugins/bfm # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/bfm/ChangeLog,v 1.13 2010/01/07 15:57:44 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/bfm/ChangeLog,v 1.14 2010/09/06 12:50:01 s4t4n Exp $ + + 06 Sep 2010; Michele Noberasco <s4t4n@gentoo.org> bfm-0.6.4-r1.ebuild: + Honour Gentoo LDFLAGS. Closes bug #333987. 07 Jan 2010; Christian Faulhammer <fauli@gentoo.org> bfm-0.6.4-r1.ebuild: Transfer Prefix keywords diff --git a/x11-plugins/bfm/bfm-0.6.4-r1.ebuild b/x11-plugins/bfm/bfm-0.6.4-r1.ebuild index 374599016fc5..f8f2afc520e2 100644 --- a/x11-plugins/bfm/bfm-0.6.4-r1.ebuild +++ b/x11-plugins/bfm/bfm-0.6.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/bfm/bfm-0.6.4-r1.ebuild,v 1.7 2010/01/07 15:57:44 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/bfm/bfm-0.6.4-r1.ebuild,v 1.8 2010/09/06 12:50:01 s4t4n Exp $ inherit multilib toolchain-funcs @@ -25,11 +25,12 @@ src_unpack() { sed -e 's:CFLAGS =:CFLAGS +=:' -e 's:LDFLAGS =:LDFLAGS +=:' -e 's:strip:true:' \ -e 's:$(CFLAGS) -o $(BUBBLEFISHYMON):$(CFLAGS) $(SRCS) -o $(BUBBLEFISHYMON):' \ -e 's:$(LIBS) $(GTK2_LIBS) $(SRCS):$(LIBS) $(GTK2_LIBS):' \ + -e 's:-o $(BUBBLEFISHYMON):$(GENTOO_LDFLAGS) -o $(BUBBLEFISHYMON):' \ -i "${S}"/Makefile } src_compile() { - emake CC="$(tc-getCC)" || die "emake failed." + emake CC="$(tc-getCC)" GENTOO_LDFLAGS="${LDFLAGS}" || die "emake failed." if use gkrellm; then emake gkrellm CC="$(tc-getCC)" || die "emake failed." |