diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 11:43:45 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-17 11:43:45 +0000 |
commit | f2db4887bb467cf3fdc7796619243d12baa77e74 (patch) | |
tree | 3592f6f0f12052281ca01326a3e6c5cac07957f2 /app-text | |
parent | version bump (diff) | |
download | gentoo-2-f2db4887bb467cf3fdc7796619243d12baa77e74.tar.gz gentoo-2-f2db4887bb467cf3fdc7796619243d12baa77e74.tar.bz2 gentoo-2-f2db4887bb467cf3fdc7796619243d12baa77e74.zip |
added miscfiles to DEPEND list
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/ispell/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/ispell/files/digest-ispell-3.2.06-r5 (renamed from app-text/ispell/files/digest-ispell-3.2.06-r3) | 0 | ||||
-rw-r--r-- | app-text/ispell/ispell-3.2.06-r5.ebuild (renamed from app-text/ispell/ispell-3.2.06-r3.ebuild) | 24 |
3 files changed, 24 insertions, 9 deletions
diff --git a/app-text/ispell/ChangeLog b/app-text/ispell/ChangeLog index beb0e2c645f2..5362cd6beedd 100644 --- a/app-text/ispell/ChangeLog +++ b/app-text/ispell/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-text/ispell # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ChangeLog,v 1.8 2002/07/16 03:53:06 owen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ChangeLog,v 1.9 2002/07/17 11:43:45 seemant Exp $ + +*ispell-3.2.06-r5 (17 Jul 2002) + + 17 Jul 2002; Seemant Kulleen <seemant@gentoo.org> ispell-3.2.06-r5.ebuild + files/digest-ispell-3.2.06-r5 : + + Added miscfiles to DEPEND list. *ispell-3.2.06-r4 (12 Jul 2002) diff --git a/app-text/ispell/files/digest-ispell-3.2.06-r3 b/app-text/ispell/files/digest-ispell-3.2.06-r5 index 3582ed35d9cf..3582ed35d9cf 100644 --- a/app-text/ispell/files/digest-ispell-3.2.06-r3 +++ b/app-text/ispell/files/digest-ispell-3.2.06-r5 diff --git a/app-text/ispell/ispell-3.2.06-r3.ebuild b/app-text/ispell/ispell-3.2.06-r5.ebuild index 9626715f41fb..7dcf08353a4c 100644 --- a/app-text/ispell/ispell-3.2.06-r3.ebuild +++ b/app-text/ispell/ispell-3.2.06-r5.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ispell-3.2.06-r3.ebuild,v 1.3 2002/07/16 03:53:06 owen Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ispell-3.2.06-r5.ebuild,v 1.1 2002/07/17 11:43:45 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Ispell is a fast screen-oriented spelling checker" @@ -9,11 +9,13 @@ SRC_URI="http://fmg-www.cs.ucla.edu/geoff/tars/${P}.tar.gz HOMEPAGE="http://fmg-www.cs.ucla.edu/geoff/ispell.html" DEPEND="sys-devel/bison + sys-apps/miscfiles >=sys-libs/ncurses-5.2" + SLOT="0" LICENSE="as-is" -KEYWORDS="x86 ppc" +KEYWORDS="x86" src_unpack() { @@ -25,20 +27,24 @@ src_unpack() { } src_compile() { - make || die -} - -src_install() { + make config.sh || die #Fix config.sh to install to ${D} - cp config.sh config.sh.orig + cp -p config.sh config.sh.orig sed \ -e "s:^\(BINDIR='\)\(.*\):\1${D}\2:" \ -e "s:^\(LIBDIR='\)\(.*\):\1${D}\2:" \ -e "s:^\(MAN1DIR='\)\(.*\):\1${D}\2:" \ -e "s:^\(MAN4DIR='\)\(.*\):\1${D}\2:" \ - config.sh.orig > config.sh + < config.sh > config.sh.install + + make || die +} + +src_install() { + cp -p config.sh.install config.sh + #Need to create the directories to install into #before 'make install'. Build environment **doesn't** #check for existence and create if not already there. @@ -52,4 +58,6 @@ src_install() { rmdir ${D}/usr/share/info dodoc Contributors README WISHES + + dosed ${D}/usr/share/man/man1/ispell.1 } |