summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomas Chvatal <scarabeus@gentoo.org>2012-09-19 19:31:17 +0000
committerTomas Chvatal <scarabeus@gentoo.org>2012-09-19 19:31:17 +0000
commit0a9ea25d6aad4991aa64aaea72a63ba47912000e (patch)
treeafb13dc2cd5592b3d346a057e90a7df8f712c69a /app-text/enchant
parentany mod support will do (diff)
downloadgentoo-2-0a9ea25d6aad4991aa64aaea72a63ba47912000e.tar.gz
gentoo-2-0a9ea25d6aad4991aa64aaea72a63ba47912000e.tar.bz2
gentoo-2-0a9ea25d6aad4991aa64aaea72a63ba47912000e.zip
Fix eautoreconf call and use new la files punt function from eutils. Fixes bug#435292. Patch provided by Alphat-PC.
(Portage version: 2.2.0_alpha129/cvs/Linux x86_64)
Diffstat (limited to 'app-text/enchant')
-rw-r--r--app-text/enchant/ChangeLog6
-rw-r--r--app-text/enchant/enchant-1.6.0.ebuild12
2 files changed, 9 insertions, 9 deletions
diff --git a/app-text/enchant/ChangeLog b/app-text/enchant/ChangeLog
index 3c628c540231..86bd37170fce 100644
--- a/app-text/enchant/ChangeLog
+++ b/app-text/enchant/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-text/enchant
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/ChangeLog,v 1.122 2012/05/18 08:30:49 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/ChangeLog,v 1.123 2012/09/19 19:31:17 scarabeus Exp $
+
+ 19 Sep 2012; Tomáš Chvátal <scarabeus@gentoo.org> enchant-1.6.0.ebuild:
+ Fix eautoreconf call and use new la files punt function from eutils. Fixes
+ bug#435292. Patch provided by Alphat-PC.
18 May 2012; Alexis Ballier <aballier@gentoo.org> enchant-1.6.0.ebuild:
keyword ~amd64-fbsd
diff --git a/app-text/enchant/enchant-1.6.0.ebuild b/app-text/enchant/enchant-1.6.0.ebuild
index 7e368842c940..e28f8074144f 100644
--- a/app-text/enchant/enchant-1.6.0.ebuild
+++ b/app-text/enchant/enchant-1.6.0.ebuild
@@ -1,10 +1,10 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/enchant-1.6.0.ebuild,v 1.16 2012/05/18 08:30:49 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/enchant-1.6.0.ebuild,v 1.17 2012/09/19 19:31:17 scarabeus Exp $
EAPI=4
-inherit libtool autotools
+inherit eutils autotools
DESCRIPTION="Spellchecker wrapping library"
HOMEPAGE="http://www.abisource.com/enchant/"
@@ -23,7 +23,6 @@ COMMON_DEPENDS="dev-libs/glib:2
RDEPEND="${COMMON_DEPENDS}
zemberek? ( app-text/zemberek-server )"
-# libtool is needed for the install-sh to work
DEPEND="${COMMON_DEPENDS}
virtual/pkgconfig"
@@ -35,7 +34,7 @@ src_prepare() {
sed -i \
-e 's:noinst_PROGRAMS:check_PROGRAMS:' \
tests/Makefile.am || die
- eautoreconf
+ AT_M4DIR=ac-helpers eautoreconf
}
src_configure() {
@@ -52,8 +51,5 @@ src_configure() {
src_install() {
default
- if ! use static-libs; then
- # Remove useless .la files
- find "${D}" -name '*.la' -exec rm -f {} + || die "la file removal failed"
- fi
+ prune_libtool_files --all
}