diff options
author | Rainer Groesslinger <scandium@gentoo.org> | 2003-10-27 16:15:28 +0000 |
---|---|---|
committer | Rainer Groesslinger <scandium@gentoo.org> | 2003-10-27 16:15:28 +0000 |
commit | 572ab7cd8f86bcc7d51d9af0c248fb5d761bb42a (patch) | |
tree | fe18f0a6a88e3246b123305724afcaa73736487b /dev-lang/pike | |
parent | fixing Manifest (diff) | |
download | historical-572ab7cd8f86bcc7d51d9af0c248fb5d761bb42a.tar.gz historical-572ab7cd8f86bcc7d51d9af0c248fb5d761bb42a.tar.bz2 historical-572ab7cd8f86bcc7d51d9af0c248fb5d761bb42a.zip |
disable gtk+-2 for now
Diffstat (limited to 'dev-lang/pike')
-rw-r--r-- | dev-lang/pike/Manifest | 2 | ||||
-rw-r--r-- | dev-lang/pike/pike-7.4.28-r1.ebuild | 26 |
2 files changed, 15 insertions, 13 deletions
diff --git a/dev-lang/pike/Manifest b/dev-lang/pike/Manifest index 497337bdc233..f95869d9c365 100644 --- a/dev-lang/pike/Manifest +++ b/dev-lang/pike/Manifest @@ -1,4 +1,4 @@ -MD5 76eea7fc824f76e7dcdfa79e9e75abf0 pike-7.4.28-r1.ebuild 3087 +MD5 a9c9815069958627361b71ac74f73f38 pike-7.4.28-r1.ebuild 3212 MD5 70f36900617732b5a3ba6b2e9eba4d7e pike-7.4.28.ebuild 1618 MD5 58667bea8b78255127168590ece031fb ChangeLog 826 MD5 7319ff3c2859ffcce59244a63a079bdd pike-7.4.20.ebuild 1633 diff --git a/dev-lang/pike/pike-7.4.28-r1.ebuild b/dev-lang/pike/pike-7.4.28-r1.ebuild index 9c55ba52ae4e..d2659520629c 100644 --- a/dev-lang/pike/pike-7.4.28-r1.ebuild +++ b/dev-lang/pike/pike-7.4.28-r1.ebuild @@ -1,13 +1,13 @@ # Copyright 1999-2003 Gentoo Technologies, Inc., Emil Skoldberg (see ChangeLog) # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-lang/pike/pike-7.4.28-r1.ebuild,v 1.3 2003/10/27 13:26:35 scandium Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-lang/pike/pike-7.4.28-r1.ebuild,v 1.4 2003/10/27 16:15:23 scandium Exp $ inherit flag-o-matic # -fomit-frame-pointer breaks the compilation filter-flags -fomit-frame-pointer -IUSE="debug doc gdbm gif gnome gtk gtk2 java jpeg mysql oci8 odbc opengl pdflib postgres scanner tiff truetype zlib" +IUSE="debug doc gdbm gif gnome gtk java jpeg mysql oci8 odbc opengl pdflib postgres scanner tiff truetype zlib" S="${WORKDIR}/Pike-v${PV}" HOMEPAGE="http://pike.ida.liu.se/" @@ -33,7 +33,7 @@ DEPEND="dev-libs/gmp opengl? ( virtual/opengl virtual/glut ) gtk? ( =x11-libs/gtk+-1.2* ) - gtk2? ( =x11-libs/gtk+-2* ) + #gtk2? ( =x11-libs/gtk+-2* ) sdl? ( media-libs/libsdl ) sys-devel/gcc sys-devel/make @@ -41,11 +41,12 @@ DEPEND="dev-libs/gmp src_compile() { - if use gtk2; then - einfo 'If building pike with GTK+ 2.x support breaks try' - einfo 'USE="-gtk2" emerge pike' - sleep 3 - fi +# disable gtk+-2 for now, it does not work +# if use gtk2; then +# einfo 'If building pike with GTK+ 2.x support breaks try' +# einfo 'USE="-gtk2" emerge pike' +# sleep 3 +# fi local myconf use zlib || myconf="${myconf} --without-zlib" @@ -63,10 +64,11 @@ src_compile() { use jpeg || myconf="${myconf} --without-jpeglib" use tiff || myconf="${myconf} --without-tifflib" use opengl || myconf="${myconf} --without-GL --without-GLUT" - use gtk && myconf="${myconf} --with-GTK" \ - || myconf="${myconf} --without-GTK" - use gtk2 && myconf="${myconf} --with-GTK2" \ - || myconf="${myconf} --without-GTK2" + use gtk && myconf="${myconf} --with-GTK --without-GTK2" \ + || myconf="${myconf} --without-GTK --without-GTK2" +# disable gtk+-2 for now, it does not work +# use gtk2 && myconf="${myconf} --with-GTK2" \ +# || myconf="${myconf} --without-GTK2" use gnome || myconf="${myconf} --without-gnome" # We have to use --disable-make_conf to override make.conf settings |