diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-07-11 11:45:47 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-07-11 11:45:47 +0000 |
commit | cc462d48cb6c93846796d4a4e9fa7d2382b33b47 (patch) | |
tree | 71d3f32e3a54a8d63a041884f0aaeb0e272d5288 /app-text | |
parent | new Swedish dictionary (diff) | |
download | gentoo-2-cc462d48cb6c93846796d4a4e9fa7d2382b33b47.tar.gz gentoo-2-cc462d48cb6c93846796d4a4e9fa7d2382b33b47.tar.bz2 gentoo-2-cc462d48cb6c93846796d4a4e9fa7d2382b33b47.zip |
repoman'd
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/pspell/files/digest-pspell-0.12.2-r2 | 1 | ||||
-rw-r--r-- | app-text/pspell/pspell-0.12.2-r2.ebuild | 41 | ||||
-rw-r--r-- | app-text/pspell/pspell-0.12.2-r3.ebuild | 17 |
3 files changed, 9 insertions, 50 deletions
diff --git a/app-text/pspell/files/digest-pspell-0.12.2-r2 b/app-text/pspell/files/digest-pspell-0.12.2-r2 deleted file mode 100644 index e75fdd207d2a..000000000000 --- a/app-text/pspell/files/digest-pspell-0.12.2-r2 +++ /dev/null @@ -1 +0,0 @@ -MD5 cfd3816b2372932a1b71c0ce4e9f881e pspell-.12.2.tar.gz 434193 diff --git a/app-text/pspell/pspell-0.12.2-r2.ebuild b/app-text/pspell/pspell-0.12.2-r2.ebuild deleted file mode 100644 index 7aa42eda2fe7..000000000000 --- a/app-text/pspell/pspell-0.12.2-r2.ebuild +++ /dev/null @@ -1,41 +0,0 @@ -# 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/pspell/pspell-0.12.2-r2.ebuild,v 1.5 2002/07/11 06:30:19 drobbins Exp $ - -#Remove leading zero from version number -MYPV=${PV#0} -S=${WORKDIR}/${PN}-${MYPV} -DESCRIPTION="A spell checker frontend for aspell and ispell" -SRC_URI="http://telia.dl.sf.net/${PN}/${PN}-${MYPV}.tar.gz" #2481 -HOMEPAGE="http://pspell.sourceforge.net" - -DEPEND="virtual/glibc - >=sys-devel/libtool-1.4.1-r4" - - -src_compile() { - - libtoolize --copy --force --automake - - ./configure \ - --prefix=/usr \ - --exec-prefix=/usr \ - --bindir=/usr/bin \ - --sharedstatedir=/var/lib \ - --enable-doc-dir=/usr/share/doc/${PF} \ - --enable-ltdl \ - --host=${CHOST} || die "./configure failed" - - emake || die "Parallel Make Failed" -} - -src_install () { - - make DESTDIR=${D} install || die "Installation Failed" - - dodoc README* - - cd ${D}/usr/share/doc/${PF} - mv man-html html - mv man-text txt -} diff --git a/app-text/pspell/pspell-0.12.2-r3.ebuild b/app-text/pspell/pspell-0.12.2-r3.ebuild index 1aa4f8a8c966..72530e37f815 100644 --- a/app-text/pspell/pspell-0.12.2-r3.ebuild +++ b/app-text/pspell/pspell-0.12.2-r3.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/pspell/pspell-0.12.2-r3.ebuild,v 1.2 2002/07/11 06:30:19 drobbins Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/pspell/pspell-0.12.2-r3.ebuild,v 1.3 2002/07/11 11:45:47 seemant Exp $ inherit libtool @@ -14,26 +14,27 @@ HOMEPAGE="http://pspell.sourceforge.net" DEPEND="virtual/glibc >=sys-devel/libtool-1.4.1-r4" +SLOT="0" +LICENSE="GPL" +KEYWORDS="x86" src_compile() { elibtoolize - ./configure \ - --prefix=/usr \ - --exec-prefix=/usr \ - --bindir=/usr/bin \ - --sharedstatedir=/var/lib \ + econf \ --enable-doc-dir=/usr/share/doc/${PF} \ --enable-ltdl \ - --host=${CHOST} || die "./configure failed" + || die "./configure failed" emake || die "Parallel Make Failed" } src_install () { - make DESTDIR=${D} install || die "Installation Failed" + make \ + DESTDIR=${D} \ + install || die "Installation Failed" dodoc README* |