diff options
author | Marinus Schraal <foser@gentoo.org> | 2002-11-08 15:07:54 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2002-11-08 15:07:54 +0000 |
commit | b79bc28f385f6eebef0d3ed32081054450cb22a4 (patch) | |
tree | a41e7b81a7f244b42d14ac03a1f7af494b4e81a0 /media-gfx | |
parent | Made the helper messages a bit better (diff) | |
download | gentoo-2-b79bc28f385f6eebef0d3ed32081054450cb22a4.tar.gz gentoo-2-b79bc28f385f6eebef0d3ed32081054450cb22a4.tar.bz2 gentoo-2-b79bc28f385f6eebef0d3ed32081054450cb22a4.zip |
New devel version
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/gimp/ChangeLog | 7 | ||||
-rw-r--r-- | media-gfx/gimp/files/digest-gimp-1.3.10 | 1 | ||||
-rw-r--r-- | media-gfx/gimp/gimp-1.3.10.ebuild | 73 |
3 files changed, 80 insertions, 1 deletions
diff --git a/media-gfx/gimp/ChangeLog b/media-gfx/gimp/ChangeLog index 8836203596a7..c451d70bc1d8 100644 --- a/media-gfx/gimp/ChangeLog +++ b/media-gfx/gimp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-gfx/gimp # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.13 2002/11/06 09:29:38 leonardop Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/ChangeLog,v 1.14 2002/11/08 15:07:54 foser Exp $ + +*gimp-1.3.10 (08 Nov 2002) + + 08 Nov 2002; foser <foser@gentoo.org> gimp-1.3.10.ebuild : + New devel version. Python support seems not usable yet. *gimp-1.2.3-r3 (2 Nov 2002) diff --git a/media-gfx/gimp/files/digest-gimp-1.3.10 b/media-gfx/gimp/files/digest-gimp-1.3.10 new file mode 100644 index 000000000000..4af9fda4de0a --- /dev/null +++ b/media-gfx/gimp/files/digest-gimp-1.3.10 @@ -0,0 +1 @@ +MD5 e4845ef30eb38b328b34b2d5243723cc gimp-1.3.10.tar.bz2 9911982 diff --git a/media-gfx/gimp/gimp-1.3.10.ebuild b/media-gfx/gimp/gimp-1.3.10.ebuild new file mode 100644 index 000000000000..0faa3ac3047b --- /dev/null +++ b/media-gfx/gimp/gimp-1.3.10.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-gfx/gimp/gimp-1.3.10.ebuild,v 1.1 2002/11/08 15:07:54 foser Exp $ + +IUSE="doc python" + +inherit debug + +S=${WORKDIR}/${P} +DESCRIPTION="Development series of Gimp" +SRC_URI="ftp://ftp.gimp.org/pub/gimp/v1.3/v${PV}/${P}.tar.bz2" +HOMEPAGE="http://www.gimp.org/" +SLOT="1.4" +LICENSE="GPL-2" +KEYWORDS="x86 ppc" + +#libglade +RDEPEND=">=x11-libs/gtk+-2.0.0 + >=x11-libs/pango-1.0.0 + >=dev-libs/glib-2.0.0 + >=media-libs/libpng-1.2.1 + >=media-libs/jpeg-6b-r2 + >=media-libs/tiff-3.5.7 + >=media-libs/libart_lgpl-2.3.8-r1 + sys-devel/gettext + python? ( >=dev-lang/python-2.2 )" +# Bah, circ dependency +# cups? ( media-gfx/gimp-print ) + + +DEPEND="${RDEPEND} + >=dev-util/pkgconfig-0.12.0 + doc? ( >=dev-util/gtk-doc-0.9 )" + +src_compile() { + local myconf + use doc && myconf="${myconf} --enable-gtk-doc" || myconf="${myconf} --disable-gtk-doc" + +# python seems not yet ready +# use python && myconf="${myconf} --enable-python" \ +# || myconf="${myconf} --disable-python" + +# circular dependency +# use cups && myconf="${myconf} --enable-print" || myconf="${myconf} --disable-print" + myconf="${myconf} --disable-print" + ./configure --host=${CHOST} \ + --prefix=/usr \ + --sysconfdir=/etc \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + --localstatedir=/var/lib \ + --disable-perl ${myconf} \ + --without-gnome-desktop \ + || die + # disable gnome-desktop since it breaks sandboxing + +# hack for odd make break + touch plug-ins/common/${P}.tar.bz2 + emake || die +} + +src_install() { + make DESTDIR=${D} prefix=/usr \ + sysconfdir=/etc \ + infodir=/usr/share/info \ + mandir=/usr/share/man \ + localstatedir=/var/lib \ + install || die + + dodoc AUTHORS COPYING ChangeL* HACKING INSTALL MAINTAINERS NEWS PLUGIN_MAINTAINERS README* TODO* +} + + |