blob: d6db2a391beaf6465105d1cd44d3bbb1fe072a48 (
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
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/libconf/libconf-0.40.00.ebuild,v 1.8 2007/01/18 19:27:18 dams Exp $
IUSE="xml"
MY_P=perl-${PN/l/L}-${PV}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Centralized abstraction layer for system configuration files"
HOMEPAGE="http://libconf.net/"
SRC_URI="http://damien.krotkine.com/libconf/dist/${MY_P}.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
DEPEND="dev-lang/perl
dev-perl/DelimMatch
xml? ( dev-perl/Data-DumpXML )"
src_compile() {
emake || die "make failed"
make test || die "make test failed"
}
src_install() {
einstall PREFIX=${D}/usr
dodoc AUTHORS COPYING ChangeLog
}
|