diff options
author | Donny Davies <woodchip@gentoo.org> | 2002-11-13 05:17:14 +0000 |
---|---|---|
committer | Donny Davies <woodchip@gentoo.org> | 2002-11-13 05:17:14 +0000 |
commit | 4fc5de1dcbe56bf2de8ebbc948eb76863662a3fa (patch) | |
tree | 14d37aa14314ed67bd6830495531a783a8c657ee /net-print/hpijs | |
parent | added the new stable build, marked as testing. depends on the latest linc (diff) | |
download | gentoo-2-4fc5de1dcbe56bf2de8ebbc948eb76863662a3fa.tar.gz gentoo-2-4fc5de1dcbe56bf2de8ebbc948eb76863662a3fa.tar.bz2 gentoo-2-4fc5de1dcbe56bf2de8ebbc948eb76863662a3fa.zip |
#10319
Diffstat (limited to 'net-print/hpijs')
-rw-r--r-- | net-print/hpijs/ChangeLog | 15 | ||||
-rw-r--r-- | net-print/hpijs/files/digest-hpijs-1.3 | 1 | ||||
-rw-r--r-- | net-print/hpijs/hpijs-1.3.ebuild | 40 |
3 files changed, 49 insertions, 7 deletions
diff --git a/net-print/hpijs/ChangeLog b/net-print/hpijs/ChangeLog index b2ade1afac1c..936216213e0b 100644 --- a/net-print/hpijs/ChangeLog +++ b/net-print/hpijs/ChangeLog @@ -1,6 +1,10 @@ # 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.7 2002/10/25 13:40:04 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/hpijs/ChangeLog,v 1.8 2002/11/13 05:17:14 woodchip Exp $ + +*hpijs-1.3 (13 Nov 2002) + + 13 Nov 2002; Donny Davies <woodchip@gentoo.org> : Chase latest; #10319. *hpijs-1.2.2-r1 (25 Oct 2002) @@ -9,16 +13,13 @@ *hpijs-1.2.2 (02 Oct 2002) - 02 Sep 2002; Donny Davies <woodchip@gentoo.org> : - Chase latest; #8536. + 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. + 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. + 17 Aug 2002; Donny Davies <woodchip@gentoo.org> : Chase latest; #5955. *hpijs-1.1 (06 Jun 2002) diff --git a/net-print/hpijs/files/digest-hpijs-1.3 b/net-print/hpijs/files/digest-hpijs-1.3 new file mode 100644 index 000000000000..179df983f77b --- /dev/null +++ b/net-print/hpijs/files/digest-hpijs-1.3 @@ -0,0 +1 @@ +MD5 9d0b79d0fae39f3efc5b8db60f51a8fa hpijs-1.3.tar.gz 353361 diff --git a/net-print/hpijs/hpijs-1.3.ebuild b/net-print/hpijs/hpijs-1.3.ebuild new file mode 100644 index 000000000000..d59ad8563a95 --- /dev/null +++ b/net-print/hpijs/hpijs-1.3.ebuild @@ -0,0 +1,40 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-print/hpijs/hpijs-1.3.ebuild,v 1.1 2002/11/13 05:17:14 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 +} |