diff options
Diffstat (limited to 'net-print/hplip/hplip-3.12.10.ebuild')
-rw-r--r-- | net-print/hplip/hplip-3.12.10.ebuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-print/hplip/hplip-3.12.10.ebuild b/net-print/hplip/hplip-3.12.10.ebuild index 548792ce79c3..2e88644c7a05 100644 --- a/net-print/hplip/hplip-3.12.10.ebuild +++ b/net-print/hplip/hplip-3.12.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-print/hplip/hplip-3.12.10.ebuild,v 1.1 2012/10/05 16:28:51 billie Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-print/hplip/hplip-3.12.10.ebuild,v 1.2 2012/10/20 11:54:01 billie Exp $ EAPI=4 @@ -8,7 +8,7 @@ PYTHON_DEPEND="!minimal? 2" PYTHON_USE_WITH="threads xml" PYTHON_USE_WITH_OPT="!minimal" -inherit fdo-mime linux-info python autotools toolchain-funcs +inherit eutils fdo-mime linux-info python autotools toolchain-funcs DESCRIPTION="HP Linux Imaging and Printing. Includes printer, scanner, fax drivers and service tools." HOMEPAGE="http://hplipopensource.com/hplip-web/index.html" @@ -119,10 +119,10 @@ src_prepare() { # The hpcups driver does not use foomatic-rip local i for i in ppd/hpijs/*.ppd.gz ; do - rm -f ${i}.temp + rm -f ${i}.temp || die gunzip -c ${i} | sed 's/foomatic-rip-hplip/foomatic-rip/g' | \ gzip > ${i}.temp || die - mv ${i}.temp ${i} + mv ${i}.temp ${i} || die done eautoreconf |