diff options
Diffstat (limited to 'x11-libs/gtkscintilla2')
-rw-r--r-- | x11-libs/gtkscintilla2/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/gtkscintilla2/Manifest | 4 | ||||
-rw-r--r-- | x11-libs/gtkscintilla2/gtkscintilla2-0.0.8.ebuild | 8 |
3 files changed, 12 insertions, 7 deletions
diff --git a/x11-libs/gtkscintilla2/ChangeLog b/x11-libs/gtkscintilla2/ChangeLog index d17b7f48ef83..29a472855c57 100644 --- a/x11-libs/gtkscintilla2/ChangeLog +++ b/x11-libs/gtkscintilla2/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-libs/gtkscintilla2 # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkscintilla2/ChangeLog,v 1.3 2003/10/08 09:36:51 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkscintilla2/ChangeLog,v 1.4 2003/12/13 22:36:45 zul Exp $ + + 13 Dec 2003; Chuck Short <zul@gentoo.org> gtkscintilla2-0.0.8.ebuild: + Added amd64 support. + Added -fPIC so that gtkscintilla2 doesnt bomb on amd64. + Closes #35246. 08 Oct 2003; Alastair Tse <liquidx@gentoo.org> gtkscintilla2-0.0.8.ebuild, metadata.xml: diff --git a/x11-libs/gtkscintilla2/Manifest b/x11-libs/gtkscintilla2/Manifest index ac522234fb56..27d94ed5b713 100644 --- a/x11-libs/gtkscintilla2/Manifest +++ b/x11-libs/gtkscintilla2/Manifest @@ -1,4 +1,4 @@ -MD5 0aa34b485fa62eadaf9c3a799d00625e ChangeLog 705 -MD5 6e8b1b03d6e80a74fd63e87ee5b4d057 gtkscintilla2-0.0.8.ebuild 1123 +MD5 0e83f40e31445d895ecd78c2d8d150c6 gtkscintilla2-0.0.8.ebuild 1137 +MD5 34de6c8b5452e261d98f99a945eaf127 ChangeLog 872 MD5 03ad2e6c4ab41244af1015a8bbb0b39f metadata.xml 158 MD5 f29bb40add3aa939317a482a5351a3fd files/digest-gtkscintilla2-0.0.8 71 diff --git a/x11-libs/gtkscintilla2/gtkscintilla2-0.0.8.ebuild b/x11-libs/gtkscintilla2/gtkscintilla2-0.0.8.ebuild index dc840b1c7434..ec0272f11413 100644 --- a/x11-libs/gtkscintilla2/gtkscintilla2-0.0.8.ebuild +++ b/x11-libs/gtkscintilla2/gtkscintilla2-0.0.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkscintilla2/gtkscintilla2-0.0.8.ebuild,v 1.4 2003/10/08 09:36:51 liquidx Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkscintilla2/gtkscintilla2-0.0.8.ebuild,v 1.5 2003/12/13 22:36:45 zul Exp $ MY_P="GtkScintilla2-${PV}" DESCRIPTION="Gtk-2 wrappers for the Scintilla source editing components." @@ -9,7 +9,7 @@ SRC_URI="http://gphpedit.org/releases/${MY_P}.tar.gz" IUSE="" SLOT="0" -KEYWORDS="x86" +KEYWORDS="x86 amd64" LICENSE="GPL-2" RDEPEND=">=x11-libs/gtk+-2.0" @@ -29,12 +29,12 @@ src_unpack() { # and make use of our CFLAGS cp Makefile Makefile.orig sed -e "/VERSION/s/0.0.3/${PV}/" \ - -e "/CFLAGS/s/-g/${CFLAGS}/" < Makefile.orig > Makefile + -e "/CFLAGS/s/-g/${CFLAGS} -fPIC/" < Makefile.orig > Makefile # and again, in the scintilla part cd ${S}/scintilla/gtk cp makefile makefile.orig - sed -e "/CXXFLAGS/s/-Os/${CFLAGS}/" < makefile.orig > makefile + sed -e "/CXXFLAGS/s/-Os/${CFLAGS} -fPIC/" < makefile.orig > makefile } |