summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2004-10-30 23:16:25 +0000
committerMike Frysinger <vapier@gentoo.org>2004-10-30 23:16:25 +0000
commitf089496522de638fae92256b1483b8ef814ac91a (patch)
treee7f6d0ceb548a74ac553953b29f903afbf7a675d /dev-libs
parentFix RDEPEND. (diff)
downloadgentoo-2-f089496522de638fae92256b1483b8ef814ac91a.tar.gz
gentoo-2-f089496522de638fae92256b1483b8ef814ac91a.tar.bz2
gentoo-2-f089496522de638fae92256b1483b8ef814ac91a.zip
hppa KEYWORDS
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libxml2/libxml2-2.6.15-r1.ebuild13
1 files changed, 7 insertions, 6 deletions
diff --git a/dev-libs/libxml2/libxml2-2.6.15-r1.ebuild b/dev-libs/libxml2/libxml2-2.6.15-r1.ebuild
index c7dd69263fd3..d6cfb217bbc6 100644
--- a/dev-libs/libxml2/libxml2-2.6.15-r1.ebuild
+++ b/dev-libs/libxml2/libxml2-2.6.15-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.15-r1.ebuild,v 1.4 2004/10/30 18:00:29 hansmi Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxml2/libxml2-2.6.15-r1.ebuild,v 1.5 2004/10/30 23:16:25 vapier Exp $
inherit libtool gnome.org flag-o-matic gnuconfig eutils
@@ -9,11 +9,12 @@ HOMEPAGE="http://www.xmlsoft.org/"
LICENSE="MIT"
SLOT="2"
-KEYWORDS="x86 ppc sparc ~mips ~alpha ~arm -hppa amd64 ~ia64 ~ppc64 ~s390"
+KEYWORDS="x86 ppc sparc ~mips ~alpha ~arm ~hppa amd64 ~ia64 ~ppc64 ~s390"
IUSE="python readline ipv6"
DEPEND="sys-libs/zlib
python? ( dev-lang/python )
+ hppa? ( >=sys-devel/binutils-2.15.92.0.2 )
readline? ( sys-libs/readline )"
src_unpack() {
@@ -41,9 +42,9 @@ src_compile() {
# fresh install, and existing) - <azarah@gentoo.org> (22 Dec 2002).
econf --with-zlib \
- `use_with python` \
- `use_with readline` \
- `use_enable ipv6` || die
+ $(use_with python) \
+ $(use_with readline) \
+ $(use_enable ipv6) || die
emake || die
@@ -53,7 +54,7 @@ src_install() {
make DESTDIR=${D} install || die
- dodoc AUTHORS Copyright ChangeLog INSTALL NEWS README TODO
+ dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
}