diff options
author | Michele Noberasco <s4t4n@gentoo.org> | 2010-09-13 08:44:26 +0000 |
---|---|---|
committer | Michele Noberasco <s4t4n@gentoo.org> | 2010-09-13 08:44:26 +0000 |
commit | 73a9c76fdd45d09262e1c99b56e3cc7145962bd2 (patch) | |
tree | 116a2f87a22941b213dc48cc6bde1134df4c373a /x11-plugins/wmsmixer | |
parent | add support for XML parsing with dev-libs/libxml2, which is more efficient th... (diff) | |
download | gentoo-2-73a9c76fdd45d09262e1c99b56e3cc7145962bd2.tar.gz gentoo-2-73a9c76fdd45d09262e1c99b56e3cc7145962bd2.tar.bz2 gentoo-2-73a9c76fdd45d09262e1c99b56e3cc7145962bd2.zip |
Honour Gentoo LDFLAGS, see bug #336964.
(Portage version: 2.1.8.3/cvs/Linux i686)
Diffstat (limited to 'x11-plugins/wmsmixer')
-rw-r--r-- | x11-plugins/wmsmixer/ChangeLog | 7 | ||||
-rw-r--r-- | x11-plugins/wmsmixer/wmsmixer-0.5.1.ebuild | 6 |
2 files changed, 8 insertions, 5 deletions
diff --git a/x11-plugins/wmsmixer/ChangeLog b/x11-plugins/wmsmixer/ChangeLog index b1eabf0a7ac1..8bd6ce5c00ec 100644 --- a/x11-plugins/wmsmixer/ChangeLog +++ b/x11-plugins/wmsmixer/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-plugins/wmsmixer -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsmixer/ChangeLog,v 1.23 2009/06/04 00:25:02 tcunha Exp $ +# Copyright 2002-2010 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsmixer/ChangeLog,v 1.24 2010/09/13 08:44:26 s4t4n Exp $ + + 13 Sep 2010; Michele Noberasco <s4t4n@gentoo.org> wmsmixer-0.5.1.ebuild: + Honour Gentoo LDFLAGS, see bug #336964. 04 Jun 2009; Tiago Cunha <tcunha@gentoo.org> wmsmixer-0.5.1.ebuild: stable sparc, bug 215651 diff --git a/x11-plugins/wmsmixer/wmsmixer-0.5.1.ebuild b/x11-plugins/wmsmixer/wmsmixer-0.5.1.ebuild index c7d93161e763..e94843dce7dd 100644 --- a/x11-plugins/wmsmixer/wmsmixer-0.5.1.ebuild +++ b/x11-plugins/wmsmixer/wmsmixer-0.5.1.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2009 Gentoo Foundation +# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsmixer/wmsmixer-0.5.1.ebuild,v 1.11 2009/06/04 00:25:02 tcunha Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/wmsmixer/wmsmixer-0.5.1.ebuild,v 1.12 2010/09/13 08:44:26 s4t4n Exp $ inherit eutils IUSE="" @@ -22,7 +22,7 @@ DEPEND="${RDEPEND} src_compile() { g++ ${CFLAGS} -I/usr/X11R6/include -c -o wmsmixer.o wmsmixer.cc rm -f wmsmixer - g++ -o wmsmixer ${CFLAGS} -L/usr/X11R6/lib wmsmixer.o -lXpm -lXext -lX11 + g++ ${LDFLAGS} -o wmsmixer ${CFLAGS} -L/usr/X11R6/lib wmsmixer.o -lXpm -lXext -lX11 } src_install() { |