# Copyright 1999-2012 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.9.ebuild,v 1.4 2012/12/19 09:37:16 pinkbyte Exp $ EAPI="4" inherit eutils 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="LGPL-2.1" SLOT="0" KEYWORDS="amd64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-linux" IUSE="examples static-libs" DEPEND=" sys-devel/libtool sys-devel/bison" RDEPEND="" src_configure() { econf $(use_enable static-libs static) --disable-examples } src_test() { # It responds to check but that does not work as intended emake test } src_install() { default prune_libtool_files if use examples; then local dir for dir in examples/c examples/c++; do insinto /usr/share/doc/${PF}/${dir} doins ${dir}/* done fi }