blob: 3aaef9c031659eb12368e5643e2e4dc487b62c2f (
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
|
# Copyright 1999-2006 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_p20060111.ebuild,v 1.1 2006/01/11 13:19:49 flameeyes Exp $
inherit libtool
DESCRIPTION="Minimal XML DOM Library"
SRC_URI="mirror://gentoo/${P}.tar.gz"
HOMEPAGE="http://mxml.sourceforge.net/"
DEPEND="doc? ( app-doc/doxygen )"
RDEPEND=""
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~amd64"
IUSE="doc"
src_unpack() {
unpack ${A}
cd ${S}
elibtoolize
}
src_compile() {
econf \
--enable-shared \
$(use_enable doc) \
--disable-dependency-tracking || die "econf failed"
emake || die "emake failed"
}
src_install () {
make DESTDIR=${D} install || die
if use doc; then
dodir /usr/share/doc/${PF}
dohtml -r ${S}/doc/html/*
fi
}
|