Portage is a package management system used by Gentoo Linux
# ChangeLog for app-editors/fe
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/fe/ChangeLog,v 1.6 2008/02/24 17:17:01 opfer Exp $
24 Feb 2008; Christian Faulhammer
stable x86/amd64
09 Jan 2008; Ulrich Mueller
fe-1.8.ebuild:
Add sendmail USE flag and dependency on virtual/mta, fixes bug #205036.
Remove old.
18 Dec 2007; Ulrich Mueller
Add ~amd64 keyword, bug #202428.
*fe-1.8 (16 Dec 2007)
16 Dec 2007; Ulrich Mueller
fe-1.6.ebuild, +fe-1.8.ebuild:
Version bump. Fix QA warning about pre-stripped files. Install HTML manual.
10 Oct 2007; Christian Faulhammer
remove PROVIDE=virtual/editor as we have now a new-style virtual
*fe-1.6 (17 Jun 2007)
17 Jun 2007; Ulrich Mueller
+fe-1.6.ebuild:
Initial import.
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
AUX fe-1.6-nostrip.patch 372 RMD160 47511a25662a9e7164aaa618c378c17769d293a1 SHA1 e1670749a96956bff3645c426d212a4848223744 SHA256 4efc5ed28cd6eed820a11fe6f1c401d9803b57cf77b9a2724815d732d74d96fd
DIST fe-1.8.tar.gz 169151 RMD160 a3d186dbc042fe74fbfdc8e83d6237a50fea692d SHA1 b956e5e4c9c9bc925903d0c0b6de0b7b829fcce6 SHA256 ee8473dd37662b8a8067005bc0f258389057281981c5034fcad6a7b4e4786013
EBUILD fe-1.8.ebuild 934 RMD160 bb6e40ff7227d41530990d3ac5f1d52bdf3ccdf1 SHA1 0b10f3b908208be68d99608ac8b43c5526626616 SHA256 cc5213f357ac2caa81b709cf3d48ba8b8f6930bed02024a781a06455e0617c77
MISC ChangeLog 1028 RMD160 6d8563257bfe0c47ea6992deee7e73adaaa22659 SHA1 731e8b0cacb754a61488bc5f50f00174787f6d97 SHA256 0a1af4a976eff2797f6331dbc7ecc6263d0d87c62906ec52b2e8a2714b5f5f84
MISC metadata.xml 1093 RMD160 f079b8114aea8179fcd5ee321ddc681a11216647 SHA1 db7546c5283884ba00981bdbc6ba8d9bd3593504 SHA256 65c0d4af2707dacbda03db2489eb461e5ed653482d8c415eebd24e2eec5dedd4
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.8 (GNU/Linux)
iEYEARECAAYFAkfgxOoACgkQOeoy/oIi7uw8ngCgmVZS01PhzFiKDYZtg0YKuKSA
E58An2ET5dCMWYbgJpn6rQLGtyHjJ06U
=z3i4
-----END PGP SIGNATURE-----
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/fe/fe-1.8.ebuild,v 1.4 2008/02/24 17:17:01 opfer Exp $
inherit eutils
DESCRIPTION="A small and easy to use folding editor"
HOMEPAGE="http://www.moria.de/~michael/fe/"
SRC_URI="http://www.moria.de/~michael/fe/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="sendmail"
DEPEND="sys-libs/ncurses
sendmail? ( virtual/mta )"
RDEPEND="${DEPEND}"
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}/${PN}-1.6-nostrip.patch"
}
src_compile() {
econf $(use_enable sendmail) || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake \
prefix="${D}"/usr \
datadir="${D}"/usr/share \
MANDIR="${D}"/usr/share/man \
install || die "emake install failed"
dodoc NEWS README || die "dodoc failed"
dohtml fe.html || die "dohtml failed"
}
Fe is a small and easy to use folding editor.
Fe allows to fold arbitrary text regions; it is not bound to syntactic
units. Unlike Origami, folds are not attributed with a trailing comment,
instead you can put folds before or after any text in the line, as you like.
Fe has no configuration or extension language and requires no setup. Its
user interface is emacs-like and it has menues for the very most important
functions to help beginners. Further there is a reference card. It offers:
* Regions and Emacs-like kill ring
* Incremental search
* Keyboard macros
* Editing binary files
* Multiple windows and views
* Compose function for Latin 1 characters
In case you can't stand the emacs interface and want ultimate flexibility,
fe can easily be modified, because it is structured as an editor library
with a user interface frontend, all written in C.