diff options
Diffstat (limited to 'app-text/gnome-spell')
-rw-r--r-- | app-text/gnome-spell/ChangeLog | 7 | ||||
-rw-r--r-- | app-text/gnome-spell/files/digest-gnome-spell-0.5 | 1 | ||||
-rw-r--r-- | app-text/gnome-spell/gnome-spell-0.5.ebuild | 50 |
3 files changed, 57 insertions, 1 deletions
diff --git a/app-text/gnome-spell/ChangeLog b/app-text/gnome-spell/ChangeLog index 709ae12c0b1e..33d7ed366d2a 100644 --- a/app-text/gnome-spell/ChangeLog +++ b/app-text/gnome-spell/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/gnome-spell # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-spell/ChangeLog,v 1.8 2002/08/18 04:59:46 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-spell/ChangeLog,v 1.9 2002/09/27 14:51:20 azarah Exp $ + +*gnome-spell-0.5 (27 Sep 2002) + + 27 Sep 2002; Martin Schlemmer <azarah@gentoo.org> : + New version. Update to use gnome.org eclass. *gnome-spell-0.4.1-r3 (17 Aug 2002) diff --git a/app-text/gnome-spell/files/digest-gnome-spell-0.5 b/app-text/gnome-spell/files/digest-gnome-spell-0.5 new file mode 100644 index 000000000000..898b357f6e88 --- /dev/null +++ b/app-text/gnome-spell/files/digest-gnome-spell-0.5 @@ -0,0 +1 @@ +MD5 109ec5643ca508693f17c4c411d0f913 gnome-spell-0.5.tar.bz2 265306 diff --git a/app-text/gnome-spell/gnome-spell-0.5.ebuild b/app-text/gnome-spell/gnome-spell-0.5.ebuild new file mode 100644 index 000000000000..7077f6145e07 --- /dev/null +++ b/app-text/gnome-spell/gnome-spell-0.5.ebuild @@ -0,0 +1,50 @@ +# 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/gnome-spell/gnome-spell-0.5.ebuild,v 1.1 2002/09/27 14:51:20 azarah Exp $ + +inherit gnome.org libtool + +S=${WORKDIR}/${P} +DESCRIPTION="Gnome spellchecking component." +HOMEPAGE="http://www.gnome.org/" + +KEYWORDS="x86 sparc sparc64" +SLOT="0" +LICENSE="GPL-2" + +DEPEND=">=gnome-base/gnome-libs-1.4.1.7 + >=gnome-base/bonobo-1.0.19-r1 + <gnome-base/libglade-2.0.0 + >=gnome-extra/gal-0.19 + >=app-text/aspell-0.50 + nls? ( sys-devel/gettext )" + +src_compile() { + + elibtoolize + + local myconf="" + use nls || myconf="${myconf} --disable-nls" + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --localstatedir=/var/lib \ + ${myconf} || die + + emake || die +} + +src_install() { + + make prefix=${D}/usr \ + sysconfdir=${D}/etc \ + localstatedir=${D}/var/lib \ + install || die + + # Dual gnomecc entry. + rm -f ${D}/usr/share/control-center/capplets/${PN}-properties.desktop + + dodoc AUTHORS COPYING ChangeLog NEWS README +} + |