diff options
author | 2007-01-02 01:17:25 +0000 | |
---|---|---|
committer | 2007-01-02 01:17:25 +0000 | |
commit | e9a9af2f923bb3e592c8d08b7a128519f58c9d7f (patch) | |
tree | 8aba57f5192e8222a3f29cfb0ef9639ec11202be /app-text | |
parent | Properly handle autotools rebuilding, fix quoting. (diff) | |
download | gentoo-2-e9a9af2f923bb3e592c8d08b7a128519f58c9d7f.tar.gz gentoo-2-e9a9af2f923bb3e592c8d08b7a128519f58c9d7f.tar.bz2 gentoo-2-e9a9af2f923bb3e592c8d08b7a128519f58c9d7f.zip |
Run elibtoolize, as the package installs a shared library.
(Portage version: 2.1.2_rc4-r4)
Diffstat (limited to 'app-text')
-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 |