diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-02-12 13:32:45 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-02-12 13:32:45 +0000 |
commit | 9d27d92e58e48e7e18e0103a1d664dde432b28ca (patch) | |
tree | a5fce49e8766e83bbf4cb29d59a34e6db991d18c /app-text | |
parent | moved to stable for alpha for nall count reduction (diff) | |
download | historical-9d27d92e58e48e7e18e0103a1d664dde432b28ca.tar.gz historical-9d27d92e58e48e7e18e0103a1d664dde432b28ca.tar.bz2 historical-9d27d92e58e48e7e18e0103a1d664dde432b28ca.zip |
added arches to test
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/aspell/ChangeLog | 11 | ||||
-rw-r--r-- | app-text/aspell/aspell-0.50.2-r1.ebuild | 76 | ||||
-rw-r--r-- | app-text/aspell/aspell-0.50.2.ebuild | 76 | ||||
-rw-r--r-- | app-text/aspell/aspell-0.50.3.ebuild | 4 | ||||
-rw-r--r-- | app-text/aspell/files/digest-aspell-0.50.2 | 1 | ||||
-rw-r--r-- | app-text/aspell/files/digest-aspell-0.50.2-r1 | 1 |
6 files changed, 10 insertions, 159 deletions
diff --git a/app-text/aspell/ChangeLog b/app-text/aspell/ChangeLog index 60e698848650..c864d4f814fd 100644 --- a/app-text/aspell/ChangeLog +++ b/app-text/aspell/ChangeLog @@ -1,11 +1,16 @@ # ChangeLog for app-text/aspell # Copyright 2002-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/aspell/ChangeLog,v 1.21 2003/02/12 05:22:02 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/aspell/ChangeLog,v 1.22 2003/02/12 13:32:45 seemant Exp $ - 06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords - *aspell-0.50.3 (03 Dec 2002) + 12 Feb 2003; Seemant Kulleen <seemant@gentoo.org> aspell-0.50.3.ebuild : + + Added ~alpha ~mips ~hppa + + 06 Dec 2002; Rodney Rees <manson@gentoo.org> : + changed sparc ~sparc keywords + 03 Dec 2002; Seemant Kulleen <seemant@gentoo.org> aspell-0.50.3.ebuild files/digest-aspell-0.50.3 : diff --git a/app-text/aspell/aspell-0.50.2-r1.ebuild b/app-text/aspell/aspell-0.50.2-r1.ebuild deleted file mode 100644 index dba6a82c7e7e..000000000000 --- a/app-text/aspell/aspell-0.50.2-r1.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# 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.2-r1.ebuild,v 1.2 2002/12/09 04:17:43 manson Exp $ - -inherit libtool - -S=${WORKDIR}/${P} -DESCRIPTION="A spell checker replacement for ispell" -SRC_URI="ftp://ftp.gnu.org/gnu/aspell/${P}.tar.gz" -HOMEPAGE="http://aspell.net/" - -DEPEND=">=sys-libs/ncurses-5.2" - -SLOT="0" -LICENSE="LGPL-2" -KEYWORDS="x86 ppc sparc " - -# -# These flags a reset here because too much optimisation can cause aspell's -# compilation process to break. Moreover, these must be set before ./configure -# otherwise it breaks again. A very fragile build process, really. -# -#CXXFLAGS="-O2" -#CFLAGS=${CXXFLAGS} - -# humm .. why are they comented? cselkirk - -pkg_setup() { - if [ ${ARCH} = "ppc" ] ; then - CXXFLAGS="-O2 -fsigned-char" - CFLAGS=${CXXFLAGS} - fi -} - -src_compile() { - elibtoolize --reverse-deps --remove-internal-dep=aspell-common - - econf \ - --disable-static \ - --sysconfdir=/etc/aspell \ - --enable-docdir=/usr/share/doc/${PF} || die - - emake || die - -} - -src_install () { - - make DESTDIR=${D} install || die - cd ${D}/usr/share/doc/${P} - dohtml -r man-html - rm -rf man-html - docinto text - dodoc man-text - rm -rf man-text - cd ${S} - - dodoc README* TODO - - cd examples - make clean || die - cd ${S} - - docinto examples - dodoc examples/* - -} - -pkg_postinst() { - - einfo "You will need to install a dictionary now. Please choose an" - einfo "aspell-<LANG> dictionary from the app-i18n category" - einfo "After installing an aspell dictionary for your language(s)," - einfo "You may use the aspell-import utility to import your personal" - einfo "dictionaries from ispell, pspell and the older aspell" -} diff --git a/app-text/aspell/aspell-0.50.2.ebuild b/app-text/aspell/aspell-0.50.2.ebuild deleted file mode 100644 index ef15e69b51a5..000000000000 --- a/app-text/aspell/aspell-0.50.2.ebuild +++ /dev/null @@ -1,76 +0,0 @@ -# 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.2.ebuild,v 1.3 2002/12/09 04:17:43 manson Exp $ - -inherit libtool - -S=${WORKDIR}/${P} -DESCRIPTION="A spell checker replacement for ispell" -SRC_URI="ftp://ftp.gnu.org/gnu/aspell/${P}.tar.gz" -HOMEPAGE="http://aspell.net/" - -DEPEND=">=sys-libs/ncurses-5.2" - -SLOT="0" -LICENSE="LGPL-2" -KEYWORDS="x86 ppc sparc " - -# -# These flags a reset here because too much optimisation can cause aspell's -# compilation process to break. Moreover, these must be set before ./configure -# otherwise it breaks again. A very fragile build process, really. -# -#CXXFLAGS="-O2" -#CFLAGS=${CXXFLAGS} - -# humm .. why are they comented? cselkirk - -pkg_setup() { - if [ ${ARCH} = "ppc" ] ; then - CXXFLAGS="-O2 -fsigned-char" - CFLAGS=${CXXFLAGS} - fi -} - -src_compile() { - elibtoolize --reverse-deps - - econf \ - --disable-static \ - --sysconfdir=/etc/aspell \ - --enable-docdir=/usr/share/doc/${PF} || die - - emake || die - -} - -src_install () { - - make DESTDIR=${D} install || die - cd ${D}/usr/share/doc/${P} - dohtml -r man-html - rm -rf man-html - docinto text - dodoc man-text - rm -rf man-text - cd ${S} - - dodoc README* TODO - - cd examples - make clean || die - cd ${S} - - docinto examples - dodoc examples/* - -} - -pkg_postinst() { - - einfo "You will need to install a dictionary now. Please choose an" - einfo "aspell-<LANG> dictionary from the app-i18n category" - einfo "After installing an aspell dictionary for your language(s)," - einfo "You may use the aspell-import utility to import your personal" - einfo "dictionaries from ispell, pspell and the older aspell" -} diff --git a/app-text/aspell/aspell-0.50.3.ebuild b/app-text/aspell/aspell-0.50.3.ebuild index 66e38b4f29b4..4c22797d267c 100644 --- a/app-text/aspell/aspell-0.50.3.ebuild +++ b/app-text/aspell/aspell-0.50.3.ebuild @@ -1,6 +1,6 @@ # 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.3.ebuild,v 1.2 2002/12/09 04:17:43 manson Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/aspell/aspell-0.50.3.ebuild,v 1.3 2003/02/12 13:32:45 seemant Exp $ inherit libtool @@ -13,7 +13,7 @@ DEPEND=">=sys-libs/ncurses-5.2" SLOT="0" LICENSE="LGPL-2" -KEYWORDS="x86 ppc sparc " +KEYWORDS="x86 ppc sparc ~alpha ~mips ~hppa" # # These flags a reset here because too much optimisation can cause aspell's diff --git a/app-text/aspell/files/digest-aspell-0.50.2 b/app-text/aspell/files/digest-aspell-0.50.2 deleted file mode 100644 index 1c982734c9f8..000000000000 --- a/app-text/aspell/files/digest-aspell-0.50.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 d6c3d50c355bc2e6b2f253a1f7209b92 aspell-0.50.2.tar.gz 922061 diff --git a/app-text/aspell/files/digest-aspell-0.50.2-r1 b/app-text/aspell/files/digest-aspell-0.50.2-r1 deleted file mode 100644 index 1c982734c9f8..000000000000 --- a/app-text/aspell/files/digest-aspell-0.50.2-r1 +++ /dev/null @@ -1 +0,0 @@ -MD5 d6c3d50c355bc2e6b2f253a1f7209b92 aspell-0.50.2.tar.gz 922061 |