diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-06-17 16:02:31 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-06-17 16:02:31 +0000 |
commit | 0d6bc051085579767eed777e4a7608d4db44c27f (patch) | |
tree | 3f003f6706b258c124f3ce2db2903434bc79c868 /media-gfx | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-0d6bc051085579767eed777e4a7608d4db44c27f.tar.gz gentoo-2-0d6bc051085579767eed777e4a7608d4db44c27f.tar.bz2 gentoo-2-0d6bc051085579767eed777e4a7608d4db44c27f.zip |
Fixed build for optional aalib and gtkxmhtml support
Removed obsolete (?) python dependencie
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/gimp/gimp-1.2.1-r1.ebuild | 36 |
1 files changed, 22 insertions, 14 deletions
diff --git a/media-gfx/gimp/gimp-1.2.1-r1.ebuild b/media-gfx/gimp/gimp-1.2.1-r1.ebuild index 97bceeb525ef..bb1bb4abc181 100644 --- a/media-gfx/gimp/gimp-1.2.1-r1.ebuild +++ b/media-gfx/gimp/gimp-1.2.1-r1.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2000 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Author Achim Gottinger <achim@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-1.2.1-r1.ebuild,v 1.1 2001/06/14 18:11:40 hallski Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-1.2.1-r1.ebuild,v 1.2 2001/06/17 16:02:31 achim Exp $ A=${P}.tar.bz2 S=${WORKDIR}/${P} @@ -15,42 +15,50 @@ DEPEND="nls? ( sys-devel/gettext ) aalib? ( >=media-libs/aalib-1.2 ) perl? ( >=dev-perl/PDL-2.2.1 >=dev-perl/Parse-RecDescent-1.80 ) - python? ( >=dev-lang/python-2.0 )" + gnome? ( >=gnome-base/gnome-libs-1.2.4 )" RDEPEND=">=x11-libs/gtk+-1.2.8 aalib? ( >=media-libs/aalib-1.2 ) perl? ( >=dev-perl/PDL-2.2.1 >=dev-perl/Parse-RecDescent-1.80 ) - python? ( >=dev-lang/python-2.0 )" + gnome? ( >=gnome-base/gnome-libs-1.2.4 )" src_compile() { local myconf - - if [ -z "`use nls`" ] - then + local mymake + if [ -z "`use nls`" ] ; then myconf="--disable-nls" fi - if [ -z "`use perl`" ] - then + if [ -z "`use perl`" ] ; then myconf="$myconf --disable-perl" fi - if [ "`use python`" ] - then - myconf="$myconf --enable-python" + if [ -z "`use aalib`" ] ; then + mymake="LIBAA= AA=" + fi + + if [ -z "`use gnome`" ] ; then + mymake="$mymake HELPBROWSER=" fi try ./configure --host=${CHOST} --prefix=/usr/X11R6 --sysconfdir=/etc --with-mp ${myconf} - try make # Doesn't work with -j 4 (hallski) + try make $mymake # Doesn't work with -j 4 (hallski) } -src_install() { +src_install() { + local mymake + if [ -z "`use aalib`" ] ; then + mymake="LIBAA= AA=" + fi + if [ -z "`use gnome`" ] ; then + mymake="$mymake HELPBROWSER=" + fi dodir /usr/X11R6/lib/gimp/1.2/plug-ins try make prefix=${D}/usr/X11R6 gimpsysconfdir=${D}/etc/gimp/1.2 \ - mandir=${D}/usr/X11R6/man PREFIX=${D}/usr install + mandir=${D}/usr/X11R6/man PREFIX=${D}/usr $mymake install preplib /usr/X11R6 dodoc AUTHORS COPYING ChangeLog* *MAINTAINERS README* TODO dodoc docs/*.txt docs/*.ps docs/Wilber* docs/quick_reference.tar.gz |