blob: 514009b9f23f721d72e53b700311986f55f6bb12 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/dvxml/dvxml-0.1.7.ebuild,v 1.2 2009/10/04 15:06:41 ssuominen Exp $
inherit eutils flag-o-matic
DESCRIPTION="dvxml provides some convenient stuff on top of the xmlwrapp package"
SRC_URI="http://tinf2.vub.ac.be/~dvermeir/software/dv/${PN}/download/${P}.tar.gz"
HOMEPAGE="http://tinf2.vub.ac.be/~dvermeir/software/dv/dvxml/html/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc"
DEPEND="dev-libs/dvutil
>=dev-libs/xmlwrapp-0.5.0
dev-libs/libxslt
dev-libs/libxml2"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i 's/^\(SUBDIRS =.*\)doc\(.*\)$/\1\2/' Makefile.in || \
die "sed Makefile.in failed"
append-ldflags $(no-as-needed)
}
src_install() {
emake DESTDIR="${D}" install || die "make install failed"
dodoc ChangeLog README AUTHORS
use doc && dohtml -r doc/html/*
}
|