diff options
-rw-r--r-- | app-text/enchant/ChangeLog | 5 | ||||
-rw-r--r-- | app-text/enchant/enchant-1.2.5.ebuild | 8 |
2 files changed, 11 insertions, 2 deletions
diff --git a/app-text/enchant/ChangeLog b/app-text/enchant/ChangeLog index e6086a94ce0f..d652938f8b1e 100644 --- a/app-text/enchant/ChangeLog +++ b/app-text/enchant/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/enchant # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/ChangeLog,v 1.65 2007/01/02 14:36:15 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/ChangeLog,v 1.66 2007/01/02 17:12:58 flameeyes Exp $ + + 02 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> enchant-1.2.5.ebuild: + Copy over libtool's install-sh so that the package installs on FreeBSD. 02 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> enchant-1.2.5.ebuild: Fails to install with -j4, so force -j1 during install. diff --git a/app-text/enchant/enchant-1.2.5.ebuild b/app-text/enchant/enchant-1.2.5.ebuild index b220c515a4c9..91a8030db3bb 100644 --- a/app-text/enchant/enchant-1.2.5.ebuild +++ b/app-text/enchant/enchant-1.2.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/enchant/enchant-1.2.5.ebuild,v 1.13 2007/01/02 14:36:15 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/enchant-1.2.5.ebuild,v 1.14 2007/01/02 17:12:58 flameeyes Exp $ inherit libtool @@ -19,6 +19,8 @@ IUSE="" RDEPEND=">=dev-libs/glib-2 || ( virtual/aspell-dict app-text/ispell app-text/hspell app-text/hunspell )" + +# libtool is needed for the install-sh to work DEPEND="${RDEPEND} dev-util/pkgconfig" @@ -26,6 +28,10 @@ src_unpack() { unpack ${A} cd "${S}" elibtoolize + + # Update the install-sh as the version shipped by upstream + # will fail on FreeBSD systems + cp /usr/share/libtool/install-sh "${S}" } src_install() { |