summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2012-03-18 16:37:37 +0000
committerJeroen Roovers <jer@gentoo.org>2012-03-18 16:37:37 +0000
commit4b697315c11c029f55c594cb8cfb0d9f9599d7f6 (patch)
tree462551548d835f9182e1b2ce27313dce3ef963c3 /dev-libs
parentFix bug #366753, workaround bug #402285. (diff)
downloadgentoo-2-4b697315c11c029f55c594cb8cfb0d9f9599d7f6.tar.gz
gentoo-2-4b697315c11c029f55c594cb8cfb0d9f9599d7f6.tar.bz2
gentoo-2-4b697315c11c029f55c594cb8cfb0d9f9599d7f6.zip
Old.
(Portage version: 2.2.0_alpha90/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs')
-rw-r--r--dev-libs/libconfig/ChangeLog5
-rw-r--r--dev-libs/libconfig/libconfig-1.4.7.ebuild44
2 files changed, 4 insertions, 45 deletions
diff --git a/dev-libs/libconfig/ChangeLog b/dev-libs/libconfig/ChangeLog
index 6ad2ca1557d2..f5381e4252e2 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.41 2012/03/18 15:43:26 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/ChangeLog,v 1.42 2012/03/18 16:37:37 jer Exp $
+
+ 18 Mar 2012; Jeroen Roovers <jer@gentoo.org> -libconfig-1.4.7.ebuild:
+ Old.
18 Mar 2012; Raúl Porcel <armin76@gentoo.org> libconfig-1.4.8.ebuild:
sparc stable wrt #400011
diff --git a/dev-libs/libconfig/libconfig-1.4.7.ebuild b/dev-libs/libconfig/libconfig-1.4.7.ebuild
deleted file mode 100644
index 3dd50b6c8a19..000000000000
--- a/dev-libs/libconfig/libconfig-1.4.7.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libconfig/libconfig-1.4.7.ebuild,v 1.9 2011/11/28 00:22:12 jer Exp $
-
-EAPI="2"
-
-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="GPL-2"
-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() {
- # --disable-examples does not actually prevent examples from being built
- # but let's set it anyway
- econf $(use_enable static-libs static) --disable-examples
-}
-
-src_test() {
- # It responds to check but that does not work as intended
- emake test || die
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- 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}/* || die
- done
- fi
-}