diff options
author | Jim Ramsay <lack@gentoo.org> | 2007-03-22 21:20:21 +0000 |
---|---|---|
committer | Jim Ramsay <lack@gentoo.org> | 2007-03-22 21:20:21 +0000 |
commit | eea84d78b7014459ac963eec52536974734102e9 (patch) | |
tree | abc7f54b4717788bac8064df0babdd732c4ca784 /x11-plugins/gkrellm-gamma/gkrellm-gamma-2.03-r1.ebuild | |
parent | Avoid storing pointers in 32-bit variables on amd64 (diff) | |
download | historical-eea84d78b7014459ac963eec52536974734102e9.tar.gz historical-eea84d78b7014459ac963eec52536974734102e9.tar.bz2 historical-eea84d78b7014459ac963eec52536974734102e9.zip |
Fixed X11 library location (bug 166556)
Package-Manager: portage-2.1.2-r10
Diffstat (limited to 'x11-plugins/gkrellm-gamma/gkrellm-gamma-2.03-r1.ebuild')
-rw-r--r-- | x11-plugins/gkrellm-gamma/gkrellm-gamma-2.03-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/x11-plugins/gkrellm-gamma/gkrellm-gamma-2.03-r1.ebuild b/x11-plugins/gkrellm-gamma/gkrellm-gamma-2.03-r1.ebuild index 3f09ff9f987d..d5a023b6a36b 100644 --- a/x11-plugins/gkrellm-gamma/gkrellm-gamma-2.03-r1.ebuild +++ b/x11-plugins/gkrellm-gamma/gkrellm-gamma-2.03-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-gamma/gkrellm-gamma-2.03-r1.ebuild,v 1.1 2007/03/09 17:12:12 lack Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/gkrellm-gamma/gkrellm-gamma-2.03-r1.ebuild,v 1.2 2007/03/22 21:20:21 lack Exp $ inherit gkrellm-plugin @@ -25,6 +25,6 @@ src_unpack() { # Fix the TEXTREL error, by linking with the shared version of libXxf86vm # instead of the static sed -i -e 's:/usr/X11R6/lib/libXxf86vm.a::' Makefile || die "sed 1/2 failed" - sed -i -e '/^LIBS/aLIBS += -L/usr/X11R6/lib -lXxf86vm' Makefile || die "sed 2/2 failed" + sed -i -e '/^LIBS/aLIBS += -L/usr/lib -L/usr/X11R6/lib -lXxf86vm' Makefile || die "sed 2/2 failed" } |