summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2012-11-21 13:33:03 +0000
committerMichael Palimaka <kensington@gentoo.org>2012-11-21 13:33:03 +0000
commit6f4124c3060ca55c02764e6a8589d86c5f045891 (patch)
treefaf073cb1b220acf55896f9194ae545894b3552e
parentDepend on gperf, missed dependency. (diff)
downloadgentoo-2-6f4124c3060ca55c02764e6a8589d86c5f045891.tar.gz
gentoo-2-6f4124c3060ca55c02764e6a8589d86c5f045891.tar.bz2
gentoo-2-6f4124c3060ca55c02764e6a8589d86c5f045891.zip
Remove old.
(Portage version: 2.1.11.31/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
-rw-r--r--app-editors/fte/ChangeLog5
-rw-r--r--app-editors/fte/fte-20051115-r1.ebuild110
2 files changed, 4 insertions, 111 deletions
diff --git a/app-editors/fte/ChangeLog b/app-editors/fte/ChangeLog
index 4c6a6a77d6cd..153b773fecb5 100644
--- a/app-editors/fte/ChangeLog
+++ b/app-editors/fte/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/fte
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/fte/ChangeLog,v 1.55 2012/11/21 11:15:04 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/fte/ChangeLog,v 1.56 2012/11/21 13:33:03 kensington Exp $
+
+ 21 Nov 2012; Michael Palimaka <kensington@gentoo.org> -fte-20051115-r1.ebuild:
+ Remove old.
21 Nov 2012; Agostino Sarubbo <ago@gentoo.org> fte-20051115-r3.ebuild:
Stable for x86, wrt bug #441028
diff --git a/app-editors/fte/fte-20051115-r1.ebuild b/app-editors/fte/fte-20051115-r1.ebuild
deleted file mode 100644
index e0a765d1b507..000000000000
--- a/app-editors/fte/fte-20051115-r1.ebuild
+++ /dev/null
@@ -1,110 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/fte/fte-20051115-r1.ebuild,v 1.5 2012/11/05 13:05:32 pinkbyte Exp $
-
-inherit eutils
-
-DESCRIPTION="Lightweight text-mode editor"
-HOMEPAGE="http://fte.sourceforge.net"
-SRC_URI="mirror://sourceforge/fte/${P}-src.zip
- mirror://sourceforge/fte/${P}-common.zip"
-
-LICENSE="|| ( GPL-2 Artistic )"
-SLOT="0"
-KEYWORDS="~alpha amd64 ppc -sparc x86"
-IUSE="gpm slang X"
-S=${WORKDIR}/${PN}
-
-RDEPEND=">=sys-libs/ncurses-5.2
- X? (
- x11-libs/libXdmcp
- x11-libs/libXau
- x11-libs/libX11
- )
- gpm? ( >=sys-libs/gpm-1.20 )"
-DEPEND="${RDEPEND}
- slang? ( >=sys-libs/slang-2.1.3 )
- app-arch/unzip"
-
-set_targets() {
- export TARGETS=""
- use slang && TARGETS="$TARGETS sfte"
- use X && TARGETS="$TARGETS xfte"
-
- TARGETS="$TARGETS vfte"
-}
-
-src_unpack() {
- unpack ${P}-src.zip
- unpack ${P}-common.zip
-
- cd "${S}"
-
- epatch "${FILESDIR}"/fte-gcc34
- epatch "${FILESDIR}"/${PN}-new_keyword.patch
- epatch "${FILESDIR}"/${PN}-slang.patch
-
- set_targets
- sed \
- -e "s:@targets@:${TARGETS}:" \
- -e "s:@cflags@:${CFLAGS}:" \
- -i src/fte-unix.mak
-
- if ! use gpm; then
- sed \
- -e "s:#define USE_GPM://#define USE_GPM:" \
- -i src/con_linux.cpp
- sed \
- -e "s:-lgpm::" \
- -i src/fte-unix.mak
- fi
-
- cat /usr/include/linux/keyboard.h \
- | grep -v "wait.h" \
- > src/hacked_keyboard.h
-
- sed \
- -e "s:<linux/keyboard.h>:\"hacked_keyboard.h\":" \
- -i src/con_linux.cpp
-}
-
-src_compile() {
- DEFFLAGS="PREFIX=/usr CONFIGDIR=/usr/share/fte \
- DEFAULT_FTE_CONFIG=../config/main.fte OPTIMIZE="
-
- set_targets
- emake $DEFFLAGS TARGETS="$TARGETS" all || die
-}
-
-src_install() {
- local files
-
- keepdir /etc/fte
-
- into /usr
-
- set_targets
- files="${TARGETS} cfte"
-
- for i in ${files} ; do
- dobin src/$i ;
- done
-
- dobin "${FILESDIR}"/fte
-
- dodoc CHANGES BUGS HISTORY README TODO
- dohtml doc/*
-
- dodir usr/share/fte
- insinto /usr/share/fte
- doins -r config/*
-
- rm -rf "${D}"/usr/share/fte/CVS
-}
-
-pkg_postinst() {
- ebegin "Compiling configuration"
- cd /usr/share/fte || die "missing configuration dir"
- /usr/bin/cfte main.fte /etc/fte/system.fterc
- eend $?
-}