summaryrefslogtreecommitdiff
blob: e22109e97060d2f4cc0dc94026270051fb4c0bed (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/libconf/libconf-0.42.10.ebuild,v 1.2 2005/11/26 17:39:13 slarti Exp $

inherit multilib

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://libconf.net/download/${MY_P}.tar.bz2"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~sparc ~x86"

IUSE="python ruby"
DEPEND="dev-lang/perl
dev-perl/DelimMatch
dev-perl/XML-Twig
python? ( >=dev-lang/python-2.4.2 )
ruby? ( >=dev-lang/ruby-1.8.3 )"

if use python ; then
	mypython="python"
fi

if use ruby ; then
	myruby="ruby"
fi

mybindings="c ${mypython} ${myruby} bash";

src_unpack() {
	unpack ${A}
	cd ${S}

	# Multilib fix
	sed -i "/^LIB_DIR/ { s:lib:$(get_libdir): }" \
		bindings/c/src/Makefile \
		|| die "bad sed"
}
src_compile() {
	emake "BINDINGS=${mybindings}" || die "make failed"

	# Multilib fix. Needs to be in src_compile because we need to tweak the
	# Makefile that's generated by extconf.rb. More elegant solution?
	if use ruby ; then
		sed -i "/^sitedir/ { s:lib:$(get_libdir): }" \
			bindings/ruby/src/Makefile \
			|| die "bad sed"
	fi
}

src_install() {
	einstall "BINDINGS=${mybindings}" PREFIX=${D}/usr ROOT=${D}
	dodoc AUTHORS COPYING ChangeLog \
		bindings/ruby/src/AUTHORS \
		bindings/ruby/src/README \
		bindings/python/src/README
}