diff options
author | Marinus Schraal <foser@gentoo.org> | 2002-10-15 12:27:18 +0000 |
---|---|---|
committer | Marinus Schraal <foser@gentoo.org> | 2002-10-15 12:27:18 +0000 |
commit | 2dbf0aeab5e7c70600e19af2a7aa5fc4ac6dd77b (patch) | |
tree | 2ea88611a232ca13a8ce4ab8e52c8eb5e7063248 /app-text/gtkspell | |
parent | Closes #8169 (diff) | |
download | gentoo-2-2dbf0aeab5e7c70600e19af2a7aa5fc4ac6dd77b.tar.gz gentoo-2-2dbf0aeab5e7c70600e19af2a7aa5fc4ac6dd77b.tar.bz2 gentoo-2-2dbf0aeab5e7c70600e19af2a7aa5fc4ac6dd77b.zip |
New version
Diffstat (limited to 'app-text/gtkspell')
-rw-r--r-- | app-text/gtkspell/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/gtkspell/files/digest-gtkspell-2.0.2 | 1 | ||||
-rw-r--r-- | app-text/gtkspell/gtkspell-2.0.2.ebuild | 36 |
3 files changed, 43 insertions, 1 deletions
diff --git a/app-text/gtkspell/ChangeLog b/app-text/gtkspell/ChangeLog index b4ae9aa45942..508c3c236d4d 100644 --- a/app-text/gtkspell/ChangeLog +++ b/app-text/gtkspell/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/gtkspell # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/ChangeLog,v 1.2 2002/08/23 17:52:07 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/ChangeLog,v 1.3 2002/10/15 12:27:18 foser Exp $ + +*gtkspell-2.0.2 (15 Oct 2002) + + 15 Oct 2002; foser <foser@gentoo.org> gtkspell-2.0.2.ebuild : + New version *gtkspell-2.0.0-r1 (23 Aug 2002) diff --git a/app-text/gtkspell/files/digest-gtkspell-2.0.2 b/app-text/gtkspell/files/digest-gtkspell-2.0.2 new file mode 100644 index 000000000000..f9167ed2b810 --- /dev/null +++ b/app-text/gtkspell/files/digest-gtkspell-2.0.2 @@ -0,0 +1 @@ +MD5 385daba9bebfdc7fdbdf524e07deb920 gtkspell-2.0.2.tar.gz 189818 diff --git a/app-text/gtkspell/gtkspell-2.0.2.ebuild b/app-text/gtkspell/gtkspell-2.0.2.ebuild new file mode 100644 index 000000000000..8d47238c025f --- /dev/null +++ b/app-text/gtkspell/gtkspell-2.0.2.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/gtkspell-2.0.2.ebuild,v 1.1 2002/10/15 12:27:18 foser Exp $ + +DESCRIPTION="GtkSpell is a spell library for GTK2" + +SRC_URI="http://gtkspell.sourceforge.net/download/${P}.tar.gz" +HOMEPAGE="http://gtkspell.sourceforge.net/" + +LICENSE="GPL-2" +KEYWORDS="~x86 ~sparc ~sparc64" +SLOT="0" + +RDEPEND=">=dev-libs/glib-2 + >=x11-libs/gtk+-2 + >=app-text/aspell-0.50" + +DEPEND="$RDEPEND" + +src_compile() { + + local myconf + use nls || myconf="--disable-nls" + + econf \ + --enable-debug=yes \ + ${myconf} || die "configure failure" + + emake || die "compile failure" +} + +src_install() { + einstall || die "installation failed" + + dodoc AUTHORS ChangeLog COPYING INSTALL NEWS README +} |