diff options
author | Alastair Tse <liquidx@gentoo.org> | 2004-01-24 22:58:53 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2004-01-24 22:58:53 +0000 |
commit | ed1cd3d6dd2beb3ec6d971c4c78d02d5eec80871 (patch) | |
tree | 4778b80e3fb9d91064df1c83198c614df818f65c /dev-tcltk | |
parent | Removed build from IUSE, because the kernel eclass already adds it. (diff) | |
download | gentoo-2-ed1cd3d6dd2beb3ec6d971c4c78d02d5eec80871.tar.gz gentoo-2-ed1cd3d6dd2beb3ec6d971c4c78d02d5eec80871.tar.bz2 gentoo-2-ed1cd3d6dd2beb3ec6d971c4c78d02d5eec80871.zip |
applied more fixes for unresolved symbols (#29371)
Diffstat (limited to 'dev-tcltk')
-rw-r--r-- | dev-tcltk/tix/ChangeLog | 7 | ||||
-rw-r--r-- | dev-tcltk/tix/tix-8.2.0.ebuild | 10 |
2 files changed, 11 insertions, 6 deletions
diff --git a/dev-tcltk/tix/ChangeLog b/dev-tcltk/tix/ChangeLog index 9de07e97e41c..fdd2cfdd239a 100644 --- a/dev-tcltk/tix/ChangeLog +++ b/dev-tcltk/tix/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-tcltk/tix -# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tix/ChangeLog,v 1.5 2003/10/18 13:25:38 liquidx Exp $ +# Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tix/ChangeLog,v 1.6 2004/01/24 22:58:53 liquidx Exp $ + + 24 Jan 2004; Alastair Tse <liquidx@gentoo.org> tix-8.2.0.ebuild: + applied more fixes for unresolved symbols (#29371) 18 Oct 2003; Alastair Tse <liquidx@gentoo.org> tix-8.2.0.ebuild: add fix for unresolved symbols in X11 (#29371) diff --git a/dev-tcltk/tix/tix-8.2.0.ebuild b/dev-tcltk/tix/tix-8.2.0.ebuild index c332b76d66c9..6bbd7e8f84de 100644 --- a/dev-tcltk/tix/tix-8.2.0.ebuild +++ b/dev-tcltk/tix/tix-8.2.0.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. +# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tix/tix-8.2.0.ebuild,v 1.10 2003/10/18 13:26:19 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tix/tix-8.2.0.ebuild,v 1.11 2004/01/24 22:58:53 liquidx Exp $ MY_P=${P/-/} S=${WORKDIR}/${MY_P}/unix @@ -32,9 +32,11 @@ src_compile() { --enable-shared || die "./configure failed" ebegin "Fixing the Makefile..." - sed -e 's:TK_LIBS =:TK_LIBS = -L/usr/X11R6/lib -lX11:' -i ${S}/unix/Makefile + sed -e 's:TK_LIBS =:TK_LIBS = -L/usr/X11R6/lib -lX11:' \ + -e 's:^\(SHLIBS_LD_LIBS.*\):\1 ${TK_LIBS}:' \ + -i ${S}/unix/Makefile + eend $? - make || die } |