diff options
author | Jeroen Roovers <jer@gentoo.org> | 2013-05-25 15:46:05 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2013-05-25 15:46:05 +0000 |
commit | 7a77eee829e0eda2488a7ccef8cfe78ecc2f9139 (patch) | |
tree | b8da946a6db9d211a73cb519b425ad6f0a3ed53a /dev-libs/libconfig | |
parent | initial commit of libhackrf support for GSG's HackRF devices (diff) | |
download | gentoo-2-7a77eee829e0eda2488a7ccef8cfe78ecc2f9139.tar.gz gentoo-2-7a77eee829e0eda2488a7ccef8cfe78ecc2f9139.tar.bz2 gentoo-2-7a77eee829e0eda2488a7ccef8cfe78ecc2f9139.zip |
Old.
(Portage version: 2.2.0_alpha177/cvs/Linux x86_64, signed Manifest commit with key A792A613)
Diffstat (limited to 'dev-libs/libconfig')
-rw-r--r-- | dev-libs/libconfig/ChangeLog | 5 | ||||
-rw-r--r-- | dev-libs/libconfig/libconfig-1.4.9.ebuild | 42 |
2 files changed, 4 insertions, 43 deletions
diff --git a/dev-libs/libconfig/ChangeLog b/dev-libs/libconfig/ChangeLog index f221982aab77..bcc4adfdfce2 100644 --- a/dev-libs/libconfig/ChangeLog +++ b/dev-libs/libconfig/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-libs/libconfig # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.59 2013/05/25 08:02:25 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.60 2013/05/25 15:46:05 jer Exp $ + + 25 May 2013; Jeroen Roovers <jer@gentoo.org> -libconfig-1.4.9.ebuild: + Old. 25 May 2013; Agostino Sarubbo <ago@gentoo.org> libconfig-1.4.9-r1.ebuild: Stable for sparc, wrt bug #470392 diff --git a/dev-libs/libconfig/libconfig-1.4.9.ebuild b/dev-libs/libconfig/libconfig-1.4.9.ebuild deleted file mode 100644 index aa086697885d..000000000000 --- a/dev-libs/libconfig/libconfig-1.4.9.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.9.ebuild,v 1.8 2012/12/30 13:53:41 ago 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 -} |