diff options
author | Matthew Kennedy <mkennedy@gentoo.org> | 2002-04-08 03:52:02 +0000 |
---|---|---|
committer | Matthew Kennedy <mkennedy@gentoo.org> | 2002-04-08 03:52:02 +0000 |
commit | 5b53c3841e963fd0a2448e8d70238ddd059802d8 (patch) | |
tree | 32d358ad3a23525bb14cb1210a319064126f756b /app-misc | |
parent | Added new ebuild: (diff) | |
download | gentoo-2-5b53c3841e963fd0a2448e8d70238ddd059802d8.tar.gz gentoo-2-5b53c3841e963fd0a2448e8d70238ddd059802d8.tar.bz2 gentoo-2-5b53c3841e963fd0a2448e8d70238ddd059802d8.zip |
New ebuild.
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/gtypist/ChangeLog | 11 | ||||
-rw-r--r-- | app-misc/gtypist/files/digest-gtypist-2.5 | 1 | ||||
-rw-r--r-- | app-misc/gtypist/gtypist-2.5.ebuild | 38 |
3 files changed, 50 insertions, 0 deletions
diff --git a/app-misc/gtypist/ChangeLog b/app-misc/gtypist/ChangeLog new file mode 100644 index 000000000000..3796aca9f5f3 --- /dev/null +++ b/app-misc/gtypist/ChangeLog @@ -0,0 +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.1 2002/04/08 03:52:02 mkennedy Exp $ + +*gtypist-2.5 (7 Apr 2002) + + 7 Apr 2002; Matthew Kennedy <mkennedy@gentoo.org> ChangeLog, + gtypist-2.5.ebuild, files/digest-gtypist-2.5 : + + New ebuild. GNU Typist (also called gtypist) is a universal typing + tutor. diff --git a/app-misc/gtypist/files/digest-gtypist-2.5 b/app-misc/gtypist/files/digest-gtypist-2.5 new file mode 100644 index 000000000000..753e2c8c333d --- /dev/null +++ b/app-misc/gtypist/files/digest-gtypist-2.5 @@ -0,0 +1 @@ +MD5 401ab1b4ea346eb2f61d490bcbc8c417 gtypist-2.5.tar.gz 612794 diff --git a/app-misc/gtypist/gtypist-2.5.ebuild b/app-misc/gtypist/gtypist-2.5.ebuild new file mode 100644 index 000000000000..54373c3c34fb --- /dev/null +++ b/app-misc/gtypist/gtypist-2.5.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Maintainer: Matthew Kennedy <mkennedy@gentoo.org> +# Author: Matthew Kennedy <mbkennedy@ieee.org> +# /space/gentoo/cvsroot/gentoo-x86/skel.ebuild,v 1.4 2002/03/12 16:05:09 tod Exp + +S=${WORKDIR}/${P} +DESCRIPTION="GNU Typist (also called gtypist) is a universal typing tutor." +SRC_URI="ftp://ftp.gnu.org/gnu/gtypist/${P}.tar.gz" +HOMEPAGE="http://www.gnu.org/software/gtypist/gtypist.html" + +DEPEND="virtual/glibc + >=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. + + ./configure \ + --host=${CHOST} \ + --prefix=/usr \ + --infodir=/usr/share/info \ + --mandir=/usr/share/man \ + ${myconf} || die "./configure failed" + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + dodoc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README TODO THANKS +} |