summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2012-09-26 04:49:12 +0000
committerUlrich Müller <ulm@gentoo.org>2012-09-26 04:49:12 +0000
commit1b85d04b254f71264ffaae146750122a88101682 (patch)
treeb57bd5497a24cba3c61a9daae64c29b8779f96cf /app-editors/jove
parentAdd JOVE to MISC-FREE license group. (diff)
downloadgentoo-2-1b85d04b254f71264ffaae146750122a88101682.tar.gz
gentoo-2-1b85d04b254f71264ffaae146750122a88101682.tar.bz2
gentoo-2-1b85d04b254f71264ffaae146750122a88101682.zip
Specify LICENSE more precisely. Bump ebuild to EAPI 4.
(Portage version: 2.1.11.20/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/jove')
-rw-r--r--app-editors/jove/ChangeLog7
-rw-r--r--app-editors/jove/jove-4.16.0.73.ebuild20
2 files changed, 15 insertions, 12 deletions
diff --git a/app-editors/jove/ChangeLog b/app-editors/jove/ChangeLog
index fee20948b486..4a65bc126946 100644
--- a/app-editors/jove/ChangeLog
+++ b/app-editors/jove/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/jove
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/ChangeLog,v 1.33 2010/10/15 07:03:39 ulm Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/ChangeLog,v 1.34 2012/09/26 04:49:12 ulm Exp $
+
+ 26 Sep 2012; Ulrich Müller <ulm@gentoo.org> jove-4.16.0.73.ebuild:
+ Specify LICENSE more precisely. Bump ebuild to EAPI 4.
15 Oct 2010; Ulrich Mueller <ulm@gentoo.org> -jove-4.16.0.70.3.1.ebuild,
metadata.xml:
diff --git a/app-editors/jove/jove-4.16.0.73.ebuild b/app-editors/jove/jove-4.16.0.73.ebuild
index a0ffc64bf79d..c254e3a074bc 100644
--- a/app-editors/jove/jove-4.16.0.73.ebuild
+++ b/app-editors/jove/jove-4.16.0.73.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/jove-4.16.0.73.ebuild,v 1.5 2010/10/14 16:53:02 ranger Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/jove/jove-4.16.0.73.ebuild,v 1.6 2012/09/26 04:49:12 ulm Exp $
+
+EAPI=4
inherit eutils toolchain-funcs
@@ -8,7 +10,7 @@ DESCRIPTION="Jonathan's Own Version of Emacs - a light emacs-like editor without
HOMEPAGE="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/"
SRC_URI="ftp://ftp.cs.toronto.edu/cs/ftp/pub/hugh/jove-dev/${PN}${PV}.tgz"
-LICENSE="as-is"
+LICENSE="JOVE"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="doc"
@@ -18,9 +20,7 @@ DEPEND="${RDEPEND}"
S="${WORKDIR}/${PN}${PV}"
-src_unpack() {
- unpack ${A}
- cd "${S}"
+src_prepare() {
epatch "${FILESDIR}/${PN}-4.16.0.70.3.1-getline.patch"
epatch "${FILESDIR}/${P}-build.patch"
epatch "${FILESDIR}/${P}-sendmail.patch"
@@ -30,20 +30,20 @@ src_unpack() {
src_compile() {
tc-export CC
- emake OPTFLAGS="${CFLAGS}" SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500" || die
+ emake OPTFLAGS="${CFLAGS}" SYSDEFS="-DSYSVR4 -D_XOPEN_SOURCE=500"
if use doc; then
# Full manual (*not* man page)
- emake doc/jove.man || die
+ emake doc/jove.man
fi
}
src_install() {
- emake DESTDIR="${D}" install || die
+ emake DESTDIR="${D}" install
keepdir /var/lib/jove/preserve
dodoc README
if use doc; then
- dodoc doc/jove.man || die
+ dodoc doc/jove.man
fi
}