summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2011-07-27 00:49:00 +0000
committerMichael Weber <xmw@gentoo.org>2011-07-27 00:49:00 +0000
commit82717d2c083a6621c7115fdb12f07ad9f08275fc (patch)
treee1955fee121db724f771b3f0c07e68e9f2c4c72f /app-misc/gtypist
parentVersion bump (diff)
downloadgentoo-2-82717d2c083a6621c7115fdb12f07ad9f08275fc.tar.gz
gentoo-2-82717d2c083a6621c7115fdb12f07ad9f08275fc.tar.bz2
gentoo-2-82717d2c083a6621c7115fdb12f07ad9f08275fc.zip
Drop old version
(Portage version: 2.1.10.3/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/gtypist')
-rw-r--r--app-misc/gtypist/ChangeLog5
-rw-r--r--app-misc/gtypist/gtypist-2.8.3.ebuild62
2 files changed, 4 insertions, 63 deletions
diff --git a/app-misc/gtypist/ChangeLog b/app-misc/gtypist/ChangeLog
index b6a37accbaa8..80308690b234 100644
--- a/app-misc/gtypist/ChangeLog
+++ b/app-misc/gtypist/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/gtypist
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/gtypist/ChangeLog,v 1.26 2011/06/19 15:41:38 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/gtypist/ChangeLog,v 1.27 2011/07/27 00:49:00 xmw Exp $
+
+ 27 Jul 2011; Michael Weber <xmw@gentoo.org> -gtypist-2.8.3.ebuild:
+ Drop old version
19 Jun 2011; Markus Meier <maekke@gentoo.org> gtypist-2.8.5.ebuild:
x86 stable, bug #371745
diff --git a/app-misc/gtypist/gtypist-2.8.3.ebuild b/app-misc/gtypist/gtypist-2.8.3.ebuild
deleted file mode 100644
index 706d9483583e..000000000000
--- a/app-misc/gtypist/gtypist-2.8.3.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/gtypist/gtypist-2.8.3.ebuild,v 1.4 2010/10/14 19:14:27 ranger Exp $
-
-inherit eutils elisp-common
-
-DESCRIPTION="Universal typing tutor"
-HOMEPAGE="http://www.gnu.org/software/gtypist/"
-SRC_URI="mirror://gnu/gtypist/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="nls emacs xemacs"
-
-DEPEND=">=sys-libs/ncurses-5.2
- emacs? ( virtual/emacs )
- xemacs? ( !emacs? ( app-editors/xemacs app-xemacs/fsf-compat ) )"
-
-RDEPEND="${DEPEND}"
-
-SITEFILE=50${PN}-gentoo.el
-
-src_unpack() {
- unpack ${A}
- epatch "${FILESDIR}"/${P}-xemacs-compat.patch
-}
-
-src_compile() {
- local lispdir=""
- if use emacs; then
- lispdir="${SITELISP}/${PN}"
- einfo "Configuring to build with GNU Emacs support"
- elif use xemacs; then
- lispdir="/usr/lib/xemacs/site-packages/lisp/${PN}"
- einfo "Configuring to build with XEmacs support"
- fi
-
- econf $(use_enable nls) \
- EMACS=$(usev emacs || usev xemacs || echo no) \
- --with-lispdir="${lispdir}" \
- || die "econf failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog NEWS README THANKS TODO
-
- if use emacs; then
- elisp-site-file-install "${FILESDIR}/${SITEFILE}" \
- || die "elisp-site-file-install failed"
- fi
-}
-
-pkg_postinst() {
- use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
- use emacs && elisp-site-regen
-}