diff options
author | Ulrich Müller <ulm@gentoo.org> | 2007-12-16 10:09:54 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2007-12-16 10:09:54 +0000 |
commit | 7160ee4cb7ae9219064ae0e0ac6fc8826fd15709 (patch) | |
tree | 53fd4f4cbb3ddf5ef5a1c348eae0d0ad7fea464f /app-editors/fe | |
parent | amd64 stable (diff) | |
download | gentoo-2-7160ee4cb7ae9219064ae0e0ac6fc8826fd15709.tar.gz gentoo-2-7160ee4cb7ae9219064ae0e0ac6fc8826fd15709.tar.bz2 gentoo-2-7160ee4cb7ae9219064ae0e0ac6fc8826fd15709.zip |
Version bump.
(Portage version: 2.1.4_rc9)
Diffstat (limited to 'app-editors/fe')
-rw-r--r-- | app-editors/fe/ChangeLog | 8 | ||||
-rw-r--r-- | app-editors/fe/fe-1.6.ebuild | 12 | ||||
-rw-r--r-- | app-editors/fe/fe-1.8.ebuild | 34 | ||||
-rw-r--r-- | app-editors/fe/files/digest-fe-1.8 | 3 | ||||
-rw-r--r-- | app-editors/fe/files/fe-1.6-nostrip.patch | 11 |
5 files changed, 66 insertions, 2 deletions
diff --git a/app-editors/fe/ChangeLog b/app-editors/fe/ChangeLog index 236eda865cf9..c3e8dcb9b1d7 100644 --- a/app-editors/fe/ChangeLog +++ b/app-editors/fe/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-editors/fe # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/fe/ChangeLog,v 1.2 2007/10/10 06:40:20 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/fe/ChangeLog,v 1.3 2007/12/16 10:09:53 ulm Exp $ + +*fe-1.8 (16 Dec 2007) + + 16 Dec 2007; Ulrich Mueller <ulm@gentoo.org> +files/fe-1.6-nostrip.patch, + 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 <opfer@gentoo.org> fe-1.6.ebuild: remove PROVIDE=virtual/editor as we have now a new-style virtual diff --git a/app-editors/fe/fe-1.6.ebuild b/app-editors/fe/fe-1.6.ebuild index 8ab18ee2ea5f..fd27dfeb4b8d 100644 --- a/app-editors/fe/fe-1.6.ebuild +++ b/app-editors/fe/fe-1.6.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/fe/fe-1.6.ebuild,v 1.2 2007/10/10 06:40:20 opfer Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/fe/fe-1.6.ebuild,v 1.3 2007/12/16 10:09:53 ulm Exp $ + +inherit eutils DESCRIPTION="A small and easy to use folding editor" HOMEPAGE="http://www.moria.de/~michael/fe/" @@ -14,11 +16,19 @@ IUSE="" DEPEND="sys-libs/ncurses" RDEPEND="${DEPEND}" +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-1.6-nostrip.patch" +} + 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" } diff --git a/app-editors/fe/fe-1.8.ebuild b/app-editors/fe/fe-1.8.ebuild new file mode 100644 index 000000000000..9f2e8b975be5 --- /dev/null +++ b/app-editors/fe/fe-1.8.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2007 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.1 2007/12/16 10:09:53 ulm 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="~x86" +IUSE="" + +DEPEND="sys-libs/ncurses" +RDEPEND="${DEPEND}" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}/${PN}-1.6-nostrip.patch" +} + +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" +} diff --git a/app-editors/fe/files/digest-fe-1.8 b/app-editors/fe/files/digest-fe-1.8 new file mode 100644 index 000000000000..4d1039c8492e --- /dev/null +++ b/app-editors/fe/files/digest-fe-1.8 @@ -0,0 +1,3 @@ +MD5 b41379862d0019b6eb6acde682af6837 fe-1.8.tar.gz 169151 +RMD160 a3d186dbc042fe74fbfdc8e83d6237a50fea692d fe-1.8.tar.gz 169151 +SHA256 ee8473dd37662b8a8067005bc0f258389057281981c5034fcad6a7b4e4786013 fe-1.8.tar.gz 169151 diff --git a/app-editors/fe/files/fe-1.6-nostrip.patch b/app-editors/fe/files/fe-1.6-nostrip.patch new file mode 100644 index 000000000000..a13b0a2bf5f1 --- /dev/null +++ b/app-editors/fe/files/fe-1.6-nostrip.patch @@ -0,0 +1,11 @@ +--- fe-1.6-orig/Makefile.in 2004-02-17 00:56:01.000000000 +0100 ++++ fe-1.6/Makefile.in 2007-12-16 10:42:51.000000000 +0100 +@@ -40,7 +40,7 @@ + + 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 |