blob: 8e6fd7c6fd670befc2b8bbc8b426eca697b01e0e (
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-cpp/libherdstat/libherdstat-0.2.0.ebuild,v 1.2 2006/02/09 01:05:07 halcy0n Exp $
inherit eutils autotools
TEST_DATA_PV="20060119"
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 ~mips ~ppc ~sparc ~x86"
IUSE="debug doc curl static test"
RDEPEND=">=dev-libs/xmlwrapp-0.5.0
>=dev-cpp/libebt-1.1.0
curl? ( net-misc/curl )"
DEPEND="${RDEPEND}
dev-util/pkgconfig
doc? ( app-doc/doxygen )"
RDEPEND="${RDEPEND}
net-misc/wget"
pkg_setup() {
if has test $FEATURES && ! use test ; then
die "FEATURES=test is set but USE=test is not; tests will fail without USE=test"
fi
}
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${P}-gcc.patch
AT_M4DIR="${WORKDIR}"/${P}/m4 eautoreconf
}
src_compile() {
econf \
--disable-examples \
--with-test-data=${WORKDIR}/${TEST_DATA_P} \
$(use_enable debug) \
$(use_enable static) \
$(use_with curl) \
|| die "econf failed"
emake || die "emake failed"
use doc && { emake doxygen || die "failed to build API docs" ; }
}
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc AUTHORS ChangeLog README TODO NEWS
if use doc ; then
dohtml -r doc/html/*
doman doc/man/*/*.[0-9]
# examples
cp -R examples ${D}/usr/share/doc/${PF}
# remove all Makefile's and .{dep,lib}s directories
find ${D}/usr/share/doc/${PF}/examples \
\( -name 'Makefile*' -or -name '.*s' \) \
-exec rm -fr {} \; 2>/dev/null
fi
}
|