summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Weber <xmw@gentoo.org>2013-01-06 02:46:41 +0000
committerMichael Weber <xmw@gentoo.org>2013-01-06 02:46:41 +0000
commita921373e7fabad9f50f990c502904ef3c71ac78f (patch)
tree4875c6679fcc62cb1b1c42bbfcd57dfd088c4fd4 /app-editors/jupp
parentFix broken Manifest entry for root_v5.34.03.source.tar.gz (upstream file seem... (diff)
downloadgentoo-2-a921373e7fabad9f50f990c502904ef3c71ac78f.tar.gz
gentoo-2-a921373e7fabad9f50f990c502904ef3c71ac78f.tar.bz2
gentoo-2-a921373e7fabad9f50f990c502904ef3c71ac78f.zip
Version bump
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 62EEF090)
Diffstat (limited to 'app-editors/jupp')
-rw-r--r--app-editors/jupp/ChangeLog7
-rw-r--r--app-editors/jupp/jupp-3.1_p24.ebuild36
2 files changed, 42 insertions, 1 deletions
diff --git a/app-editors/jupp/ChangeLog b/app-editors/jupp/ChangeLog
index 617629ec9426..3a147b01bbc3 100644
--- a/app-editors/jupp/ChangeLog
+++ b/app-editors/jupp/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-editors/jupp
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/jupp/ChangeLog,v 1.1 2013/01/04 15:03:43 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/jupp/ChangeLog,v 1.2 2013/01/06 02:46:41 xmw Exp $
+
+*jupp-3.1_p24 (06 Jan 2013)
+
+ 06 Jan 2013; Michael Weber <xmw@gentoo.org> +jupp-3.1_p24.ebuild:
+ Version bump
*jupp-3.1_p23 (04 Jan 2013)
diff --git a/app-editors/jupp/jupp-3.1_p24.ebuild b/app-editors/jupp/jupp-3.1_p24.ebuild
new file mode 100644
index 000000000000..34ee3405c183
--- /dev/null
+++ b/app-editors/jupp/jupp-3.1_p24.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/jupp/jupp-3.1_p24.ebuild,v 1.1 2013/01/06 02:46:41 xmw Exp $
+
+EAPI=4
+
+DESCRIPTION="portable version of JOE's Own Editor"
+HOMEPAGE="https://www.mirbsd.org/jupp.htm"
+SRC_URI="https://www.mirbsd.org/MirOS/dist/${PN}/joe-${PV/_p/${PN}}.tgz"
+
+LICENSE="GPL-1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="ncurses"
+
+RDEPEND="ncurses? ( sys-libs/ncurses )
+ !app-editors/joe"
+DEPEND="${RDEPEND}"
+
+S=${WORKDIR}/${PN}
+
+src_prepare() {
+ chmod +x configure
+}
+
+src_configure() {
+ econf \
+ --enable-search_libs \
+ --enable-termcap \
+ $(use_enable ncurses curses)
+}
+
+src_install() {
+ default
+ dodoc HINTS INFO LIST
+}