diff options
author | 2003-03-09 18:56:31 +0000 | |
---|---|---|
committer | 2003-03-09 18:56:31 +0000 | |
commit | 63c5f4a1c927db73070d1c214c57c9e3a3cb2c5f (patch) | |
tree | 9140af97d25f6a8ca27279dd6c1e423b19093774 /x11-libs/gtk+ | |
parent | Version bump (diff) | |
download | gentoo-2-63c5f4a1c927db73070d1c214c57c9e3a3cb2c5f.tar.gz gentoo-2-63c5f4a1c927db73070d1c214c57c9e3a3cb2c5f.tar.bz2 gentoo-2-63c5f4a1c927db73070d1c214c57c9e3a3cb2c5f.zip |
some form fixes
Diffstat (limited to 'x11-libs/gtk+')
-rw-r--r-- | x11-libs/gtk+/ChangeLog | 5 | ||||
-rw-r--r-- | x11-libs/gtk+/gtk+-1.2.10-r10.ebuild | 12 |
2 files changed, 11 insertions, 6 deletions
diff --git a/x11-libs/gtk+/ChangeLog b/x11-libs/gtk+/ChangeLog index 68ca0d5a99cb..f056f3b15723 100644 --- a/x11-libs/gtk+/ChangeLog +++ b/x11-libs/gtk+/ChangeLog @@ -1,9 +1,12 @@ # ChangeLog for x11-libs/gtk+ # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v 1.56 2003/03/08 18:33:03 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v 1.57 2003/03/09 18:56:31 azarah Exp $ *gtk+-1.2.10-r10 (08 Mar 2003) + 09 Mar 2003; Martin Schlemmer <azarah@gentoo.org> gtk+-1.2.10-r10.ebuild : + Change to fully use epatch, and also make use of libtool eclass. + 08 Mar 2003; foser <foser@gentoo.org> gtk+-1.2.10-r10.ebuild : New patch to fix locale problems that have been bugging us for a long time Patch done by Stanislav Brabec <sbrabec@suse.cz> diff --git a/x11-libs/gtk+/gtk+-1.2.10-r10.ebuild b/x11-libs/gtk+/gtk+-1.2.10-r10.ebuild index 033242ea3e45..0f259011b2ab 100644 --- a/x11-libs/gtk+/gtk+-1.2.10-r10.ebuild +++ b/x11-libs/gtk+/gtk+-1.2.10-r10.ebuild @@ -1,12 +1,14 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-1.2.10-r10.ebuild,v 1.1 2003/03/08 18:33:03 foser Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-1.2.10-r10.ebuild,v 1.2 2003/03/09 18:56:31 azarah Exp $ inherit eutils +inherit libtool + IUSE="nls" -S=${WORKDIR}/${P} +S="${WORKDIR}/${P}" DESCRIPTION="The GIMP Toolkit" HOMEPAGE="http://www.gtk.org/" SRC_URI="ftp://ftp.gtk.org/pub/gtk/v1.2/${P}.tar.gz @@ -27,7 +29,7 @@ src_unpack() { unpack ${P}.tar.gz cd ${S}/.. - bzcat ${DISTDIR}/gtk+-1.2.10-r8-gentoo.diff.bz2 | patch -p0 + epatch ${DISTDIR}/gtk+-1.2.10-r8-gentoo.diff.bz2 # locale fix by sbrabec@suse.cz cd ${S} @@ -36,9 +38,9 @@ src_unpack() { src_compile() { - libtoolize --copy --force + elibtoolize - local myconf + local myconf= use nls || myconf="${myconf} --disable-nls" if [ "${DEBUGBUILD}" ] |