summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Harder <radhermit@gentoo.org>2012-06-27 19:23:53 +0000
committerTim Harder <radhermit@gentoo.org>2012-06-27 19:23:53 +0000
commitf6fe225048bd345390c603598966676bc1f645cf (patch)
tree8bb9b39e2af1da176f4b790da86470b97300659b /net-mail
parentRemove old. (diff)
downloadgentoo-2-f6fe225048bd345390c603598966676bc1f645cf.tar.gz
gentoo-2-f6fe225048bd345390c603598966676bc1f645cf.tar.bz2
gentoo-2-f6fe225048bd345390c603598966676bc1f645cf.zip
Use eautoreconf instead of eautomake and revert prune_libtool_files usage until it properly removes useless python la files.
(Portage version: 2.2.0_alpha112/cvs/Linux x86_64)
Diffstat (limited to 'net-mail')
-rw-r--r--net-mail/libpst/ChangeLog6
-rw-r--r--net-mail/libpst/libpst-0.6.54-r1.ebuild9
2 files changed, 10 insertions, 5 deletions
diff --git a/net-mail/libpst/ChangeLog b/net-mail/libpst/ChangeLog
index fbd58b4ffa01..8f9ae1367c52 100644
--- a/net-mail/libpst/ChangeLog
+++ b/net-mail/libpst/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-mail/libpst
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.28 2012/06/27 19:13:48 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/ChangeLog,v 1.29 2012/06/27 19:23:53 radhermit Exp $
+
+ 27 Jun 2012; Tim Harder <radhermit@gentoo.org> libpst-0.6.54-r1.ebuild:
+ Use eautoreconf instead of eautomake and revert prune_libtool_files usage
+ until it properly removes useless python la files.
27 Jun 2012; Tim Harder <radhermit@gentoo.org> -libpst-0.6.52.ebuild,
-libpst-0.6.53.ebuild, -libpst-0.6.54.ebuild:
diff --git a/net-mail/libpst/libpst-0.6.54-r1.ebuild b/net-mail/libpst/libpst-0.6.54-r1.ebuild
index 23867be33c49..d18ab68f2010 100644
--- a/net-mail/libpst/libpst-0.6.54-r1.ebuild
+++ b/net-mail/libpst/libpst-0.6.54-r1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/libpst-0.6.54-r1.ebuild,v 1.2 2012/06/27 19:10:19 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-mail/libpst/libpst-0.6.54-r1.ebuild,v 1.3 2012/06/27 19:23:53 radhermit Exp $
EAPI=4
PYTHON_DEPEND="python? 2"
@@ -19,7 +19,6 @@ IUSE="debug dii doc python static-libs"
RDEPEND="dii? ( media-gfx/imagemagick[png] )"
DEPEND="${RDEPEND}
virtual/libiconv
- virtual/pkgconfig
dii? ( media-libs/gd[png] )
python? ( >=dev-libs/boost-1.48[python] )"
@@ -40,7 +39,7 @@ src_prepare() {
# Conditionally install the extra documentation
use doc || sed -i -e "/SUBDIRS/s: html::" Makefile.am
- eautomake
+ eautoreconf
}
src_configure() {
@@ -55,5 +54,7 @@ src_configure() {
src_install() {
default
- prune_libtool_files
+
+ # Remove useless .la files
+ find "${ED}" -name '*.la' -exec rm {} +
}