summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2014-03-19 16:40:28 +0000
committerJustin Lecher <jlec@gentoo.org>2014-03-19 16:40:28 +0000
commitcc1e5279cdb1763016160d69d5560ccf3fceaf0f (patch)
tree2d751c4ccc535af708a1825d22b22b497901b9dc /app-misc
parentVersion bump (diff)
downloadgentoo-2-cc1e5279cdb1763016160d69d5560ccf3fceaf0f.tar.gz
gentoo-2-cc1e5279cdb1763016160d69d5560ccf3fceaf0f.tar.bz2
gentoo-2-cc1e5279cdb1763016160d69d5560ccf3fceaf0f.zip
app-misc/devtodo: Drop old
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/devtodo/ChangeLog5
-rw-r--r--app-misc/devtodo/devtodo-0.1.20.ebuild55
2 files changed, 4 insertions, 56 deletions
diff --git a/app-misc/devtodo/ChangeLog b/app-misc/devtodo/ChangeLog
index 04139466daf0..2c56439d4bab 100644
--- a/app-misc/devtodo/ChangeLog
+++ b/app-misc/devtodo/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/devtodo
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/ChangeLog,v 1.96 2014/03/19 16:12:52 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/ChangeLog,v 1.97 2014/03/19 16:40:27 jlec Exp $
+
+ 19 Mar 2014; Justin Lecher <jlec@gentoo.org> -devtodo-0.1.20.ebuild:
+ Drop old
19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> devtodo-0.1.20-r1.ebuild:
Stable for alpha, wrt bug #500780
diff --git a/app-misc/devtodo/devtodo-0.1.20.ebuild b/app-misc/devtodo/devtodo-0.1.20.ebuild
deleted file mode 100644
index 3feb4cb27384..000000000000
--- a/app-misc/devtodo/devtodo-0.1.20.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/devtodo-0.1.20.ebuild,v 1.16 2011/01/04 17:55:28 jlec Exp $
-
-EAPI="3"
-
-inherit autotools eutils bash-completion flag-o-matic
-
-DESCRIPTION="A nice command line todo list for developers"
-HOMEPAGE="http://swapoff.org/DevTodo"
-SRC_URI="http://swapoff.org/files/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE=""
-
-RDEPEND="
- >=sys-libs/ncurses-5.2
- >=sys-libs/readline-4.1"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- epatch \
- "${FILESDIR}/${P}-gentoo.diff" \
- "${FILESDIR}/${P}-gcc43.patch"
- # fix regex.h issue on case-insensitive file-systems #332235
- sed -i -e 's/Regex.h/DTRegex.h/' \
- util/Lexer.h util/Makefile.{am,in} util/Regex.cc || die
- mv util/{,DT}Regex.h || die
- eautoreconf
-}
-
-src_configure() {
- replace-flags -O[23] -O1
- econf --sysconfdir="${EPREFIX}/etc/devtodo"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
- dodoc AUTHORS ChangeLog QuickStart README doc/scripts.sh \
- doc/scripts.tcsh doc/todorc.example || die "dodoc failed"
-
- dobashcompletion contrib/${PN}.bash-completion ${PN}
- rm contrib/${PN}.bash-completion
- docinto contrib
- dodoc contrib/* || die
-}
-
-pkg_postinst() {
- echo
- elog "Because of a conflict with app-misc/tdl, the tdl symbolic link"
- elog "and manual page have been removed."
- bash-completion_pkg_postinst
-}