diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2012-07-11 19:19:54 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2012-07-11 19:19:54 +0000 |
commit | 960e86974a4430368d7f1b937920737ae4d6421b (patch) | |
tree | b4bedc25a3108540438f0c6d2f8f58448c29708a /dev-libs/libestr | |
parent | Marking fstobdf-1.0.5 ppc64 for bug 419473 (diff) | |
download | gentoo-2-960e86974a4430368d7f1b937920737ae4d6421b.tar.gz gentoo-2-960e86974a4430368d7f1b937920737ae4d6421b.tar.bz2 gentoo-2-960e86974a4430368d7f1b937920737ae4d6421b.zip |
Version bump
(Portage version: 2.1.11.5/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libestr')
-rw-r--r-- | dev-libs/libestr/ChangeLog | 8 | ||||
-rw-r--r-- | dev-libs/libestr/libestr-0.1.3.ebuild | 26 |
2 files changed, 32 insertions, 2 deletions
diff --git a/dev-libs/libestr/ChangeLog b/dev-libs/libestr/ChangeLog index c91e0e66d24f..327314722f70 100644 --- a/dev-libs/libestr/ChangeLog +++ b/dev-libs/libestr/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libestr # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libestr/ChangeLog,v 1.9 2012/06/02 16:52:18 maksbotan Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libestr/ChangeLog,v 1.10 2012/07/11 19:19:54 hwoarang Exp $ + +*libestr-0.1.3 (11 Jul 2012) + + 11 Jul 2012; Markos Chandras <hwoarang@gentoo.org> +libestr-0.1.3.ebuild: + Version bump 02 Jun 2012; Maxim Koltsov <maksbotan@gentoo.org> -libestr-0.1.0.ebuild, -libestr-0.1.1.ebuild: @@ -35,4 +40,3 @@ 22 Feb 2011; Markos Chandras <hwoarang@gentoo.org> +libestr-0.1.0.ebuild: Initial commit. Thanks to Marcin Mirosław <bug@mejor.pl>. Bug #348694 - diff --git a/dev-libs/libestr/libestr-0.1.3.ebuild b/dev-libs/libestr/libestr-0.1.3.ebuild new file mode 100644 index 000000000000..76b584c93361 --- /dev/null +++ b/dev-libs/libestr/libestr-0.1.3.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libestr/libestr-0.1.3.ebuild,v 1.1 2012/07/11 19:19:54 hwoarang Exp $ + +EAPI=4 + +DESCRIPTION="Library for some string essentials" +HOMEPAGE="http://libestr.adiscon.com/" +SRC_URI="http://libestr.adiscon.com/files/download/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug static-libs" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_enable debug) $(use_enable static-libs static) +} + +src_install() { + emake install DESTDIR="${D}" + find "${D}" -name "*.la" -delete || die +} |