summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Wendel <lanius@gentoo.org>2004-09-16 07:52:40 +0000
committerHeinrich Wendel <lanius@gentoo.org>2004-09-16 07:52:40 +0000
commit051a6d8f9f2d0a70608634de7cdefc82c4ef374d (patch)
tree8d8e5754f7c3c27050f371b28aa4e548163557f1 /net-print
parentsecurity bump, bug #64166 (diff)
downloadhistorical-051a6d8f9f2d0a70608634de7cdefc82c4ef374d.tar.gz
historical-051a6d8f9f2d0a70608634de7cdefc82c4ef374d.tar.bz2
historical-051a6d8f9f2d0a70608634de7cdefc82c4ef374d.zip
version bump
Diffstat (limited to 'net-print')
-rw-r--r--net-print/foomatic-db/ChangeLog8
-rw-r--r--net-print/foomatic-db/files/digest-foomatic-db-200409162
-rw-r--r--net-print/foomatic-db/foomatic-db-20040916.ebuild51
3 files changed, 60 insertions, 1 deletions
diff --git a/net-print/foomatic-db/ChangeLog b/net-print/foomatic-db/ChangeLog
index 2b78a3dfe526..57cb3e3e88a0 100644
--- a/net-print/foomatic-db/ChangeLog
+++ b/net-print/foomatic-db/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for net-print/foomatic-db
# Copyright 2000-2004 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/foomatic-db/ChangeLog,v 1.18 2004/07/19 01:43:12 kloeri Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/foomatic-db/ChangeLog,v 1.19 2004/09/16 07:52:40 lanius Exp $
+
+*foomatic-db-20040916 (16 Sep 2004)
+
+ 16 Sep 2004; Heinrich Wendel <lanius@gentoo.org>
+ +foomatic-db-20040916.ebuild:
+ version bump
19 Jul 2004; Bryan Østergaard <kloeri@gentoo.org>
foomatic-db-20040302.ebuild:
diff --git a/net-print/foomatic-db/files/digest-foomatic-db-20040916 b/net-print/foomatic-db/files/digest-foomatic-db-20040916
new file mode 100644
index 000000000000..451e1d02e776
--- /dev/null
+++ b/net-print/foomatic-db/files/digest-foomatic-db-20040916
@@ -0,0 +1,2 @@
+MD5 cee58a75e831d82aa513dad8f453605d foomatic-db-20040916.tar.gz 493508
+MD5 7924877eec4019c7f8c05061c7140ec3 foomatic-filters-ppds-20040916.tar.gz 2760850
diff --git a/net-print/foomatic-db/foomatic-db-20040916.ebuild b/net-print/foomatic-db/foomatic-db-20040916.ebuild
new file mode 100644
index 000000000000..6b298c7263ae
--- /dev/null
+++ b/net-print/foomatic-db/foomatic-db-20040916.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2004 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-print/foomatic-db/foomatic-db-20040916.ebuild,v 1.1 2004/09/16 07:52:40 lanius Exp $
+
+DESCRIPTION="Foomatic printer database"
+HOMEPAGE="http://www.linuxprinting.org/foomatic"
+SRC_URI="http://www.linuxprinting.org/download/foomatic/${P}.tar.gz
+ ppds? ( http://www.linuxprinting.org/download/foomatic/foomatic-filters-ppds-${PV}.tar.gz )"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64 ~mips"
+IUSE="cups ppds"
+
+DEPEND="dev-libs/libxml2
+ net-misc/wget
+ net-misc/curl
+ net-print/foomatic-filters
+ net-print/foomatic-db-engine"
+
+src_unpack() {
+ unpack ${A}
+}
+
+src_compile() {
+ econf || die
+ rm db/source/driver/stp.xml
+
+ if use ppds ; then
+ cd ../foomatic-filters-ppds-${PV}
+ rm -f `find . -name "*gimp-print*" `
+ rm -f `find . -name "*hpijs*" `
+ fi
+}
+
+src_install() {
+ make DESTDIR=${D} install || die "make install failed"
+ chmod -R 644 ${D}/usr/share/foomatic/db/
+ chmod 755 ${D}/usr/share/foomatic/db/
+ chmod 755 ${D}/usr/share/foomatic/db/source
+ chmod 755 ${D}/usr/share/foomatic/db/source/{driver,opt,printer}
+
+ if use ppds ; then
+ cd ../foomatic-filters-ppds-${PV}
+ ./install -d ${D} -p /usr -z
+ if use cups ; then
+ dodir /usr/share/cups/model
+ dosym /usr/share/ppd /usr/share/cups/model/foomatic-ppds
+ fi
+ fi
+}