summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2007-12-31 05:34:05 +0000
committerMike Frysinger <vapier@gentoo.org>2007-12-31 05:34:05 +0000
commitfe75077fb7080bea42f9c8799006e62e3358b07d (patch)
tree799b488ec27f25168f0bdb7dc8379e5642791106 /dev-libs/libyaml
parentdev-util/monodevelop-database: initial version (diff)
downloadgentoo-2-fe75077fb7080bea42f9c8799006e62e3358b07d.tar.gz
gentoo-2-fe75077fb7080bea42f9c8799006e62e3358b07d.tar.bz2
gentoo-2-fe75077fb7080bea42f9c8799006e62e3358b07d.zip
amd64/ppc/ppc64 love
(Portage version: 2.1.4_rc12)
Diffstat (limited to 'dev-libs/libyaml')
-rw-r--r--dev-libs/libyaml/libyaml-0.0.1.ebuild11
1 files changed, 4 insertions, 7 deletions
diff --git a/dev-libs/libyaml/libyaml-0.0.1.ebuild b/dev-libs/libyaml/libyaml-0.0.1.ebuild
index 998760787d47..b03e281ffc22 100644
--- a/dev-libs/libyaml/libyaml-0.0.1.ebuild
+++ b/dev-libs/libyaml/libyaml-0.0.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.0.1.ebuild,v 1.2 2007/10/16 00:52:43 sbriesen Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libyaml/libyaml-0.0.1.ebuild,v 1.3 2007/12/31 05:34:05 vapier Exp $
inherit eutils
@@ -12,11 +12,8 @@ SRC_URI="http://pyyaml.org/download/${PN}/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
-KEYWORDS="~x86"
-
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
IUSE="doc examples"
-DEPEND=""
-RDEPEND=""
S="${WORKDIR}/${MY_P}"
@@ -24,7 +21,7 @@ src_unpack() {
unpack ${A}
cd "${S}"
# conditionally remove tests
- if ! hasq test ${FEATURES}; then
+ if ! hasq test ${FEATURES} ; then
sed -i -e 's: tests::g' Makefile*
fi
}
@@ -33,7 +30,7 @@ src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
use doc && dohtml -r doc/html/.
dodoc README
- if use examples; then
+ if use examples ; then
insinto /usr/share/doc/${PF}/examples
doins tests/example-*.c
fi