summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Popov <pinkbyte@gentoo.org>2012-11-06 07:11:53 +0000
committerSergey Popov <pinkbyte@gentoo.org>2012-11-06 07:11:53 +0000
commit6ca4105c9f13cb84dda2f797d757230f8ff41260 (patch)
tree0a07d098bd4544b57045b75dc266efc22e9e8b5f /dev-libs/libestr
parentVersion bump (diff)
downloadgentoo-2-6ca4105c9f13cb84dda2f797d757230f8ff41260.tar.gz
gentoo-2-6ca4105c9f13cb84dda2f797d757230f8ff41260.tar.bz2
gentoo-2-6ca4105c9f13cb84dda2f797d757230f8ff41260.zip
Fix minor QA issues - replace 'find/rm' with prune_libtool_files, replace 'emake install' with default src_install call
(Portage version: 2.2.0_alpha142/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'dev-libs/libestr')
-rw-r--r--dev-libs/libestr/ChangeLog6
-rw-r--r--dev-libs/libestr/libestr-0.1.4.ebuild10
2 files changed, 11 insertions, 5 deletions
diff --git a/dev-libs/libestr/ChangeLog b/dev-libs/libestr/ChangeLog
index 7b0da75fca2b..38599effd49e 100644
--- a/dev-libs/libestr/ChangeLog
+++ b/dev-libs/libestr/ChangeLog
@@ -1,6 +1,10 @@
# 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.16 2012/10/17 03:07:52 phajdan.jr Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libestr/ChangeLog,v 1.17 2012/11/06 07:11:53 pinkbyte Exp $
+
+ 06 Nov 2012; Sergey Popov <pinkbyte@gentoo.org> libestr-0.1.4.ebuild:
+ Fix minor QA issues - replace 'find/rm' with prune_libtool_files, replace
+ 'emake install' with default src_install call
17 Oct 2012; Pawel Hajdan jr <phajdan.jr@gentoo.org> libestr-0.1.3.ebuild:
x86 stable wrt bug #433225
diff --git a/dev-libs/libestr/libestr-0.1.4.ebuild b/dev-libs/libestr/libestr-0.1.4.ebuild
index bf22ba183fe3..2ebef560a61c 100644
--- a/dev-libs/libestr/libestr-0.1.4.ebuild
+++ b/dev-libs/libestr/libestr-0.1.4.ebuild
@@ -1,9 +1,11 @@
# 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 $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libestr/libestr-0.1.4.ebuild,v 1.2 2012/11/06 07:11:53 pinkbyte Exp $
EAPI=4
+inherit eutils
+
DESCRIPTION="Library for some string essentials"
HOMEPAGE="http://libestr.adiscon.com/"
SRC_URI="http://libestr.adiscon.com/files/download/${P}.tar.gz"
@@ -20,7 +22,7 @@ src_configure() {
econf $(use_enable debug) $(use_enable static-libs static)
}
-src_install() {
- emake install DESTDIR="${D}"
- find "${D}" -name "*.la" -delete || die
+src_install() {
+ default
+ prune_libtool_files
}