diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-08-14 13:04:48 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-08-14 13:04:48 +0000 |
commit | 5874c6a20fad1666a59ca54f85a25c9f9cb90d46 (patch) | |
tree | 938717d97acff50367345407b11f377256012b7d | |
parent | digest (diff) | |
download | gentoo-2-5874c6a20fad1666a59ca54f85a25c9f9cb90d46.tar.gz gentoo-2-5874c6a20fad1666a59ca54f85a25c9f9cb90d46.tar.bz2 gentoo-2-5874c6a20fad1666a59ca54f85a25c9f9cb90d46.zip |
small fix0rs
-rw-r--r-- | app-text/aspell/aspell-0.50_pre20020811.ebuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/app-text/aspell/aspell-0.50_pre20020811.ebuild b/app-text/aspell/aspell-0.50_pre20020811.ebuild index 5f856a280d22..4b7f25eb1f40 100644 --- a/app-text/aspell/aspell-0.50_pre20020811.ebuild +++ b/app-text/aspell/aspell-0.50_pre20020811.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/aspell/aspell-0.50_pre20020811.ebuild,v 1.1 2002/08/14 02:56:35 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/aspell/aspell-0.50_pre20020811.ebuild,v 1.2 2002/08/14 13:04:48 seemant Exp $ -inherit libtool +#inherit libtool MY_P=${P/_pre/-} S=${WORKDIR}/${MY_P} @@ -10,8 +10,7 @@ DESCRIPTION="A spell checker replacement for ispell" SRC_URI="http://savannah.gnu.org/download/aspell/${MY_P}.tar.gz" HOMEPAGE="http://www.gnu.org/software/aspell/index.html" -DEPEND=">=app-text/pspell-0.12 - >=sys-libs/ncurses-5.2" +DEPEND=">=sys-libs/ncurses-5.2" SLOT="0" LICENSE="LGPL-2" @@ -42,7 +41,8 @@ src_compile() { econf \ --disable-static \ - --sysconfdir=/etc/aspell || die + --sysconfdir=/etc/aspell \ + --enable-docdir=/usr/share/doc/${PF} || die emake || die @@ -57,7 +57,8 @@ src_install () { dodoc man-text cd ${S} + dosym /usr/lib/libpspell.so.15 /usr/lib/libpspell.so + dodoc README* TODO } - |