summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuca Barbato <lu_zero@gentoo.org>2005-11-16 09:25:05 +0000
committerLuca Barbato <lu_zero@gentoo.org>2005-11-16 09:25:05 +0000
commitf76b5e0a9805e72942fdd02dcd32578e142e0342 (patch)
tree75f62afe04ddd37ba46a98502a426c45e5b85408 /net-print/hplip
parentReduced the amount of output during the build slightly to work around bug #11... (diff)
downloadgentoo-2-f76b5e0a9805e72942fdd02dcd32578e142e0342.tar.gz
gentoo-2-f76b5e0a9805e72942fdd02dcd32578e142e0342.tar.bz2
gentoo-2-f76b5e0a9805e72942fdd02dcd32578e142e0342.zip
bigendian typo in source
(Portage version: 2.0.53_rc7)
Diffstat (limited to 'net-print/hplip')
-rw-r--r--net-print/hplip/ChangeLog5
-rw-r--r--net-print/hplip/hplip-0.9.5.ebuild10
2 files changed, 11 insertions, 4 deletions
diff --git a/net-print/hplip/ChangeLog b/net-print/hplip/ChangeLog
index d3477a9d53b7..8804fffff4d3 100644
--- a/net-print/hplip/ChangeLog
+++ b/net-print/hplip/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-print/hplip
# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/hplip/ChangeLog,v 1.8 2005/09/25 17:10:17 metalgod Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/hplip/ChangeLog,v 1.9 2005/11/16 09:25:05 lu_zero Exp $
+
+ 16 Nov 2005; Luca Barbato <lu_zero@gentoo.org> hplip-0.9.5.ebuild:
+ Fix big endian error
25 Sep 2005; Luis Medinas <metalgod@gentoo.org> hplip-0.9.5.ebuild:
Update to the latest foomatic-db-hpijs snapshot.
diff --git a/net-print/hplip/hplip-0.9.5.ebuild b/net-print/hplip/hplip-0.9.5.ebuild
index 72e731ac61ac..101b895d1fe4 100644
--- a/net-print/hplip/hplip-0.9.5.ebuild
+++ b/net-print/hplip/hplip-0.9.5.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-print/hplip/hplip-0.9.5.ebuild,v 1.2 2005/09/25 17:10:17 metalgod Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-print/hplip/hplip-0.9.5.ebuild,v 1.3 2005/11/16 09:25:05 lu_zero Exp $
inherit eutils
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/hpinkjet/${P}.tar.gz
foomaticdb? ( http://www.linuxprinting.org/download/foomatic/foomatic-db-hpijs-${DB_V}.tar.gz )"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ppc ~x86"
IUSE="foomaticdb snmp X qt ppds scanner cups usb"
DEPEND="dev-lang/python
@@ -34,7 +34,11 @@ RDEPEND="virtual/ghostscript
cups? ( net-print/cups )
${DEPEND}"
-
+src_unpack() {
+ unpack ${A}
+ sed -i -e "s:(uint32_t)0xff000000) >> 24))):(uint32_t)0xff000000) >> 24):" \
+ ${S}/scan/sane/mfpdtf.h
+}
src_compile() {
myconf="${myconf} --disable-cups-install --disable-foomatic-install"