blob: 7b9f785cc0b0f78e5ca8885bcf814549ac26e5ce (
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
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libmxmlplus/libmxmlplus-0.9.2_p20080323.ebuild,v 1.2 2008/09/06 21:28:24 halcy0n Exp $
inherit autotools
DESCRIPTION="Minimal XML DOM Library"
SRC_URI="mirror://gentoo/${P}.tar.lzma"
HOMEPAGE="http://mxml.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
DEPEND="doc? ( app-doc/doxygen )
app-arch/lzma-utils"
RDEPEND=""
src_unpack()
{
unpack ${A}
cd "${S}"
eautoreconf
}
src_compile() {
econf \
--enable-shared \
$(use_enable doc) \
--disable-dependency-tracking || die "econf failed"
emake || die "emake failed"
}
src_install () {
emake DESTDIR="${D}" install || die "emake install failed"
dodoc AUTHORS ChangeLog NEWS README RELNOTES TODO
if use doc; then
dodir /usr/share/doc/${PF}
dohtml -r "${S}/doc/html"/*
fi
}
|