diff options
author | 2013-10-19 12:22:23 +0000 | |
---|---|---|
committer | 2013-10-19 12:22:23 +0000 | |
commit | 902712b05897b95b617c6cbc699abf63d699adf8 (patch) | |
tree | 087ce228fc6edaf5dd801a64234532e4594f2a18 /dev-libs/libestr | |
parent | Fix manifest (bug #488562). (diff) | |
download | gentoo-2-902712b05897b95b617c6cbc699abf63d699adf8.tar.gz gentoo-2-902712b05897b95b617c6cbc699abf63d699adf8.tar.bz2 gentoo-2-902712b05897b95b617c6cbc699abf63d699adf8.zip |
Version bump
(Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key C2BA7F3C!)
Diffstat (limited to 'dev-libs/libestr')
-rw-r--r-- | dev-libs/libestr/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libestr/libestr-0.1.8.ebuild | 28 |
2 files changed, 34 insertions, 1 deletions
diff --git a/dev-libs/libestr/ChangeLog b/dev-libs/libestr/ChangeLog index 50df70c18176..affd55fb9a62 100644 --- a/dev-libs/libestr/ChangeLog +++ b/dev-libs/libestr/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libestr # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libestr/ChangeLog,v 1.24 2013/06/27 18:09:18 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libestr/ChangeLog,v 1.25 2013/10/19 12:22:23 hwoarang Exp $ + +*libestr-0.1.8 (19 Oct 2013) + + 19 Oct 2013; Markos Chandras <hwoarang@gentoo.org> +libestr-0.1.8.ebuild: + Version bump 27 Jun 2013; Agostino Sarubbo <ago@gentoo.org> libestr-0.1.5.ebuild: Stable for x86, wrt bug #472564 diff --git a/dev-libs/libestr/libestr-0.1.8.ebuild b/dev-libs/libestr/libestr-0.1.8.ebuild new file mode 100644 index 000000000000..f7a4c00637d5 --- /dev/null +++ b/dev-libs/libestr/libestr-0.1.8.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libestr/libestr-0.1.8.ebuild,v 1.1 2013/10/19 12:22:23 hwoarang Exp $ + +EAPI=5 + +inherit eutils + +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 ~arm ~hppa ~x86" +IUSE="debug static-libs" + +DEPEND="" +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_enable debug) $(use_enable static-libs static) +} + +src_install() { + default + prune_libtool_files +} |