diff options
author | Tim Harder <radhermit@gentoo.org> | 2011-09-28 23:14:26 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2011-09-28 23:14:26 +0000 |
commit | 81d695461a7acf5f7df8b5f5393d3cf926266c7a (patch) | |
tree | 13f5f015890b0d41b83c8a9c03c912c0951ebca0 | |
parent | Old version cleanup (diff) | |
download | gentoo-2-81d695461a7acf5f7df8b5f5393d3cf926266c7a.tar.gz gentoo-2-81d695461a7acf5f7df8b5f5393d3cf926266c7a.tar.bz2 gentoo-2-81d695461a7acf5f7df8b5f5393d3cf926266c7a.zip |
Version bump.
(Portage version: 2.2.0_alpha59/cvs/Linux x86_64)
-rw-r--r-- | dev-libs/libexplain/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libexplain/libexplain-0.47.ebuild | 50 |
2 files changed, 56 insertions, 1 deletions
diff --git a/dev-libs/libexplain/ChangeLog b/dev-libs/libexplain/ChangeLog index a86773db1c0a..7c37f3a311c3 100644 --- a/dev-libs/libexplain/ChangeLog +++ b/dev-libs/libexplain/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libexplain # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v 1.7 2011/08/31 02:39:34 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/ChangeLog,v 1.8 2011/09/28 23:14:26 radhermit Exp $ + +*libexplain-0.47 (28 Sep 2011) + + 28 Sep 2011; Tim Harder <radhermit@gentoo.org> +libexplain-0.47.ebuild: + Version bump. *libexplain-0.46 (31 Aug 2011) diff --git a/dev-libs/libexplain/libexplain-0.47.ebuild b/dev-libs/libexplain/libexplain-0.47.ebuild new file mode 100644 index 000000000000..11e908409fd7 --- /dev/null +++ b/dev-libs/libexplain/libexplain-0.47.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libexplain/libexplain-0.47.ebuild,v 1.1 2011/09/28 23:14:26 radhermit Exp $ + +EAPI=4 +inherit autotools eutils + +MY_P="${P}.D001" + +DESCRIPTION="Library which may be used to explain Unix and Linux system call errors" +HOMEPAGE="http://libexplain.sourceforge.net/" +SRC_URI="http://libexplain.sourceforge.net/${MY_P}.tar.gz + http://dev.gentoo.org/~radhermit/distfiles/${P}-parallel-make.patch.gz" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" +LICENSE="GPL-3" +IUSE="static-libs" + +DEPEND=" + >=sys-kernel/linux-headers-2.6.35 + sys-libs/libcap + >=sys-libs/glibc-2.11" +RDEPEND="${DEPEND}" + +S="${WORKDIR}"/${MY_P} + +src_prepare() { + # Portage incompatible test + sed \ + -e '/t0524a/d' \ + -e '/t0363a/d' \ + -i Makefile.in || die + + epatch "${FILESDIR}"/${PN}-0.45-configure.patch \ + "${WORKDIR}"/${P}-parallel-make.patch + + cp "${S}"/etc/configure.ac "${S}" + eautoreconf +} + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + find "${ED}" -name '*.la' -exec rm -f '{}' + +} |