summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkinori Hattori <hattya@gentoo.org>2011-12-19 13:27:33 +0000
committerAkinori Hattori <hattya@gentoo.org>2011-12-19 13:27:33 +0000
commit0f41ce83f9fee3ae4e9e9ffb7e8eefed60a566a9 (patch)
tree592ef44f19a917b6cfbb923681db5cf3d6a25892 /app-doc/vilearn
parentppc stable (bug 385265) (diff)
downloadgentoo-2-0f41ce83f9fee3ae4e9e9ffb7e8eefed60a566a9.tar.gz
gentoo-2-0f41ce83f9fee3ae4e9e9ffb7e8eefed60a566a9.tar.bz2
gentoo-2-0f41ce83f9fee3ae4e9e9ffb7e8eefed60a566a9.zip
fixes bug #319845.
(Portage version: 2.1.10.11/cvs/Linux i686)
Diffstat (limited to 'app-doc/vilearn')
-rw-r--r--app-doc/vilearn/ChangeLog7
-rw-r--r--app-doc/vilearn/vilearn-1.0.ebuild19
2 files changed, 13 insertions, 13 deletions
diff --git a/app-doc/vilearn/ChangeLog b/app-doc/vilearn/ChangeLog
index 68cfc6eacf43..879bf14bf9ff 100644
--- a/app-doc/vilearn/ChangeLog
+++ b/app-doc/vilearn/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-doc/vilearn
-# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/vilearn/ChangeLog,v 1.10 2007/02/09 07:11:09 flameeyes Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-doc/vilearn/ChangeLog,v 1.11 2011/12/19 13:27:33 hattya Exp $
+
+ 19 Dec 2011; Akinori Hattori <hattya@gentoo.org> vilearn-1.0.ebuild:
+ fixes bug #319845.
09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
Regenerate digest in Manifest2 format.
diff --git a/app-doc/vilearn/vilearn-1.0.ebuild b/app-doc/vilearn/vilearn-1.0.ebuild
index 92d8d02f367c..319d7ed1f082 100644
--- a/app-doc/vilearn/vilearn-1.0.ebuild
+++ b/app-doc/vilearn/vilearn-1.0.ebuild
@@ -1,33 +1,30 @@
-# Copyright 1999-2006 Gentoo Foundation
+# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-doc/vilearn/vilearn-1.0.ebuild,v 1.9 2006/02/18 14:45:20 hattya Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-doc/vilearn/vilearn-1.0.ebuild,v 1.10 2011/12/19 13:27:33 hattya Exp $
-IUSE=""
+EAPI="4"
DESCRIPTION="vilearn is an interactive vi tutorial comprised of 5 tutorials for the vi-impaired."
HOMEPAGE="http://vilearn.org/"
SRC_URI="http://vilearn.org/${P}.tar.gz"
LICENSE="BSD"
-KEYWORDS="amd64 ppc x86"
SLOT="0"
+KEYWORDS="amd64 ppc x86"
+IUSE=""
RDEPEND="app-editors/vim"
+DEPEND="${RDEPEND}"
-src_compile() {
-
- sed -i "s:/usr/local:/usr:" Makefile
- emake || die "emake failed. :("
-
+src_prepare() {
+ sed -i "s:/usr/local:${EPREFIX}/usr:" Makefile
}
src_install() {
-
dobin vilearn
doman vilearn.1
dodoc README outline
insinto /usr/lib/vilearn
doins [0-9]*
-
}