summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Ahlberg <aliz@gentoo.org>2002-11-05 19:29:05 +0000
committerDaniel Ahlberg <aliz@gentoo.org>2002-11-05 19:29:05 +0000
commitc676ea5558bf9bd02aa9397693de6f3829798b05 (patch)
treec10129ee9a02b59eb7e2862a1cdf2552e5922c3e /app-misc/gtypist
parentadded X to DEPEND (diff)
downloadgentoo-2-c676ea5558bf9bd02aa9397693de6f3829798b05.tar.gz
gentoo-2-c676ea5558bf9bd02aa9397693de6f3829798b05.tar.bz2
gentoo-2-c676ea5558bf9bd02aa9397693de6f3829798b05.zip
Version bumps
Diffstat (limited to 'app-misc/gtypist')
-rw-r--r--app-misc/gtypist/ChangeLog7
-rw-r--r--app-misc/gtypist/files/digest-gtypist-2.6.21
-rw-r--r--app-misc/gtypist/gtypist-2.6.2.ebuild34
3 files changed, 41 insertions, 1 deletions
diff --git a/app-misc/gtypist/ChangeLog b/app-misc/gtypist/ChangeLog
index ce8be8e54d42..0ecf07bddd37 100644
--- a/app-misc/gtypist/ChangeLog
+++ b/app-misc/gtypist/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-misc/gtypist
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/app-misc/gtypist/ChangeLog,v 1.2 2002/10/17 14:16:48 aliz Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/gtypist/ChangeLog,v 1.3 2002/11/05 19:29:05 aliz Exp $
+
+*gtypist-2.6.2 (05 Nov 2002)
+
+ 05 Nov 2002; Daniel Ahlberg <aliz@gentoo.org> :
+ Version bump.
*gtypist-2.5 (7 Apr 2002)
diff --git a/app-misc/gtypist/files/digest-gtypist-2.6.2 b/app-misc/gtypist/files/digest-gtypist-2.6.2
new file mode 100644
index 000000000000..3495c11012e7
--- /dev/null
+++ b/app-misc/gtypist/files/digest-gtypist-2.6.2
@@ -0,0 +1 @@
+MD5 ca8cd4f23d7b1a91d2c3a36596525e81 gtypist-2.6.2.tar.gz 723524
diff --git a/app-misc/gtypist/gtypist-2.6.2.ebuild b/app-misc/gtypist/gtypist-2.6.2.ebuild
new file mode 100644
index 000000000000..f9a7bf72e900
--- /dev/null
+++ b/app-misc/gtypist/gtypist-2.6.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/gtypist/gtypist-2.6.2.ebuild,v 1.1 2002/11/05 19:29:05 aliz Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="GNU Typist (also called gtypist) is a universal typing tutor."
+SRC_URI="mirror://gnu/gtypist/${P}.tar.gz"
+HOMEPAGE="http://www.gnu.org/software/gtypist/gtypist.html"
+IUSE="nls"
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~x86"
+
+DEPEND=">=sys-libs/ncurses-5.2"
+
+src_compile() {
+ local myconf
+
+ # gtypist uses a built in gettext
+ use nls && myconf="--enable-nls" || \
+ myconf="--disable-nls"
+
+ # gtypist also produces some Emacs/XEmacs editing modes if
+ # emacs/xemacs is present. if emacs/xemacs is not present then
+ # these emacs modes are not compiled or installed.
+
+ econf ${myconf} || die "./configure failed"
+ emake || die
+}
+
+src_install() {
+ make DESTDIR=${D} install || die
+ dodoc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README TODO THANKS
+}