summaryrefslogtreecommitdiff
blob: 6c8ea356a492ec91f444bc75516e57a3326eee8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

WANT_AUTOCONF="latest"
WANT_AUTOMAKE="latest"
inherit autotools

KEYWORDS="~x86"

MY_P=${P/lib}

DESCRIPTION="A YAML 1.1 parser and emitter written in C."
HOMEPAGE="http://pyyaml.org/wiki/LibYAML"
SRC_URI="http://pyyaml.org/download/${PN}/${MY_P}.tar.gz"
LICENSE="MIT"
SLOT="0"
IUSE="examples"

DEPEND=""
RDEPEND=""

S="${WORKDIR}/${MY_P}"

src_unpack() {
	unpack ${A}
	cd "${S}"
	if ! hasq test ${FEATURES} ; then
		sed -i \
			-e 's/tests//' \
			Makefile.am || die "sed failed"
		eautoreconf
	fi
}

src_install() {
	emake DESTDIR="${D}" install || die "emake install failed"
	dohtml -r doc/html/*
	dodoc README
	if use examples ; then
		insinto /usr/share/${PN}/examples
		doins tests/example-*.c
	fi
}