summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Raschbacher <lordvan@gentoo.org>2003-03-07 16:36:42 +0000
committerThomas Raschbacher <lordvan@gentoo.org>2003-03-07 16:36:42 +0000
commit625aa96eff2faf20867f90d6ddfc343c9af49509 (patch)
treed95e60e50c3e999470a419ee5a5e9bb1b4882902 /net-print
parentadded 0.31 ~arch for all archs; gnome-print disabled cuz it breaks (diff)
downloadgentoo-2-625aa96eff2faf20867f90d6ddfc343c9af49509.tar.gz
gentoo-2-625aa96eff2faf20867f90d6ddfc343c9af49509.tar.bz2
gentoo-2-625aa96eff2faf20867f90d6ddfc343c9af49509.zip
new version (bug #15626)
Diffstat (limited to 'net-print')
-rw-r--r--net-print/hpijs/ChangeLog6
-rw-r--r--net-print/hpijs/files/digest-hpijs-1.3.11
-rw-r--r--net-print/hpijs/hpijs-1.3.1.ebuild40
3 files changed, 46 insertions, 1 deletions
diff --git a/net-print/hpijs/ChangeLog b/net-print/hpijs/ChangeLog
index 80f7b97327ce..8040f7cee589 100644
--- a/net-print/hpijs/ChangeLog
+++ b/net-print/hpijs/ChangeLog
@@ -1,7 +1,11 @@
# ChangeLog for net-print/hpijs
# Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/hpijs/ChangeLog,v 1.9 2003/02/12 08:43:03 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/hpijs/ChangeLog,v 1.10 2003/03/07 16:36:42 lordvan Exp $
+*hpjis-1.3.1 (07 Mar 2003)
+ 07 Mar 2003; Thomas Raschbacher <lordvan@gentoo.org> hpijs-1.3.1.ebuild:
+ new version (bug #15626)
+
*hpijs-1.3 (13 Nov 2002)
13 Nov 2002; Donny Davies <woodchip@gentoo.org> : Chase latest; #10319.
diff --git a/net-print/hpijs/files/digest-hpijs-1.3.1 b/net-print/hpijs/files/digest-hpijs-1.3.1
new file mode 100644
index 000000000000..b15a6acf3e03
--- /dev/null
+++ b/net-print/hpijs/files/digest-hpijs-1.3.1
@@ -0,0 +1 @@
+MD5 a2ae6ce240dd40747ea0e3731c549f81 hpijs-1.3.1.tar.gz 408759
diff --git a/net-print/hpijs/hpijs-1.3.1.ebuild b/net-print/hpijs/hpijs-1.3.1.ebuild
new file mode 100644
index 000000000000..c655705d748c
--- /dev/null
+++ b/net-print/hpijs/hpijs-1.3.1.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.1.ebuild,v 1.1 2003/03/07 16:36:42 lordvan 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 ~alpha ~sparc"
+SRC_URI="mirror://sourceforge/hpinkjet/${P}.tar.gz"
+DEPEND="virtual/glibc"
+RDEPEND="${DEPEND} app-text/ghostscript"
+LICENSE="as-is"
+SLOT="0"
+
+src_compile () {
+ econf
+ 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
+}