blob: 96b1e1c3f92ee88830d5880204e2b0cf11c5eaba (
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
47
48
49
50
51
52
53
54
55
56
57
58
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libherdstat/libherdstat-0.1.1-r1.ebuild,v 1.7 2008/02/01 03:50:20 jer Exp $
inherit eutils
TEST_DATA_PV="20051023"
TEST_DATA_P="${PN/lib/}-test-data-${TEST_DATA_PV}"
DESCRIPTION="C++ library offering interfaces for portage-related things such as Gentoo-specific XML files, package searching, and version sorting"
HOMEPAGE="http://developer.berlios.de/projects/libherdstat/"
SRC_URI="http://download.berlios.de/${PN}/${P}.tar.bz2
test? ( http://download.berlios.de/${PN}/${TEST_DATA_P}.tar.bz2 )"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 hppa ~ia64 ~mips ppc sparc x86"
IUSE="debug doc curl test"
RDEPEND=">=dev-libs/xmlwrapp-0.5.0
curl? ( net-misc/curl )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( app-doc/doxygen )"
RDEPEND="${RDEPEND}
!curl? ( net-misc/wget )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-fix-locale-longdesc.diff
}
src_compile() {
econf \
--with-test-data=${WORKDIR}/${TEST_DATA_P} \
--enable-static \
$(use_enable test tests) \
$(use_enable debug) \
$(use_with curl) \
|| die "econf failed"
emake || die "emake failed"
if use doc ; then
emake docs || die "failed to build API docs"
fi
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog README TODO NEWS
if use doc ; then
dohtml -r doc/${PV}/html/*
doman doc/${PV}/man/*/*.[0-9]
fi
}
|