diff options
author | Alastair Tse <liquidx@gentoo.org> | 2004-10-17 18:05:36 +0000 |
---|---|---|
committer | Alastair Tse <liquidx@gentoo.org> | 2004-10-17 18:05:36 +0000 |
commit | 65517728f003b7b6c9891a574891835fe6bbf656 (patch) | |
tree | 68c9e08449c890796b7c05862b5056e32da85491 /x11-libs/gtkscintilla2 | |
parent | Stable on ppc. (diff) | |
download | historical-65517728f003b7b6c9891a574891835fe6bbf656.tar.gz historical-65517728f003b7b6c9891a574891835fe6bbf656.tar.bz2 historical-65517728f003b7b6c9891a574891835fe6bbf656.zip |
stable bump, plus link to gthread-2.0 (#38279)
Diffstat (limited to 'x11-libs/gtkscintilla2')
-rw-r--r-- | x11-libs/gtkscintilla2/ChangeLog | 5 | ||||
-rw-r--r-- | x11-libs/gtkscintilla2/Manifest | 14 | ||||
-rw-r--r-- | x11-libs/gtkscintilla2/gtkscintilla2-0.1.0.ebuild | 17 |
3 files changed, 24 insertions, 12 deletions
diff --git a/x11-libs/gtkscintilla2/ChangeLog b/x11-libs/gtkscintilla2/ChangeLog index 7aa99e7922b0..c0ed7342383e 100644 --- a/x11-libs/gtkscintilla2/ChangeLog +++ b/x11-libs/gtkscintilla2/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for x11-libs/gtkscintilla2 # Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkscintilla2/ChangeLog,v 1.7 2004/06/24 22:02:55 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkscintilla2/ChangeLog,v 1.8 2004/10/17 18:05:36 liquidx Exp $ + + 17 Oct 2004; Alastair Tse <liquidx@gentoo.org> gtkscintilla2-0.1.0.ebuild: + stable bump, plus link to gthread-2.0 (#38279) 13 Mar 2004; David Holm <dholm@gentoo.org> gtkscintilla2-0.1.0.ebuild: Added to ~ppc. diff --git a/x11-libs/gtkscintilla2/Manifest b/x11-libs/gtkscintilla2/Manifest index 34db289790fd..3c49f5b49383 100644 --- a/x11-libs/gtkscintilla2/Manifest +++ b/x11-libs/gtkscintilla2/Manifest @@ -1,6 +1,16 @@ -MD5 c824c625420a5ff9452ea87eb3284b4b ChangeLog 1088 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 ba56c9cb8e3ab49bd8c8e78cf8698bce ChangeLog 1214 MD5 ffcd1cf74fbd27a58e785b42f97bf17a gtkscintilla2-0.0.8.ebuild 1133 -MD5 3eef36c1b76cd3a1395a45e2a7da96ec gtkscintilla2-0.1.0.ebuild 1112 +MD5 c921295b2f0da2090a2c861c9ab6b764 gtkscintilla2-0.1.0.ebuild 1141 MD5 03ad2e6c4ab41244af1015a8bbb0b39f metadata.xml 158 MD5 f29bb40add3aa939317a482a5351a3fd files/digest-gtkscintilla2-0.0.8 71 MD5 dc9e42bf3ab4148baffc1e474a266416 files/digest-gtkscintilla2-0.1.0 71 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.6 (GNU/Linux) + +iD8DBQFBcrSTRkyva5PS18kRAuvSAJwL4dm9mJk/HxXEBQW0+zKqGwx5vACfWz5B +/qwYAZuo6CsvIOdoW+csn0o= +=MGof +-----END PGP SIGNATURE----- diff --git a/x11-libs/gtkscintilla2/gtkscintilla2-0.1.0.ebuild b/x11-libs/gtkscintilla2/gtkscintilla2-0.1.0.ebuild index d1639a1286c3..8f863d456537 100644 --- a/x11-libs/gtkscintilla2/gtkscintilla2-0.1.0.ebuild +++ b/x11-libs/gtkscintilla2/gtkscintilla2-0.1.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkscintilla2/gtkscintilla2-0.1.0.ebuild,v 1.5 2004/10/05 12:16:03 pvdabeel Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtkscintilla2/gtkscintilla2-0.1.0.ebuild,v 1.6 2004/10/17 18:05:36 liquidx Exp $ MY_P="GtkScintilla2-${PV}" DESCRIPTION="Gtk-2 wrappers for the Scintilla source editing components." @@ -9,7 +9,7 @@ SRC_URI="http://gphpedit.org/download/files/${MY_P}.tar.gz" IUSE="" SLOT="0" -KEYWORDS="~x86 ~amd64 ppc" +KEYWORDS="x86 ~amd64 ppc" LICENSE="GPL-2" RDEPEND=">=x11-libs/gtk+-2.0" @@ -27,20 +27,19 @@ src_unpack() { # some quick touches to the Makefile, bump the version # and make use of our CFLAGS - cp Makefile Makefile.orig - sed -e "/CFLAGS/s/-g/${CFLAGS} -fPIC/" < Makefile.orig > Makefile + GTHREAD_LDFLAGS="$(pkg-config gthread-2.0 --libs)" + sed -e "/CFLAGS/s/-g/${CFLAGS} -fPIC/" \ + -e "s/^LDFLAGS_PRE =/LDFLAGS_PRE = ${GTHREAD_LDFLAGS}/" \ + -i Makefile # and again, in the scintilla part cd ${S}/scintilla/gtk - cp makefile makefile.orig - sed -e "/CXXFLAGS/s/-Os/${CFLAGS} -fPIC/" < makefile.orig > makefile + sed -e "/CXXFLAGS/s/-Os/${CFLAGS} -fPIC/" -i makefile } src_compile() { - - emake || die - + emake || die } src_install() { |