blob: fb8469dcbc8546ec3aeedefd8058c90a336faba4 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.7.ebuild,v 1.3 2011/04/12 13:47:27 jer Exp $
EAPI="2"
inherit autotools-utils
DESCRIPTION="Libconfig is a simple library for manipulating structured configuration files"
HOMEPAGE="http://www.hyperrealm.com/libconfig/libconfig.html"
SRC_URI="http://www.hyperrealm.com/libconfig/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="examples static-libs"
DEPEND="
sys-devel/libtool
sys-devel/bison"
RDEPEND=""
src_configure() {
# --disable-examples does not actually prevent examples from being built
# but let's set it anyway
econf $(use_enable static-libs static) --disable-examples
}
src_test() {
# It responds to check but that does not work as intended
emake test || die
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
use static-libs || remove_libtool_files
if use examples; then
local dir
for dir in examples/c examples/c++; do
insinto /usr/share/doc/${PF}/${dir}
doins ${dir}/* || die
done
fi
}
|