summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Robbins <drobbins@gentoo.org>2002-09-05 16:16:03 +0000
committerDaniel Robbins <drobbins@gentoo.org>2002-09-05 16:16:03 +0000
commit3a6e76021db6db94efd00cc2e4f84359732912bc (patch)
tree2a1a564b632caff7ea9a34a9c090f4942cd74ad7 /app-text/gtkspell
parentAdded callback functionality to -r11 (diff)
downloadgentoo-2-3a6e76021db6db94efd00cc2e4f84359732912bc.tar.gz
gentoo-2-3a6e76021db6db94efd00cc2e4f84359732912bc.tar.bz2
gentoo-2-3a6e76021db6db94efd00cc2e4f84359732912bc.zip
repoman fixes (mostly cleanups of old ebuilds with pspell stuff in them)
and linphone relocation to net-im.
Diffstat (limited to 'app-text/gtkspell')
-rw-r--r--app-text/gtkspell/files/digest-gtkspell-2.0.01
-rw-r--r--app-text/gtkspell/gtkspell-2.0.0.ebuild49
2 files changed, 0 insertions, 50 deletions
diff --git a/app-text/gtkspell/files/digest-gtkspell-2.0.0 b/app-text/gtkspell/files/digest-gtkspell-2.0.0
deleted file mode 100644
index 541cb25ff696..000000000000
--- a/app-text/gtkspell/files/digest-gtkspell-2.0.0
+++ /dev/null
@@ -1 +0,0 @@
-MD5 a1ae5eb2bf7d176da5fab1c9f349dd04 gtkspell-2.0.0.tar.gz 182782
diff --git a/app-text/gtkspell/gtkspell-2.0.0.ebuild b/app-text/gtkspell/gtkspell-2.0.0.ebuild
deleted file mode 100644
index 71b172deb0d1..000000000000
--- a/app-text/gtkspell/gtkspell-2.0.0.ebuild
+++ /dev/null
@@ -1,49 +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/gtkspell/gtkspell-2.0.0.ebuild,v 1.2 2002/08/16 02:42:01 murphy Exp $
-
-DESCRIPTION="GtkSpell is a spell library for GTK2"
-
-SRC_URI="http://gtkspell.sourceforge.net/download/${P}.tar.gz"
-# SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-HOMEPAGE="http://gtkspell.sourceforge.net/"
-
-LICENSE="GPL-2"
-KEYWORDS="x86 sparc sparc64"
-SLOT="0"
-
-RDEPEND=">=dev-libs/glib-2.0.4
- >=x11-libs/gtk+-2.0.5
- >=app-text/pspell-0.12.2-r3"
-
-DEPEND="$RDEPEND"
-
-src_compile() {
-
- local myconf
- use nls || myconf="--disable-nls"
-
- ./configure --host=${CHOST} \
- --prefix=/usr \
- --sysconfdir=/etc \
- --infodir=/usr/share/info \
- --mandir=/usr/share/man \
- --localstatedir=/var/lib \
- --enable-debug=yes \
- ${myconf} || die "configure failure"
-
- emake || die "compile failure"
-}
-
-src_install() {
- emake prefix=${D}/usr \
- sysconfdir=${D}/etc \
- infodir=${D}/usr/share/info \
- mandir=${D}/usr/share/man \
- localstatedir=${D}/var/lib \
- install || die "installation failed"
-
- dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README
-}
-
-