diff options
author | Thomas Raschbacher <lordvan@gentoo.org> | 2003-01-28 07:19:24 +0000 |
---|---|---|
committer | Thomas Raschbacher <lordvan@gentoo.org> | 2003-01-28 07:19:24 +0000 |
commit | 5319e2ac826a5b3a3d9da485f545a3318c582e3e (patch) | |
tree | 991201ff71948fdb5c9bd2ffcdbf2a3bff9b1b6c /net-print | |
parent | Version bump. :) Important bug fixes. (diff) | |
download | gentoo-2-5319e2ac826a5b3a3d9da485f545a3318c582e3e.tar.gz gentoo-2-5319e2ac826a5b3a3d9da485f545a3318c582e3e.tar.bz2 gentoo-2-5319e2ac826a5b3a3d9da485f545a3318c582e3e.zip |
new version bug #14659
Diffstat (limited to 'net-print')
-rw-r--r-- | net-print/foomatic/ChangeLog | 6 | ||||
-rw-r--r-- | net-print/foomatic/files/digest-foomatic-2.0.2 | 1 | ||||
-rw-r--r-- | net-print/foomatic/foomatic-2.0.2.ebuild | 48 |
3 files changed, 54 insertions, 1 deletions
diff --git a/net-print/foomatic/ChangeLog b/net-print/foomatic/ChangeLog index 16455b895470..ebeb7ae0632b 100644 --- a/net-print/foomatic/ChangeLog +++ b/net-print/foomatic/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-print/foomatic # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-print/foomatic/ChangeLog,v 1.6 2003/01/22 19:22:40 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/foomatic/ChangeLog,v 1.7 2003/01/28 07:19:24 lordvan Exp $ + +*foomatic-2.0.2 (28 Jan 2003) + 28 Jan 2003; Thomas Raschbacher <lordvan@gentoo.org> foomatic-2.0.2.ebuild: + new version bug #14659 22 Jan 2003; Aron Griffis <agriffis@gentoo.org> foomatic-2.0.0.ebuild : Don't use emake because it doesn't always work. diff --git a/net-print/foomatic/files/digest-foomatic-2.0.2 b/net-print/foomatic/files/digest-foomatic-2.0.2 new file mode 100644 index 000000000000..fc525bd40464 --- /dev/null +++ b/net-print/foomatic/files/digest-foomatic-2.0.2 @@ -0,0 +1 @@ +MD5 233a227240e02380b45596e8615d9332 foomatic-2.0.2.tar.gz 641138 diff --git a/net-print/foomatic/foomatic-2.0.2.ebuild b/net-print/foomatic/foomatic-2.0.2.ebuild new file mode 100644 index 000000000000..f83cf855945d --- /dev/null +++ b/net-print/foomatic/foomatic-2.0.2.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-print/foomatic/foomatic-2.0.2.ebuild,v 1.1 2003/01/28 07:19:24 lordvan Exp $ + +inherit perl-module + +DESCRIPTION="Generates printer configurations automagically" +HOMEPAGE="http://www.linuxprinting.org/foomatic" +SRC_URI="http://www.linuxprinting.org/download/foomatic/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~alpha" +IUSE="" + +DEPEND="virtual/glibc + dev-libs/libxml2 + net-misc/wget + net-ftp/curl + samba? ( net-fs/samba ) + cups? ( net-print/cups )" + +S="${WORKDIR}/${P}" + +src_unpack() { + unpack ${A} + cd ${S} + patch -p1 < ${FILESDIR}/perl-module.diff || die "patch failed" +} + +src_compile() { + econf || die "configure failed" + + # Doesn't always build when using emake. It fails consistently on + # my Athlon when using -j6. (22 Jan 2003 agriffis) + make || die "make failed" +} + +src_install() { + make DESTDIR=${D} install || die "make install failed" + + # install perl modules + cd ${S}/lib + perl-module_src_prep + perl-module_src_compile + perl-module_src_test + perl-module_src_install + +} |