diff options
author | Thomas Raschbacher <lordvan@gentoo.org> | 2002-12-27 17:03:43 +0000 |
---|---|---|
committer | Thomas Raschbacher <lordvan@gentoo.org> | 2002-12-27 17:03:43 +0000 |
commit | 5838827c746aee29d8a06e45320e58cec7fb2a2f (patch) | |
tree | e2160f4b8c15af6889df58670530805072e3654f /net-print | |
parent | unmasked cups-1.1.18 (still ~arch masked on all archs) (diff) | |
download | historical-5838827c746aee29d8a06e45320e58cec7fb2a2f.tar.gz historical-5838827c746aee29d8a06e45320e58cec7fb2a2f.tar.bz2 historical-5838827c746aee29d8a06e45320e58cec7fb2a2f.zip |
new version fixes bug #12106
Diffstat (limited to 'net-print')
-rw-r--r-- | net-print/gimp-print-cups/files/digest-gimp-print-cups-4.3.5 | 1 | ||||
-rw-r--r-- | net-print/gimp-print-cups/gimp-print-cups-4.3.5.ebuild | 70 |
2 files changed, 71 insertions, 0 deletions
diff --git a/net-print/gimp-print-cups/files/digest-gimp-print-cups-4.3.5 b/net-print/gimp-print-cups/files/digest-gimp-print-cups-4.3.5 new file mode 100644 index 000000000000..23bc354be052 --- /dev/null +++ b/net-print/gimp-print-cups/files/digest-gimp-print-cups-4.3.5 @@ -0,0 +1 @@ +MD5 23708d738c68865c83ac486f428cf92e gimp-print-4.3.5.tar.bz2 4124524 diff --git a/net-print/gimp-print-cups/gimp-print-cups-4.3.5.ebuild b/net-print/gimp-print-cups/gimp-print-cups-4.3.5.ebuild new file mode 100644 index 000000000000..b2d4f8bbc5e4 --- /dev/null +++ b/net-print/gimp-print-cups/gimp-print-cups-4.3.5.ebuild @@ -0,0 +1,70 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-print/gimp-print-cups/gimp-print-cups-4.3.5.ebuild,v 1.1 2002/12/27 17:03:43 lordvan Exp $ + +IUSE="nls gtk readline" + +MY_PN=${PN/-cups/} + +DESCRIPTION="The Common Unix Printing System - Gimp Print Drivers" +HOMEPAGE="http://gimp-print.sourceforge.net" +KEYWORDS="~x86 ~ppc" +SRC_URI="mirror://sourceforge/${MY_PN}/${MY_PN}-${PV}.tar.bz2" + +S=${WORKDIR}/${MY_PN}-${PV} +DEPEND="net-print/cups + media-gfx/imagemagick + sys-libs/readline + sys-devel/perl + gtk? ( =x11-libs/gtk+-1.2* )" + +LICENSE="GPL-2" +SLOT="0" + +src_compile() { + local myconf + use nls \ + && myconf="${myconf} --enable-nls" \ + || myconf="${myconf} --disable-nls" + + use readline \ + && myconf="${myconf} --enable-readline" \ + || myconf="${myconf} --disable-readline" + + use gtk \ + && myconf="${myconf} --enable-lexmarkutil" \ + || myconf="${myconf} --disable-lexmarkutil" + + #--without-translated-ppds \ + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --datadir=/usr/share \ + --mandir=/usr/share/man \ + --localstatedir=/var/lib \ + --infodir=/usr/share/info \ + --with-cups \ + --enable-test \ + --with-samples \ + --without-gimp \ + --with-escputil \ + --with-foomatic \ + --with-testpattern \ + --with-user-guide \ + --host=${CHOST} ${myconf} || die "bad ./configure" + + + emake || die "compile problem" +# patch src/main/gimpprint.m4 < ${FILESDIR}/gimpprint.m4.patch || die +} + +src_install () { + make install DESTDIR=${D} || die + + exeinto /usr/share/gimp-print + doexe test/{unprint,pcl-unprint,bjc-unprint,parse-escp2,parse-bjc} + + dodoc AUTHORS COPYING ChangeLog NEWS README \ + doc/gimpprint.ps + dohtml doc/manual-html doc/FAQ.html +} |