diff options
author | Kevin F. Quinn <kevquinn@gentoo.org> | 2006-08-06 01:25:54 +0000 |
---|---|---|
committer | Kevin F. Quinn <kevquinn@gentoo.org> | 2006-08-06 01:25:54 +0000 |
commit | 4209248e15c5b5e4156976d8da7751ec94041b8b (patch) | |
tree | 44f0eb7dcdcc6839a428c1188b9400d4b5643174 /app-text/hunspell | |
parent | Adding perl dep; fixed DEPEND (diff) | |
download | gentoo-2-4209248e15c5b5e4156976d8da7751ec94041b8b.tar.gz gentoo-2-4209248e15c5b5e4156976d8da7751ec94041b8b.tar.bz2 gentoo-2-4209248e15c5b5e4156976d8da7751ec94041b8b.zip |
Fix mkinstalldirs issue properly, as advised by SpanKY (bug #142565)
(Portage version: 2.1.1_pre4-r2)
Diffstat (limited to 'app-text/hunspell')
-rw-r--r-- | app-text/hunspell/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/hunspell/hunspell-1.1.4-r1.ebuild | 9 |
2 files changed, 10 insertions, 6 deletions
diff --git a/app-text/hunspell/ChangeLog b/app-text/hunspell/ChangeLog index 7d5ef6df65fa..ab6ef9883f18 100644 --- a/app-text/hunspell/ChangeLog +++ b/app-text/hunspell/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/hunspell # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/ChangeLog,v 1.17 2006/08/04 22:51:51 kevquinn Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/ChangeLog,v 1.18 2006/08/06 01:25:54 kevquinn Exp $ + + 06 Aug 2006; Kevin F. Quinn <kevquinn@gentoo.org> + hunspell-1.1.4-r1.ebuild: + Fix mkinstalldirs issue properly, as advised by SpanKY (bug #142565) + Also various tidy-ups by SpanKY. 04 Aug 2006; Kevin F. Quinn <kevquinn@gentoo.org> hunspell-1.1.4-r1.ebuild: diff --git a/app-text/hunspell/hunspell-1.1.4-r1.ebuild b/app-text/hunspell/hunspell-1.1.4-r1.ebuild index a8199361886a..09993321a4dc 100644 --- a/app-text/hunspell/hunspell-1.1.4-r1.ebuild +++ b/app-text/hunspell/hunspell-1.1.4-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/hunspell-1.1.4-r1.ebuild,v 1.10 2006/08/05 21:11:42 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/hunspell-1.1.4-r1.ebuild,v 1.11 2006/08/06 01:25:54 kevquinn Exp $ inherit fixheadtails eutils multilib autotools @@ -31,10 +31,9 @@ src_unpack() { # Also includes a small change for libtool. epatch "${FILESDIR}"/${P}-renameexes.patch - # Set AT_M4DIR to workaround eautoreconf limitation, and copy - # mkinstalldirs script to the po subdirectory for compatibility - # with gettext-0.15 (see bug #142565) - cp ${S}/mkinstalldirs ${S}/po/ + # Recalculate the mkinstalldirs stuff (see bug #142565) + autopoint -f || die "Failed to auto-po-int" + # Set AT_M4DIR to workaround eautoreconf limitation (see bug #142565) export AT_M4DIR="${S}/m4" # Makefile.am modified, libtool added, hence autoreconf WANT_AUTOMAKE="1.9" eautoreconf |