diff options
author | 2002-08-18 04:59:46 +0000 | |
---|---|---|
committer | 2002-08-18 04:59:46 +0000 | |
commit | e58d4a918809c905048a40226b3b63294b7bfa67 (patch) | |
tree | 5d76207f74c55a586d05a3889238b707ad324ac8 /app-text | |
parent | masked new gnome-spell for a while (diff) | |
download | historical-e58d4a918809c905048a40226b3b63294b7bfa67.tar.gz historical-e58d4a918809c905048a40226b3b63294b7bfa67.tar.bz2 historical-e58d4a918809c905048a40226b3b63294b7bfa67.zip |
new version
Diffstat (limited to 'app-text')
-rw-r--r-- | app-text/gnome-spell/ChangeLog | 10 | ||||
-rw-r--r-- | app-text/gnome-spell/files/digest-gnome-spell-0.4.1-r3 | 1 | ||||
-rw-r--r-- | app-text/gnome-spell/gnome-spell-0.4.1-r3.ebuild | 50 |
3 files changed, 60 insertions, 1 deletions
diff --git a/app-text/gnome-spell/ChangeLog b/app-text/gnome-spell/ChangeLog index 39e4c828b485..709ae12c0b1e 100644 --- a/app-text/gnome-spell/ChangeLog +++ b/app-text/gnome-spell/ChangeLog @@ -1,6 +1,14 @@ # 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.7 2002/07/17 12:06:38 stroke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-text/gnome-spell/ChangeLog,v 1.8 2002/08/18 04:59:46 seemant Exp $ + +*gnome-spell-0.4.1-r3 (17 Aug 2002) + + 17 Aug 2002; Seemant Kulleen <seemant@gentoo.org> + gnome-spell-0.4.1-r3.ebuild files/digest-gnome-spell-0.4.1-r3 : + + Updated DEPEND to just contain aspell (in preparation for the new aspell + release next week). *gnome-spell-0.4.1-r2 (17 Jul 2002) 17 Jul 2002; Gabriele Giorgetti <stroke@gentoo.org> gnome-spell-0.4.1-r2.ebuild : diff --git a/app-text/gnome-spell/files/digest-gnome-spell-0.4.1-r3 b/app-text/gnome-spell/files/digest-gnome-spell-0.4.1-r3 new file mode 100644 index 000000000000..dc18f89ed135 --- /dev/null +++ b/app-text/gnome-spell/files/digest-gnome-spell-0.4.1-r3 @@ -0,0 +1 @@ +MD5 3771305d194314709430f0fd5f5d1ac8 gnome-spell-0.4.1.tar.gz 185220 diff --git a/app-text/gnome-spell/gnome-spell-0.4.1-r3.ebuild b/app-text/gnome-spell/gnome-spell-0.4.1-r3.ebuild new file mode 100644 index 000000000000..96bac1db5ec5 --- /dev/null +++ b/app-text/gnome-spell/gnome-spell-0.4.1-r3.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.4.1-r3.ebuild,v 1.1 2002/08/18 04:59:46 seemant Exp $ + +MY_P=${P/_/-} +S=${WORKDIR}/${MY_P} +DESCRIPTION="Gnome spellchecking component." +SRC_URI="ftp://ftp.gnome.org/pub/GNOME/unstable/sources/gnome-spell/${MY_P}.tar.gz" +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 + nls? ( sys-devel/gettext )" + +src_compile() { + + libtoolize --copy --force + + local myconf="" + if [ -z "`use nls`" ] + then + myconf="${myconf} --disable-nls" + mkdir intl + touch intl/libgettext.h + fi + + ./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 + + dodoc AUTHORS COPYING ChangeLog NEWS README +} |