summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin F. Quinn <kevquinn@gentoo.org>2007-05-21 21:20:57 +0000
committerKevin F. Quinn <kevquinn@gentoo.org>2007-05-21 21:20:57 +0000
commitc13665945b362aee12250b084a08865cbdf96b04 (patch)
tree9a7b981135526ec90c2e184902dc88216c766e83 /app-text
parentalpha stable wrt #164094 (diff)
downloadgentoo-2-c13665945b362aee12250b084a08865cbdf96b04.tar.gz
gentoo-2-c13665945b362aee12250b084a08865cbdf96b04.tar.bz2
gentoo-2-c13665945b362aee12250b084a08865cbdf96b04.zip
Yet more brokenness in the install (bug #179285)
(Portage version: 2.1.2.7)
Diffstat (limited to 'app-text')
-rw-r--r--app-text/hunspell/ChangeLog5
-rw-r--r--app-text/hunspell/hunspell-1.1.5.ebuild16
2 files changed, 16 insertions, 5 deletions
diff --git a/app-text/hunspell/ChangeLog b/app-text/hunspell/ChangeLog
index 8cc828f92e30..fa6772b5915e 100644
--- a/app-text/hunspell/ChangeLog
+++ b/app-text/hunspell/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-text/hunspell
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/ChangeLog,v 1.24 2007/05/21 17:49:27 kevquinn Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/ChangeLog,v 1.25 2007/05/21 21:20:57 kevquinn Exp $
+
+ 21 May 2007; Kevin F. Quinn <kevquinn@gentoo.org> hunspell-1.1.5.ebuild:
+ Yet more brokenness in the install (bug #179285)
21 May 2007; Kevin F. Quinn <kevquinn@gentoo.org> hunspell-1.1.5.ebuild:
Fixup wobbly header installation (bug #179285).
diff --git a/app-text/hunspell/hunspell-1.1.5.ebuild b/app-text/hunspell/hunspell-1.1.5.ebuild
index 4b1cd16dad38..2d4c9006108b 100644
--- a/app-text/hunspell/hunspell-1.1.5.ebuild
+++ b/app-text/hunspell/hunspell-1.1.5.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/hunspell-1.1.5.ebuild,v 1.2 2007/05/21 17:49:27 kevquinn Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-text/hunspell/hunspell-1.1.5.ebuild,v 1.3 2007/05/21 21:20:57 kevquinn Exp $
WANT_AUTOCONF="2.5"
WANT_AUTOMAKE="1.9"
@@ -50,18 +50,26 @@ src_compile() {
src_install() {
emake DESTDIR=${D} install || die "emake install failed"
- dodoc AUTHORS ChangeLog NEWS README THANKS TODO
+ dodoc AUTHORS ChangeLog NEWS README THANKS TODO license.hunspell
# hunspell is derived from myspell
dodoc AUTHORS.myspell README.myspell license.myspell
- # Fixup broken install results.
+ # Upstream install has a few problems - rather than try to figure out
+ # what's broken in the build system, just fix things up manually.
+
# These are included by hunspell.hxx, but aren't installed by the install
- # script
+ # script.
insinto /usr/include/hunspell/
doins license.myspell license.hunspell config.h
+
# These are in the wrong place.
mv ${D}/usr/include/munch.h ${D}/usr/include/hunspell/munch.h
mv ${D}/usr/include/unmunch.h ${D}/usr/include/hunspell/unmunch.h
+
+ # Libraries include the version in their name, so make a sensible
+ # default symlink. They should probably be libhunspell.so.1.1 etc.
+ cd ${D}/usr/lib
+ ln -s libhunspell-1.1.so.0.0.0 libhunspell.so
}
pkg_postinst() {