summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Lauer <patrick@gentoo.org>2013-11-08 06:21:37 +0000
committerPatrick Lauer <patrick@gentoo.org>2013-11-08 06:21:37 +0000
commit455a0f407c3ce5deb96d7dca4b8f1df02e22f9dc (patch)
tree1c2b71ba6d652b8e8043d81a58de018dbc156583 /app-editors/jupp
parentVersion bump to 1.3.2. Drop semi-broken 1.3.0. (diff)
downloadgentoo-2-455a0f407c3ce5deb96d7dca4b8f1df02e22f9dc.tar.gz
gentoo-2-455a0f407c3ce5deb96d7dca4b8f1df02e22f9dc.tar.bz2
gentoo-2-455a0f407c3ce5deb96d7dca4b8f1df02e22f9dc.zip
Bump
(Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)
Diffstat (limited to 'app-editors/jupp')
-rw-r--r--app-editors/jupp/ChangeLog7
-rw-r--r--app-editors/jupp/jupp-3.1_p26.ebuild36
2 files changed, 42 insertions, 1 deletions
diff --git a/app-editors/jupp/ChangeLog b/app-editors/jupp/ChangeLog
index 994f9d656791..5bc902b2a71f 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.3 2013/01/07 02:37:49 jdhore Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/jupp/ChangeLog,v 1.4 2013/11/08 06:21:37 patrick Exp $
+
+*jupp-3.1_p26 (08 Nov 2013)
+
+ 08 Nov 2013; Patrick Lauer <patrick@gentoo.org> +jupp-3.1_p26.ebuild:
+ Bump
07 Jan 2013; <jd@gentoo.org> jupp-3.1_p24.ebuild:
Keyword ~x86
diff --git a/app-editors/jupp/jupp-3.1_p26.ebuild b/app-editors/jupp/jupp-3.1_p26.ebuild
new file mode 100644
index 000000000000..2b45f07376e8
--- /dev/null
+++ b/app-editors/jupp/jupp-3.1_p26.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_p26.ebuild,v 1.1 2013/11/08 06:21:36 patrick 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 ~x86"
+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
+}