diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-01-21 19:40:17 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-01-21 19:40:17 +0000 |
commit | 7d2696df1ca277f1da9151dbacfa0099cfcd8197 (patch) | |
tree | 0ac033c953e5ec954cb3e1f64ef3f94839ea5a20 /dev-libs/libconfig | |
parent | Fix bundling of fonts and pc file location. Wrt bug#444520 and bug#443884. (diff) | |
download | gentoo-2-7d2696df1ca277f1da9151dbacfa0099cfcd8197.tar.gz gentoo-2-7d2696df1ca277f1da9151dbacfa0099cfcd8197.tar.bz2 gentoo-2-7d2696df1ca277f1da9151dbacfa0099cfcd8197.zip |
Old.
(Portage version: 2.2.0_alpha158/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-libs/libconfig')
-rw-r--r-- | dev-libs/libconfig/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libconfig/libconfig-1.4.8.ebuild | 42 |
2 files changed, 5 insertions, 44 deletions
diff --git a/dev-libs/libconfig/ChangeLog b/dev-libs/libconfig/ChangeLog index f3f4eccfd83c..2b18473a3c5e 100644 --- a/dev-libs/libconfig/ChangeLog +++ b/dev-libs/libconfig/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libconfig -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.50 2012/12/30 13:53:41 ago Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.51 2013/01/21 19:40:16 jer Exp $ + + 21 Jan 2013; Jeroen Roovers <jer@gentoo.org> -libconfig-1.4.8.ebuild: + Old. 30 Dec 2012; Agostino Sarubbo <ago@gentoo.org> libconfig-1.4.9.ebuild: Stable for sparc, wrt bug #447744 diff --git a/dev-libs/libconfig/libconfig-1.4.8.ebuild b/dev-libs/libconfig/libconfig-1.4.8.ebuild deleted file mode 100644 index ce59815e87f0..000000000000 --- a/dev-libs/libconfig/libconfig-1.4.8.ebuild +++ /dev/null @@ -1,42 +0,0 @@ -# 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.8.ebuild,v 1.8 2012/12/18 17:02:29 jer Exp $ - -EAPI="4" - -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 - if ! use static-libs; then - rm -f "${D}"/usr/lib*/lib*.la - fi - if use examples; then - local dir - for dir in examples/c examples/c++; do - insinto /usr/share/doc/${PF}/${dir} - doins ${dir}/* - done - fi -} |