diff options
author | Martin Schlemmer <azarah@gentoo.org> | 2001-10-28 02:13:01 +0000 |
---|---|---|
committer | Martin Schlemmer <azarah@gentoo.org> | 2001-10-28 02:13:01 +0000 |
commit | de37458caf7621a48f9044f6a9ce765baae363f2 (patch) | |
tree | 2bb3d3fffe10ee5c6622f71bf305c2af4a57cfae /media-gfx | |
parent | sourceforge download URL changed to download instead of prdownloads (diff) | |
download | gentoo-2-de37458caf7621a48f9044f6a9ce765baae363f2.tar.gz gentoo-2-de37458caf7621a48f9044f6a9ce765baae363f2.tar.bz2 gentoo-2-de37458caf7621a48f9044f6a9ce765baae363f2.zip |
update
Diffstat (limited to 'media-gfx')
-rw-r--r-- | media-gfx/gimp-print/files/digest-gimp-print-4.1.99_beta4 | 1 | ||||
-rw-r--r-- | media-gfx/gimp-print/gimp-print-4.1.99_beta4.ebuild | 53 |
2 files changed, 54 insertions, 0 deletions
diff --git a/media-gfx/gimp-print/files/digest-gimp-print-4.1.99_beta4 b/media-gfx/gimp-print/files/digest-gimp-print-4.1.99_beta4 new file mode 100644 index 000000000000..11b213a27e01 --- /dev/null +++ b/media-gfx/gimp-print/files/digest-gimp-print-4.1.99_beta4 @@ -0,0 +1 @@ +MD5 a0edb7b97dbb93386fe124cc9d926aee gimp-print-4.1.99-b4.tar.gz 4931584 diff --git a/media-gfx/gimp-print/gimp-print-4.1.99_beta4.ebuild b/media-gfx/gimp-print/gimp-print-4.1.99_beta4.ebuild new file mode 100644 index 000000000000..a782a97d91d0 --- /dev/null +++ b/media-gfx/gimp-print/gimp-print-4.1.99_beta4.ebuild @@ -0,0 +1,53 @@ +# 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> + +MY_P="${PN}-`echo ${PV} |sed -e 's:_:-:' -e 's:eta::'`" +S=${WORKDIR}/${MY_P} +DESCRIPTION="Gimp Plugin and Ghostscript driver for Gimp" +SRC_URI="http://prdownloads.sourceforge.net/gimp-print/${MY_P}.tar.gz" +HOMEPAGE="http://gimp-print.sourceforge.net/" + +DEPEND=">=media-gfx/gimp-1.2.1" + +RDEPEND="virtual/glibc" + + +src_compile() { + + ./configure --host=${CHOST} \ + --prefix=/usr \ + --mandir=/usr/share/man \ + --infodir=/usr/share/info \ + --sysconfdir=/etc/gimp/1.2/ \ + --with-gimp-exec-prefix=/usr \ + || die + + cp src/gimp/Makefile src/gimp/Makefile.orig + sed -e 's:--install-admin-bin:--install-bin:g' \ + src/gimp/Makefile.orig >src/gimp/Makefile + + make || die +} + +src_install() { + + dodir /usr/lib/gimp/1.2/.gimp-1.2/plug-ins + + make prefix=${D}/usr \ + mandir=${D}/usr/share/man \ + infodir=${D}/usr/share/info \ + sysconfdir=${D}/etc/gimp/1.2/ \ + HOME=${D}/usr/lib/gimp/1.2/ \ + install || die + + # NOTE: this build use gimptool to install the plugin, so + # if we dont do it this way, it will install to / no + # matter what. + mv ${D}/usr/lib/gimp/1.2/.gimp-1.2/plug-ins/ \ + ${D}/usr/lib/gimp/1.2/ + rm -rf ${D}/usr/lib/gimp/1.2/.gimp-1.2/ + + dodoc AUTHORS ChangeLog COPYING NEWS README* +} + |