diff options
author | Donny Davies <woodchip@gentoo.org> | 2002-10-02 12:48:08 +0000 |
---|---|---|
committer | Donny Davies <woodchip@gentoo.org> | 2002-10-02 12:48:08 +0000 |
commit | d7a4f50dd64343a0a15e93639227872834e5ba7f (patch) | |
tree | b16175e7d5fdcf23a25a177bfdc655bebc03a8c5 /net-print/hpijs | |
parent | close #8403 (diff) | |
download | gentoo-2-d7a4f50dd64343a0a15e93639227872834e5ba7f.tar.gz gentoo-2-d7a4f50dd64343a0a15e93639227872834e5ba7f.tar.bz2 gentoo-2-d7a4f50dd64343a0a15e93639227872834e5ba7f.zip |
#8536; upstream build fix release
Diffstat (limited to 'net-print/hpijs')
-rw-r--r-- | net-print/hpijs/ChangeLog | 15 | ||||
-rw-r--r-- | net-print/hpijs/files/digest-hpijs-1.2.2 | 1 | ||||
-rw-r--r-- | net-print/hpijs/hpijs-1.2.2.ebuild | 40 |
3 files changed, 51 insertions, 5 deletions
diff --git a/net-print/hpijs/ChangeLog b/net-print/hpijs/ChangeLog index 15526748121a..732b3aa1818a 100644 --- a/net-print/hpijs/ChangeLog +++ b/net-print/hpijs/ChangeLog @@ -1,20 +1,25 @@ # ChangeLog for net-print/hpijs # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/net-print/hpijs/ChangeLog,v 1.5 2002/09/09 02:36:28 owen Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/hpijs/ChangeLog,v 1.6 2002/10/02 12:48:08 woodchip Exp $ -*hpijs-1.2 (17 Aug 2002) +*hpijs-1.2.2 (02 Oct 2002) - 8 Sep 2002; Owen Stampflee <owen@gentoo.org> : + 02 Sep 2002; Donny Davies <woodchip@gentoo.org> : + Chase latest; #8536. + +*hpijs-1.2.1 (17 Aug 2002) + + 08 Sep 2002; Owen Stampflee <owen@gentoo.org> : Added PPC to KEYWORDS. 17 Aug 2002; Donny Davies <woodchip@gentoo.org> : Chase latest release, close #5955. -*hpijs-1.1 (6 Jun 2002) +*hpijs-1.1 (06 Jun 2002) 14 Jul 2002; Daniel Ahlberg <aliz@gentoo.org> hpijs-1.1.ebuild : Added KEYWORDS. - 6 Jun 2002; Donny Davies <woodchip@gentoo.org> : + 06 Jun 2002; Donny Davies <woodchip@gentoo.org> : Chase latest release, add LICENSE + SLOT; close #3080. *hpijs-1.0.4 (10 Apr 2002) diff --git a/net-print/hpijs/files/digest-hpijs-1.2.2 b/net-print/hpijs/files/digest-hpijs-1.2.2 new file mode 100644 index 000000000000..5de31a18bee4 --- /dev/null +++ b/net-print/hpijs/files/digest-hpijs-1.2.2 @@ -0,0 +1 @@ +MD5 5eae1f6ec44dce9a5ca250a18c7e3be6 hpijs-1.2.2.tar.gz 302285 diff --git a/net-print/hpijs/hpijs-1.2.2.ebuild b/net-print/hpijs/hpijs-1.2.2.ebuild new file mode 100644 index 000000000000..bbc7fa850f67 --- /dev/null +++ b/net-print/hpijs/hpijs-1.2.2.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# $Header: /var/cvsroot/gentoo-x86/net-print/hpijs/hpijs-1.2.2.ebuild,v 1.1 2002/10/02 12:48:08 woodchip Exp $ + +# Though this program runs on it's own it makes no sense to run it without ghostscript + +S=${WORKDIR}/${P} +DESCRIPTION="The HP Inkjet server for Ghostscript. Provides best output for HP Inkjet Printers" +HOMEPAGE="http://hpinkjet.sourceforge.net" +KEYWORDS="x86 ppc" +SRC_URI="mirror://sourceforge/hpinkjet/${P}.tar.gz" +DEPEND="virtual/glibc" +RDEPEND="${DEPEND} app-text/ghostscript" +LICENSE="as-is" +SLOT="0" + +src_compile () { + econf --host=${CHOST} || die "bad ./configure" + make || die "compile problem" +} + +src_install () { + einstall || die + # fix the doc dir, it needs to have the package revision.. + mv ${D}/usr/share/doc/${P} ${D}/usr/share/doc/${PF} +} + +pkg_postinst () { + if [ "`use cups`" ] ; then + einfo "To use the hpijs driver with the cups spooler, you will need the .ppd file" + einfo "for your printer. You may obtain it from:" + einfo "http://www.linuxprinting.org/show_driver.cgi?driver=hpijs" + einfo "Install it in /usr/share/cups/model. After restarting cups you should be" + einfo "able to use the new driver" + else + einfo "To use the hpijs driver with the PDQ spooler you will need the PDQ driver file" + einfo "for your printer from http://www.linuxprinting.org/show_driver.cgi?driver=hpijs" + einfo "This file should be installed in /etc/pdq/drivers" + fi +} |