summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2011-12-30 18:02:53 +0000
committerUlrich Müller <ulm@gentoo.org>2011-12-30 18:02:53 +0000
commita1ee5dfdd325dd64f6f78b0bc5d6ca9921b98702 (patch)
tree8b1d7eb4018aeefe83496a30b9d21f79fe3f8d8e /app-editors
parentSynchronize live ebuild with other ebuilds. Patch by Arfrever. (diff)
downloadgentoo-2-a1ee5dfdd325dd64f6f78b0bc5d6ca9921b98702.tar.gz
gentoo-2-a1ee5dfdd325dd64f6f78b0bc5d6ca9921b98702.tar.bz2
gentoo-2-a1ee5dfdd325dd64f6f78b0bc5d6ca9921b98702.zip
Version bump.
(Portage version: 2.1.10.44/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/emact/ChangeLog9
-rw-r--r--app-editors/emact/emact-2.56.0.ebuild37
2 files changed, 44 insertions, 2 deletions
diff --git a/app-editors/emact/ChangeLog b/app-editors/emact/ChangeLog
index 5aa09dc8b34e..ef061dfa1c65 100644
--- a/app-editors/emact/ChangeLog
+++ b/app-editors/emact/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-editors/emact
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/emact/ChangeLog,v 1.18 2009/06/11 21:13:50 fauli Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emact/ChangeLog,v 1.19 2011/12/30 18:02:53 ulm Exp $
+
+*emact-2.56.0 (30 Dec 2011)
+
+ 30 Dec 2011; Ulrich Mueller <ulm@gentoo.org> +emact-2.56.0.ebuild:
+ Version bump.
11 Jun 2009; Christian Faulhammer <fauli@gentoo.org> -emact-2.53.0.ebuild:
clean up
diff --git a/app-editors/emact/emact-2.56.0.ebuild b/app-editors/emact/emact-2.56.0.ebuild
new file mode 100644
index 000000000000..6a0338b92295
--- /dev/null
+++ b/app-editors/emact/emact-2.56.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2011 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/app-editors/emact/emact-2.56.0.ebuild,v 1.1 2011/12/30 18:02:53 ulm Exp $
+
+EAPI=4
+
+DESCRIPTION="EmACT, a fork of Conroy's MicroEmacs"
+HOMEPAGE="http://www.eligis.com/emacs/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2 BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="X"
+
+DEPEND="sys-libs/ncurses
+ X? (
+ x11-libs/libX11
+ x11-libs/libICE
+ x11-libs/libSM
+ )"
+
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+ # files in the tarball have all mode bits set to zero ...
+ chmod +x configure || die
+}
+
+src_configure() {
+ econf $(use_with X x)
+}
+
+src_install() {
+ emake INSTALL="${D}"/usr install
+ #dodoc README
+}