summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2011-01-05 16:36:14 +0000
committerJustin Lecher <jlec@gentoo.org>2011-01-05 16:36:14 +0000
commit750a639022d0eeaa095d9221f1ae9cfee2fcf458 (patch)
treed9e0cf1dca23299cc843e53bf2072aeb5142f231 /app-misc/tdl
parentSome Clean up (diff)
downloadgentoo-2-750a639022d0eeaa095d9221f1ae9cfee2fcf458.tar.gz
gentoo-2-750a639022d0eeaa095d9221f1ae9cfee2fcf458.tar.bz2
gentoo-2-750a639022d0eeaa095d9221f1ae9cfee2fcf458.zip
Some Clean up, removed old
(Portage version: 2.2.0_alpha12/cvs/Linux x86_64)
Diffstat (limited to 'app-misc/tdl')
-rw-r--r--app-misc/tdl/ChangeLog7
-rw-r--r--app-misc/tdl/tdl-1.5.2.ebuild62
2 files changed, 5 insertions, 64 deletions
diff --git a/app-misc/tdl/ChangeLog b/app-misc/tdl/ChangeLog
index b8e8fd444a7e..fe8b8e812d3c 100644
--- a/app-misc/tdl/ChangeLog
+++ b/app-misc/tdl/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/tdl
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tdl/ChangeLog,v 1.28 2010/12/05 18:08:24 armin76 Exp $
+# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tdl/ChangeLog,v 1.29 2011/01/05 16:36:14 jlec Exp $
+
+ 05 Jan 2011; Justin Lecher <jlec@gentoo.org> -tdl-1.5.2.ebuild:
+ Some Clean up, removed old
05 Dec 2010; Raúl Porcel <armin76@gentoo.org> tdl-1.5.2-r1.ebuild:
alpha stable wrt #342139
diff --git a/app-misc/tdl/tdl-1.5.2.ebuild b/app-misc/tdl/tdl-1.5.2.ebuild
deleted file mode 100644
index ac7e0d1fcddb..000000000000
--- a/app-misc/tdl/tdl-1.5.2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tdl/tdl-1.5.2.ebuild,v 1.19 2010/10/22 17:35:49 jlec Exp $
-
-inherit eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="Command line To Do List manager"
-HOMEPAGE="http://www.rc0.org.uk/tdl/"
-SRC_URI="http://www.rpcurnow.force9.co.uk/tdl/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 alpha ppc amd64"
-IUSE="doc readline"
-
-RDEPEND="
- >=sys-libs/readline-4.3
- sys-libs/ncurses"
-DEPEND="${RDEPEND}
- sys-apps/texinfo
- >=sys-apps/sed-4
- doc? ( virtual/texi2dvi )"
-
-src_compile() {
- tc-export CC
- local myconf="--prefix=/usr"
-
- if ! use readline; then
- myconf="${myconf} --without-readline"
-
- sed -i 's#\($(LIB_READLINE)\)#\1 -lncurses##g' "${S}"/Makefile.in
- fi
- sed -i 's#-ltermcap#-lncurses#g' "${S}"/configure || die
-
- # XXX: do not replace with econf.
- "${S}"/configure ${myconf} || die "configure failed, sorry!"
- emake all tdl.info tdl.html tdl.txt || die
- if use doc; then
- emake tdl.dvi tdl.ps tdl.pdf || die
- fi
-}
-
-src_install() {
- local i
-
- dodoc README NEWS tdl.txt "${FILESDIR}/screenshot.png" || die
- doinfo tdl.info || die
- dohtml tdl.html || die
-
- dobin tdl || die
- doman tdl.1 || die
-
- for i in tdl{a,l,d,g}
- do
- dosym tdl /usr/bin/${i} || die
- dosym tdl.1 /usr/share/man/man1/${i}.1 || die
- done
-
- if use doc; then
- dodoc tdl.dvi tdl.ps tdl.pdf || die
- fi
-}