diff options
author | 2002-07-12 15:35:01 +0000 | |
---|---|---|
committer | 2002-07-12 15:35:01 +0000 | |
commit | 73bc4c28f3202cb3fb3f2302f95645858acf74cd (patch) | |
tree | 4b7371ff779d7b41b58b9ea371095555d095b303 | |
parent | use the new mirror://kde (diff) | |
download | gentoo-2-73bc4c28f3202cb3fb3f2302f95645858acf74cd.tar.gz gentoo-2-73bc4c28f3202cb3fb3f2302f95645858acf74cd.tar.bz2 gentoo-2-73bc4c28f3202cb3fb3f2302f95645858acf74cd.zip |
man page fixes to remove from showing up
-rw-r--r-- | app-text/ispell/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/ispell/files/digest-ispell-3.2.06-r2 | 2 | ||||
-rw-r--r-- | app-text/ispell/files/digest-ispell-3.2.06-r4 | 2 | ||||
-rw-r--r-- | app-text/ispell/ispell-3.2.06-r4.ebuild (renamed from app-text/ispell/ispell-3.2.06-r2.ebuild) | 20 |
4 files changed, 23 insertions, 10 deletions
diff --git a/app-text/ispell/ChangeLog b/app-text/ispell/ChangeLog index 834ba227ec8e..1e4a7e90df81 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.6 2002/07/12 01:01:11 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ChangeLog,v 1.7 2002/07/12 15:35:01 seemant Exp $ + +*ispell-3.2.06-r4 (12 Jul 2002) + + 12 Jul 2002; Seemant Kulleen <seemant@gentoo.org> ispell-3.2.06-r4.ebuild + files/digest-ispell-3.2.06-r4 : + + Corrected erroneous path in ispell.1.gz which showed ${D} *ispell-3.2.06-r3 (11 Jul 2002) diff --git a/app-text/ispell/files/digest-ispell-3.2.06-r2 b/app-text/ispell/files/digest-ispell-3.2.06-r2 deleted file mode 100644 index ef7209a65d83..000000000000 --- a/app-text/ispell/files/digest-ispell-3.2.06-r2 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 d434e1aef1a815294d5012c60c4c414a ispell-3.2.06.tar.gz 580742 -MD5 bcf6f826a573ddfc7ad27ef67c1162b1 ispell-3.2.06-gentoo.diff.bz2 8347 diff --git a/app-text/ispell/files/digest-ispell-3.2.06-r4 b/app-text/ispell/files/digest-ispell-3.2.06-r4 new file mode 100644 index 000000000000..3582ed35d9cf --- /dev/null +++ b/app-text/ispell/files/digest-ispell-3.2.06-r4 @@ -0,0 +1,2 @@ +MD5 d434e1aef1a815294d5012c60c4c414a ispell-3.2.06.tar.gz 580742 +MD5 e8fa5c243c0f4bb5247ff6ff972312da ispell-3.2.06-gentoo.diff.bz2 8631 diff --git a/app-text/ispell/ispell-3.2.06-r2.ebuild b/app-text/ispell/ispell-3.2.06-r4.ebuild index 6aa993683dc0..93fda11f552d 100644 --- a/app-text/ispell/ispell-3.2.06-r2.ebuild +++ b/app-text/ispell/ispell-3.2.06-r4.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-r2.ebuild,v 1.5 2002/07/12 00:26:53 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/ispell/ispell-3.2.06-r4.ebuild,v 1.1 2002/07/12 15:35:01 seemant Exp $ S=${WORKDIR}/${P} DESCRIPTION="Ispell is a fast screen-oriented spelling checker" @@ -25,20 +25,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 +56,6 @@ src_install() { rmdir ${D}/usr/share/info dodoc Contributors README WISHES + + dosed ${D}/usr/share/man/man1/ispell.1 } |