diff options
author | D.M.D. Ljungmark <spider@gentoo.org> | 2002-09-26 04:12:33 +0000 |
---|---|---|
committer | D.M.D. Ljungmark <spider@gentoo.org> | 2002-09-26 04:12:33 +0000 |
commit | fa86d2993b5dd0b0681de92692cb536ca690ae06 (patch) | |
tree | f6ea433773818acf8964044035ec2df24ffc724c /x11-libs | |
parent | removed metacity mask (diff) | |
download | gentoo-2-fa86d2993b5dd0b0681de92692cb536ca690ae06.tar.gz gentoo-2-fa86d2993b5dd0b0681de92692cb536ca690ae06.tar.bz2 gentoo-2-fa86d2993b5dd0b0681de92692cb536ca690ae06.zip |
added minimal debugging to take away some crashes. xchat is most prominent right now
Diffstat (limited to 'x11-libs')
-rw-r--r-- | x11-libs/gtk+/ChangeLog | 7 | ||||
-rw-r--r-- | x11-libs/gtk+/files/digest-gtk+-1.2.10-r9 | 2 | ||||
-rw-r--r-- | x11-libs/gtk+/gtk+-1.2.10-r9.ebuild | 83 |
3 files changed, 90 insertions, 2 deletions
diff --git a/x11-libs/gtk+/ChangeLog b/x11-libs/gtk+/ChangeLog index 2bf49b3472b5..9cdca7be6e81 100644 --- a/x11-libs/gtk+/ChangeLog +++ b/x11-libs/gtk+/ChangeLog @@ -1,8 +1,11 @@ # ChangeLog for x11-libs/gtk+ # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v 1.22 2002/08/04 07:43:02 spider Exp $ - +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/ChangeLog,v 1.23 2002/09/26 04:12:33 spider Exp $ +*gtk+-1.2.10-r9 (26 Sep 2002) + 26 Sep 2002; Spider <spider@gentoo.org> gtk+-1.2.10-r9.ebuild : + This build enables minimal debugging for all users, this will fix some unexpected crashes in amongst other things xchat. + *gtk+-2.0.6-r1 (04 Jul 2002) 04 Jul 2002; Spider <spider@gentoo.org> gtk+-2.0.6-r1.ebuild : remove unnecessary debugging diff --git a/x11-libs/gtk+/files/digest-gtk+-1.2.10-r9 b/x11-libs/gtk+/files/digest-gtk+-1.2.10-r9 new file mode 100644 index 000000000000..c7995d372331 --- /dev/null +++ b/x11-libs/gtk+/files/digest-gtk+-1.2.10-r9 @@ -0,0 +1,2 @@ +MD5 4d5cb2fc7fb7830e4af9747a36bfce20 gtk+-1.2.10.tar.gz 2868322 +MD5 0ae8dcec20e0fa6dbc022d5eb00dc2a3 gtk+-1.2.10-r8-gentoo.diff.bz2 81223 diff --git a/x11-libs/gtk+/gtk+-1.2.10-r9.ebuild b/x11-libs/gtk+/gtk+-1.2.10-r9.ebuild new file mode 100644 index 000000000000..3d8454536472 --- /dev/null +++ b/x11-libs/gtk+/gtk+-1.2.10-r9.ebuild @@ -0,0 +1,83 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/x11-libs/gtk+/gtk+-1.2.10-r9.ebuild,v 1.1 2002/09/26 04:12:33 spider Exp $ + +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 + ftp://ftp.gnome.org/pub/GNOME/stable/sources/gtk+/${P}.tar.gz + http://ftp.gnome.org/pub/GNOME/stable/sources/gtk+/${P}.tar.gz + http://www.ibiblio.org/gentoo/distfiles/gtk+-1.2.10-r8-gentoo.diff.bz2" + +DEPEND="virtual/x11 + =dev-libs/glib-1.2* + nls? ( sys-devel/gettext + dev-util/intltool )" + +SLOT="1" +LICENSE="LGPL-2.1" +KEYWORDS="x86 ppc sparc sparc64 alpha" + +src_unpack() { + + unpack ${P}.tar.gz + + cd ${S}/.. + bzcat ${DISTDIR}/gtk+-1.2.10-r8-gentoo.diff.bz2 | patch -p0 + +} + +src_compile() { + + libtoolize --copy --force + + local myconf + use nls || myconf="${myconf} --disable-nls" + + if [ "${DEBUG}" ] + then + myconf="${myconf} --enable-debug=yes" + else + myconf="${myconf} --enable-debug=minimum" + fi + + econf \ + --sysconfdir=/etc/X11 \ + --with-xinput=xfree \ + --with-x \ + ${myconf} || die + + emake || die +} + +src_install() { + + make install DESTDIR=${D} || die + + preplib /usr + + dodoc AUTHORS COPYING ChangeLog* HACKING + dodoc NEWS* README* TODO + docinto docs + cd docs + dodoc *.txt *.gif text/* + dohtml -r html + + #install nice, clean-looking gtk+ style + insinto /usr/share/themes/Gentoo/gtk + doins ${FILESDIR}/gtkrc +} + +pkg_postinst() { + + echo + echo "**********************************************************************" + echo "* Older versions added /etc/X11/gtk/gtkrc which changed settings for *" + echo "* all themes it seems. Please remove it manually as it will not due *" + echo "* to /env protection. *" + echo "* *" + echo "* NB: The old gtkrc is available through the new Gentoo gtk theme. *" + echo "**********************************************************************" + echo +} |