From 8376ef56580626e9c0f796d5b85b53a0a1c7d5f5 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sat, 14 Jul 2018 21:03:06 +0100 Subject: gentoo resync : 14.07.2018 --- app-editors/fe/Manifest | 6 +++++ app-editors/fe/fe-1.8.ebuild | 38 ++++++++++++++++++++++++++++++ app-editors/fe/fe-1.9.ebuild | 38 ++++++++++++++++++++++++++++++ app-editors/fe/files/fe-1.8-makefile.patch | 16 +++++++++++++ app-editors/fe/metadata.xml | 33 ++++++++++++++++++++++++++ 5 files changed, 131 insertions(+) create mode 100644 app-editors/fe/Manifest create mode 100644 app-editors/fe/fe-1.8.ebuild create mode 100644 app-editors/fe/fe-1.9.ebuild create mode 100644 app-editors/fe/files/fe-1.8-makefile.patch create mode 100644 app-editors/fe/metadata.xml (limited to 'app-editors/fe') diff --git a/app-editors/fe/Manifest b/app-editors/fe/Manifest new file mode 100644 index 000000000000..c9a6bf70938d --- /dev/null +++ b/app-editors/fe/Manifest @@ -0,0 +1,6 @@ +AUX fe-1.8-makefile.patch 495 BLAKE2B 311e9864c5dd2a1e7fdee4e394c85194f3a2526bb137d3c681d95a564be64672aa3cb45138b218f53cb381784882a44f2da671392184b2a7850df3a7730571c6 SHA512 1e88c66f37d5cfc90b8561cc8bb99a460003b79ca312e2a5a7ad5ebb44bbea86deb4aab115c3dbe7775edfb162d7417e4581a9854b1cc7e9efd8a91502c12cab +DIST fe-1.8.tar.gz 169151 BLAKE2B 82ce56137ac462982e314e20f027f3e325b5810b778efe5503624728b48a4e06f6e60c668e35ca8bb70d2bfd07f4d6083d487ac83f382e760451e26a9721ac4e SHA512 c00f23769193b8b74867da32e7424ecb7f807a0186c8f91cd007f83a543777e1ca70909ee17a54ac8e7da743cd3fcb6b0e8cdd6d2fefbfb6766122ade125893b +DIST fe-1.9.tar.gz 178678 BLAKE2B 144d8edf2f6bf38f75b7e5593d0fb9d9e3fc4a7e91d974f49fa5f7974ee1e077dbdee4ee25931b34691032c0d4e676ab6b03e4de646947a4ea133876213285d9 SHA512 38121a21c1539ff8ad4f61b92ddfd0582c100f1bc1c5524faf7a60a162c5f8a0b2d1528da7719e522e9b75a527166223c2636f78c9f516abbb33434a9f6e6251 +EBUILD fe-1.8.ebuild 689 BLAKE2B 0e7bf18ef97dd05512b4b5693287ad754812105417dfa4345417f81093e7a9bcb068518ca58f61a36d5757f4afe7a8c227a4579f652f393ffcefa273af293f65 SHA512 e4272214d6a2876f4eeb46b20ac24a186f2f187fe62705f388bc905ce249013d457e82e168e3fbfd23a9b212aeb2021dc1ffbafb9b5c6467a75ed7ed89079285 +EBUILD fe-1.9.ebuild 694 BLAKE2B b97c8855f82cf71d6f84358c07f3a3f4e24023db119fc357a01b36ca604b5634330333dae1d2a047107564f6406395a4e78fbd18a7aba40a23aae64d6649ad3f SHA512 987ee3a593b521916c12c40823840d593766c31bf4bcb47d5f082092d3a95078915d8180b6a482c6afc0c014faf88c79076823153f42a64a5aa6789f24243767 +MISC metadata.xml 1259 BLAKE2B e393bad45601c7e357aa4c4e5e6ede35cdd6758a1cc251cfc3acca0e8526ffb696c0ca484b312be14d23a05d8996ce7fb3bee37fe7a8c9bc72d5c507c26729df SHA512 6539d808d3cd85bab1985dbfb69ddbd01166a4e6dcf66d0f138d1ff1e52d9b7342ff3b468e031f9372308533296e28eb978b00954624890a897b5f41c222f701 diff --git a/app-editors/fe/fe-1.8.ebuild b/app-editors/fe/fe-1.8.ebuild new file mode 100644 index 000000000000..5567eebdbb07 --- /dev/null +++ b/app-editors/fe/fe-1.8.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=4 + +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_prepare() { + epatch "${FILESDIR}/${P}-makefile.patch" +} + +src_configure() { + econf $(use_enable sendmail) +} + +src_install() { + emake \ + prefix="${D}"/usr \ + datadir="${D}"/usr/share \ + MANDIR="${D}"/usr/share/man \ + install + + dodoc NEWS README + dohtml fe.html +} diff --git a/app-editors/fe/fe-1.9.ebuild b/app-editors/fe/fe-1.9.ebuild new file mode 100644 index 000000000000..084a8edd52c2 --- /dev/null +++ b/app-editors/fe/fe-1.9.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=4 + +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_prepare() { + epatch "${FILESDIR}/${PN}-1.8-makefile.patch" +} + +src_configure() { + econf $(use_enable sendmail) +} + +src_install() { + emake \ + prefix="${D}"/usr \ + datadir="${D}"/usr/share \ + MANDIR="${D}"/usr/share/man \ + install + + dodoc NEWS README + dohtml fe.html +} diff --git a/app-editors/fe/files/fe-1.8-makefile.patch b/app-editors/fe/files/fe-1.8-makefile.patch new file mode 100644 index 000000000000..73f7e09020da --- /dev/null +++ b/app-editors/fe/files/fe-1.8-makefile.patch @@ -0,0 +1,16 @@ +diff -Nur fe-1.8-orig/Makefile.in fe-1.8/Makefile.in +--- fe-1.8-orig/Makefile.in 2007-08-31 20:47:09.000000000 +0200 ++++ fe-1.8/Makefile.in 2011-08-27 21:07:43.000000000 +0200 +@@ -40,10 +40,10 @@ + + install: all + $(INSTALL) -m 755 -d $(BINDIR) +- $(INSTALL_PROGRAM) -s fe $(BINDIR)/fe ++ $(INSTALL_PROGRAM) fe $(BINDIR)/fe + $(INSTALL) -m 755 -d $(MANDIR)/man1 + $(INSTALL_DATA) fe.1 $(MANDIR)/man1/fe.1 +- make install-po ++ $(MAKE) install-po + + .c.o: + $(CC) -c $(CPPFLAGS) $(CFLAGS) $< diff --git a/app-editors/fe/metadata.xml b/app-editors/fe/metadata.xml new file mode 100644 index 000000000000..5020c7020a74 --- /dev/null +++ b/app-editors/fe/metadata.xml @@ -0,0 +1,33 @@ + + + + + emacs@gentoo.org + Gentoo Emacs project + + + 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. + + + Send mail after editor abend + + -- cgit v1.2.3