summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuis Francisco Araujo <araujo@gentoo.org>2006-07-11 11:15:15 +0000
committerLuis Francisco Araujo <araujo@gentoo.org>2006-07-11 11:15:15 +0000
commitb0eb2995e75f8b5ed0131f035f9a1a9a8ba53413 (patch)
treee601353a5b11ca26addab20defc67743a866bc0a /dev-lang/pike
parentMark 2.7-r2 stable on ia64 (diff)
downloadgentoo-2-b0eb2995e75f8b5ed0131f035f9a1a9a8ba53413.tar.gz
gentoo-2-b0eb2995e75f8b5ed0131f035f9a1a9a8ba53413.tar.bz2
gentoo-2-b0eb2995e75f8b5ed0131f035f9a1a9a8ba53413.zip
Fixing gtk deps bug #136065
(Portage version: 2.1.1_pre2-r6)
Diffstat (limited to 'dev-lang/pike')
-rw-r--r--dev-lang/pike/ChangeLog5
-rw-r--r--dev-lang/pike/pike-7.6.86-r1.ebuild7
2 files changed, 8 insertions, 4 deletions
diff --git a/dev-lang/pike/ChangeLog b/dev-lang/pike/ChangeLog
index a6918b1ad365..a2949a00f6c6 100644
--- a/dev-lang/pike/ChangeLog
+++ b/dev-lang/pike/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-lang/pike
# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/pike/ChangeLog,v 1.21 2006/07/11 07:42:53 araujo Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/pike/ChangeLog,v 1.22 2006/07/11 11:15:15 araujo Exp $
+
+ 11 Jul 2006; Luis F. Araujo <araujo@gentoo.org> pike-7.6.86-r1.ebuild:
+ Fixing the gtk dependency bug reported in #136065
*pike-7.6.86-r1 (11 Jul 2006)
diff --git a/dev-lang/pike/pike-7.6.86-r1.ebuild b/dev-lang/pike/pike-7.6.86-r1.ebuild
index de4c171cd57f..0d540e3c6b18 100644
--- a/dev-lang/pike/pike-7.6.86-r1.ebuild
+++ b/dev-lang/pike/pike-7.6.86-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-lang/pike/pike-7.6.86-r1.ebuild,v 1.1 2006/07/11 07:42:53 araujo Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-lang/pike/pike-7.6.86-r1.ebuild,v 1.2 2006/07/11 11:15:15 araujo Exp $
DESCRIPTION="Pike programming language and runtime"
HOMEPAGE="http://pike.ida.liu.se/"
@@ -17,7 +17,7 @@ DEPEND="dev-libs/nettle
fftw? ( sci-libs/fftw )
gdbm? ( sys-libs/gdbm )
gif? ( media-libs/giflib )
- gtk? ( =x11-libs/gtk+-1.2* )
+ gtk? ( =x11-libs/gtk+-1.2* media-libs/giflib )
jpeg? ( media-libs/jpeg )
kerberos? ( virtual/krb5 )
mysql? ( dev-db/mysql )
@@ -42,6 +42,8 @@ src_compile() {
# on hardened, disable runtime-generated code
# otherwise let configure work it out for itself
use hardened && myconf="${myconf} --without-machine-code"
+ # gtk support depends on gif libraries.
+ use gtk && myconf="${myconf} --with-GTK --with-gif"
make \
CONFIGUREARGS=" \
--prefix=/usr \
@@ -58,7 +60,6 @@ src_compile() {
$(use_with fftw) \
$(use_with gdbm) \
$(use_with gif) \
- $(use_with gtk GTK) \
$(use_with jpeg jpeglib) \
$(use_with kerberos Kerberos) \
$(use_with mime MIME) \