summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkos Chandras <hwoarang@gentoo.org>2012-09-17 20:15:33 +0000
committerMarkos Chandras <hwoarang@gentoo.org>2012-09-17 20:15:33 +0000
commit6b601cb9db260b79cb57766c05849ed50beddcd3 (patch)
tree67fcf265b7488443be75a59dd3e8930b8daf8d72
parentVersion bump (diff)
downloadgentoo-2-6b601cb9db260b79cb57766c05849ed50beddcd3.tar.gz
gentoo-2-6b601cb9db260b79cb57766c05849ed50beddcd3.tar.bz2
gentoo-2-6b601cb9db260b79cb57766c05849ed50beddcd3.zip
Version bump
(Portage version: 2.1.11.17/cvs/Linux x86_64)
-rw-r--r--dev-libs/libestr/ChangeLog7
-rw-r--r--dev-libs/libestr/libestr-0.1.4.ebuild26
2 files changed, 32 insertions, 1 deletions
diff --git a/dev-libs/libestr/ChangeLog b/dev-libs/libestr/ChangeLog
index 4e74a63b4382..f0fa25fa6fc0 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.14 2012/09/14 14:15:32 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libestr/ChangeLog,v 1.15 2012/09/17 20:15:33 hwoarang Exp $
+
+*libestr-0.1.4 (17 Sep 2012)
+
+ 17 Sep 2012; Markos Chandras <hwoarang@gentoo.org> +libestr-0.1.4.ebuild:
+ Version bump
14 Sep 2012; Agostino Sarubbo <ago@gentoo.org> libestr-0.1.3.ebuild:
Stable for amd64, wrt bug #433225
diff --git a/dev-libs/libestr/libestr-0.1.4.ebuild b/dev-libs/libestr/libestr-0.1.4.ebuild
new file mode 100644
index 000000000000..bf22ba183fe3
--- /dev/null
+++ b/dev-libs/libestr/libestr-0.1.4.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.4.ebuild,v 1.1 2012/09/17 20:15:33 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 ~arm ~hppa ~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
+}