diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-02 01:17:25 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2007-01-02 01:17:25 +0000 |
commit | a011c3907e91f2c7f45332a73b34b37ce7816bac (patch) | |
tree | e876f33cbd532538c23e208c74718d8603b5548c /app-text/enchant | |
parent | Properly handle autotools rebuilding, fix quoting. (diff) | |
download | historical-a011c3907e91f2c7f45332a73b34b37ce7816bac.tar.gz historical-a011c3907e91f2c7f45332a73b34b37ce7816bac.tar.bz2 historical-a011c3907e91f2c7f45332a73b34b37ce7816bac.zip |
Run elibtoolize, as the package installs a shared library.
Package-Manager: portage-2.1.2_rc4-r4
Diffstat (limited to 'app-text/enchant')
-rw-r--r-- | app-text/enchant/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/enchant/enchant-1.2.5.ebuild | 12 |
2 files changed, 15 insertions, 4 deletions
diff --git a/app-text/enchant/ChangeLog b/app-text/enchant/ChangeLog index f5b537ac77d8..6335f7eed67f 100644 --- a/app-text/enchant/ChangeLog +++ b/app-text/enchant/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-text/enchant -# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/ChangeLog,v 1.63 2006/09/08 19:15:25 tcort Exp $ +# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/ChangeLog,v 1.64 2007/01/02 01:17:25 flameeyes Exp $ + + 02 Jan 2007; Diego Pettenò <flameeyes@gentoo.org> enchant-1.2.5.ebuild: + Run elibtoolize, as the package installs a shared library. 08 Sep 2006; Thomas Cort <tcort@gentoo.org> enchant-1.2.5.ebuild: Stable on alpha wrt Bug #133939. diff --git a/app-text/enchant/enchant-1.2.5.ebuild b/app-text/enchant/enchant-1.2.5.ebuild index c64483150977..f45824e8436f 100644 --- a/app-text/enchant/enchant-1.2.5.ebuild +++ b/app-text/enchant/enchant-1.2.5.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2006 Gentoo Foundation +# 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.11 2006/11/12 04:16:58 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/enchant/enchant-1.2.5.ebuild,v 1.12 2007/01/02 01:17:25 flameeyes Exp $ + +inherit libtool DESCRIPTION="Spellchecker wrapping library" HOMEPAGE="http://www.abisource.com/enchant/" @@ -20,6 +22,12 @@ RDEPEND=">=dev-libs/glib-2 DEPEND="${RDEPEND} dev-util/pkgconfig" +src_unpack() { + unpack ${A} + cd "${S}" + elibtoolize +} + src_install() { emake DESTDIR="${D}" install || die dodoc AUTHORS BUGS ChangeLog HACKING MAINTAINERS NEWS README TODO |