diff options
author | 2001-06-14 18:11:40 +0000 | |
---|---|---|
committer | 2001-06-14 18:11:40 +0000 | |
commit | dfb72533eb414300bd8535bb9790a659c3da9c67 (patch) | |
tree | 4ba65bacdddf6f4e25b8adbe069960ad480adb68 /media-gfx | |
parent | New version of Ghostscript. (diff) | |
download | gentoo-2-dfb72533eb414300bd8535bb9790a659c3da9c67.tar.gz gentoo-2-dfb72533eb414300bd8535bb9790a659c3da9c67.tar.bz2 gentoo-2-dfb72533eb414300bd8535bb9790a659c3da9c67.zip |
Fixed dependencies (shouldn't depend on gnome-libs, thanks to Adam 'Thread' for pointing this out), also added support for python plugins
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/gimp/files/digest-gimp-1.2.1-r1 | 1 | ||||
-rw-r--r-- | media-gfx/gimp/gimp-1.2.1-r1.ebuild | 66 |
2 files changed, 67 insertions, 0 deletions
diff --git a/media-gfx/gimp/files/digest-gimp-1.2.1-r1 b/media-gfx/gimp/files/digest-gimp-1.2.1-r1 new file mode 100644 index 000000000000..204f69cb97fe --- /dev/null +++ b/media-gfx/gimp/files/digest-gimp-1.2.1-r1 @@ -0,0 +1 @@ +MD5 0839d75836cf08210efe1d44a5613f5f gimp-1.2.1.tar.bz2 diff --git a/media-gfx/gimp/gimp-1.2.1-r1.ebuild b/media-gfx/gimp/gimp-1.2.1-r1.ebuild new file mode 100644 index 000000000000..97bceeb525ef --- /dev/null +++ b/media-gfx/gimp/gimp-1.2.1-r1.ebuild @@ -0,0 +1,66 @@ +# 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 $ + +A=${P}.tar.bz2 +S=${WORKDIR}/${P} +DESCRIPTION="GIMP" +SRC_URI="ftp://ftp.insync.net/pub/mirrors/ftp.gimp.org/gimp/v1.2/v${PV}/"${A} +HOMEPAGE="http://www.gimp.org" + +DEPEND="nls? ( sys-devel/gettext ) + >=x11-libs/gtk+-1.2.8 + >=media-libs/mpeg-lib-1.3.1 + 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 )" + +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 )" + +src_compile() { + local myconf + + if [ -z "`use nls`" ] + then + myconf="--disable-nls" + fi + + if [ -z "`use perl`" ] + then + myconf="$myconf --disable-perl" + fi + + if [ "`use python`" ] + then + myconf="$myconf --enable-python" + fi + + try ./configure --host=${CHOST} --prefix=/usr/X11R6 --sysconfdir=/etc --with-mp ${myconf} + + try make # Doesn't work with -j 4 (hallski) +} + +src_install() { + + 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 + preplib /usr/X11R6 + dodoc AUTHORS COPYING ChangeLog* *MAINTAINERS README* TODO + dodoc docs/*.txt docs/*.ps docs/Wilber* docs/quick_reference.tar.gz + docinto html/libgimp + dodoc devel-docs/libgimp/html/*.html + docinto devel + dodoc devel-docs/*.txt +} + + + + + |