summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2014-05-24 10:13:57 +0000
committerUlrich Müller <ulm@gentoo.org>2014-05-24 10:13:57 +0000
commitff22660b93d65901516c1a59c61cc743616a35a5 (patch)
treedc6a1279c470a2f61da3faf066246f809caace90 /app-editors/teco
parentStable for x86, wrt bug #502924 (diff)
downloadgentoo-2-ff22660b93d65901516c1a59c61cc743616a35a5.tar.gz
gentoo-2-ff22660b93d65901516c1a59c61cc743616a35a5.tar.bz2
gentoo-2-ff22660b93d65901516c1a59c61cc743616a35a5.zip
Remove old.
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 9433907D693FB5B8!)
Diffstat (limited to 'app-editors/teco')
-rw-r--r--app-editors/teco/ChangeLog5
-rw-r--r--app-editors/teco/teco-1.00-r3.ebuild65
2 files changed, 4 insertions, 66 deletions
diff --git a/app-editors/teco/ChangeLog b/app-editors/teco/ChangeLog
index 0340c546ec0d..e12cf04796d8 100644
--- a/app-editors/teco/ChangeLog
+++ b/app-editors/teco/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-editors/teco
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/teco/ChangeLog,v 1.30 2014/05/24 10:10:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/teco/ChangeLog,v 1.31 2014/05/24 10:13:56 ulm Exp $
+
+ 24 May 2014; Ulrich Müller <ulm@gentoo.org> -teco-1.00-r3.ebuild:
+ Remove old.
24 May 2014; Agostino Sarubbo <ago@gentoo.org> teco-1.00-r4.ebuild:
Stable for x86, wrt bug #507202
diff --git a/app-editors/teco/teco-1.00-r3.ebuild b/app-editors/teco/teco-1.00-r3.ebuild
deleted file mode 100644
index ebbe8707af9a..000000000000
--- a/app-editors/teco/teco-1.00-r3.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/teco/teco-1.00-r3.ebuild,v 1.14 2013/02/28 17:56:16 ulm Exp $
-
-EAPI=3
-
-inherit eutils toolchain-funcs flag-o-matic
-
-DESCRIPTION="Classic TECO editor, Predecessor to EMACS"
-HOMEPAGE="http://www.ibiblio.org/pub/linux/apps/editors/tty/ http://www.ibiblio.org/pub/academic/computer-science/history/pdp-11/teco"
-SRC_URI="http://www.ibiblio.org/pub/linux/apps/editors/tty/teco.tar.gz
- doc? ( mirror://gentoo/tecolore.txt.gz
- mirror://gentoo/tech.txt.gz
- mirror://gentoo/teco.doc.gz
- mirror://gentoo/tecoprog.doc.gz )"
-
-LICENSE="freedist"
-SLOT="0"
-KEYWORDS="alpha ~amd64 ~ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
-IUSE="doc"
-
-RDEPEND="sys-libs/ncurses"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-S=${WORKDIR}
-
-src_unpack() {
- unpack teco.tar.gz
- if use doc; then
- mkdir doc
- cd doc || die
- unpack tecolore.txt.gz tech.txt.gz teco.doc.gz tecoprog.doc.gz
- fi
-}
-
-src_prepare() {
- local pkg_config=$("$(tc-getPKG_CONFIG)" --libs ncurses)
- sed -i -e "s:\$(CC):& \$(LDFLAGS):;s:-ltermcap:${pkg_config}:" \
- Makefile || die
- # bug 103257
- epatch "${FILESDIR}"/${PN}-double-free.diff
- epatch "${FILESDIR}"/${PN}-gcc4.patch
-}
-
-src_compile() {
- append-flags -ansi
- append-cppflags -D_POSIX_SOURCE
- emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" || die
-}
-
-src_install() {
- dobin te || die
- doman te.1 || die
- dodoc sample.tecorc sample.tecorc2 READ.ME MANIFEST || die
- if use doc; then
- cd doc
- dodoc tecolore.txt tech.txt teco.doc tecoprog.doc || die
- fi
-}
-
-pkg_postinst() {
- elog "The TECO binary is called te."
- elog "Sample configurations and documentation is available in /usr/share/doc/"
-}