summaryrefslogtreecommitdiff
blob: 46a386f8da4bce47b4d8d739042687049fd24898 (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
45
46
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-python/amara/amara-1.2.0.2.ebuild,v 1.1 2008/11/14 03:31:29 marineam Exp $

inherit distutils

MY_P=${P/amara/Amara}

DESCRIPTION="Python tools for XML processing."
HOMEPAGE="http://uche.ogbuji.net/tech/4suite/amara/"
SRC_URI="ftp://ftp.4suite.org/pub/Amara/${MY_P}.tar.bz2"

LICENSE="Apache-1.1"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="doc examples"

RDEPEND=">=dev-python/4suite-1.0.2"
DEPEND="${RDEPEND}
	doc? ( dev-python/epydoc )"

S=${WORKDIR}/${MY_P}

src_unpack() {
	unpack ${A}
	cd "${S}"

	# We would get 'unknown module amara' if amara is not yet installed
	ln -s lib amara
}

src_install() {
	distutils_src_install

	dodoc ACKNOWLEDGEMENTS CHANGES README TODO quickref.txt
	dohtml manual.html

	if use doc; then
		epydoc build/lib/amara && dohtml -r html/*
	fi

	if use examples; then
		insinto /usr/share/${PN}
		doins -r demo
	fi
}