diff options
author | 2003-12-13 22:39:42 +0000 | |
---|---|---|
committer | 2003-12-13 22:39:42 +0000 | |
commit | 3c8fae7eb0850a1b7a66bb9ce1893e645a609bab (patch) | |
tree | 2e826e2e3cf9d9f9b98e3e7ebf36ce136b21458e /x11-libs/gtkscintilla2/gtkscintilla2-0.0.8.ebuild | |
parent | trivial fixes (diff) | |
download | gentoo-2-3c8fae7eb0850a1b7a66bb9ce1893e645a609bab.tar.gz gentoo-2-3c8fae7eb0850a1b7a66bb9ce1893e645a609bab.tar.bz2 gentoo-2-3c8fae7eb0850a1b7a66bb9ce1893e645a609bab.zip |
Added -fPIC flags, added amd64 support.
Diffstat (limited to 'x11-libs/gtkscintilla2/gtkscintilla2-0.0.8.ebuild')
-rw-r--r-- | x11-libs/gtkscintilla2/gtkscintilla2-0.0.8.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
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 } |