diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /app-editors/emact | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'app-editors/emact')
-rw-r--r-- | app-editors/emact/Manifest | 1 | ||||
-rw-r--r-- | app-editors/emact/emact-2.56.0.ebuild | 32 | ||||
-rw-r--r-- | app-editors/emact/metadata.xml | 24 |
3 files changed, 57 insertions, 0 deletions
diff --git a/app-editors/emact/Manifest b/app-editors/emact/Manifest new file mode 100644 index 000000000000..575bdfcbf562 --- /dev/null +++ b/app-editors/emact/Manifest @@ -0,0 +1 @@ +DIST emact-2.56.0.tar.gz 578640 SHA256 dfe5c17ed6bab49bdb46425bf616a6ce689b73f498a61c094eb97d1765007e57 SHA512 96fce3bf3e00e84abd9de0778a02cfd284689073391e6f9eb3bb4a54e8899ae32d9e8acd45d0f1d575e36f171ca148fc574c9ecc71615df9a9907ee1d30bb99d WHIRLPOOL 8d4e821c4a24c3cb2b9a5ca898a9a8e0d245242c1c0f8e2986212939d772df503222023d19918b32276e3061d92c7dbe6292a720a0255464e614254c7f7d742a 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..f93143a19b35 --- /dev/null +++ b/app-editors/emact/emact-2.56.0.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +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 )" +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 +} diff --git a/app-editors/emact/metadata.xml b/app-editors/emact/metadata.xml new file mode 100644 index 000000000000..f0b7b2b3c64c --- /dev/null +++ b/app-editors/emact/metadata.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>emacs</herd> +<longdescription> + This product is an original development made to provide an emacs-like editor + on the PC for the purpose of writing Lisp code with the same features found + on other Lisp development systems. In 1985, with about 512 Ko of memory, it + was obvious that Gosling, GNU or other emacs written in Lisp were too big to + run on M$-DOG. So I decided to write my own editor that closely works like + those I used on VAX Unix at that time. I started with Conroy's MicroEMACS. + + After a great amount of time, made essentially after hours, EmACT is now + a pretty good clone of GNU Emacs. It has all the features that programmers + enjoy, like parentheses matching, auto-indent for Lisp, C, C++, compile + mode, tags and even a Lisp interpreter which is not however compatible with + GNU MockLisp. It can be ported to all UN*X systems (terminal and X-Window) + and it runs of course on all Intel based system in text or graphic mode + (MSDOS, OS/2, Windows 3.x, Windows NT/2000/XP and Windows 95/98/Me). +</longdescription> +<upstream> + <remote-id type="sourceforge">emact</remote-id> +</upstream> +</pkgmetadata> |