summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2015-02-12 14:42:21 +0000
committerJustin Lecher <jlec@gentoo.org>2015-02-12 14:42:21 +0000
commit5365e34399904b51f696d61853767d91ce624a0e (patch)
tree13b035576e02c7f559b8c7df9aef3eb28137cb68 /app-misc/devtodo
parentDrop old (diff)
downloadgentoo-2-5365e34399904b51f696d61853767d91ce624a0e.tar.gz
gentoo-2-5365e34399904b51f696d61853767d91ce624a0e.tar.bz2
gentoo-2-5365e34399904b51f696d61853767d91ce624a0e.zip
Drop old
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key B9D4F231BD1558AB!)
Diffstat (limited to 'app-misc/devtodo')
-rw-r--r--app-misc/devtodo/ChangeLog5
-rw-r--r--app-misc/devtodo/devtodo-0.1.20-r2.ebuild68
2 files changed, 4 insertions, 69 deletions
diff --git a/app-misc/devtodo/ChangeLog b/app-misc/devtodo/ChangeLog
index b8103b7e3d29..8dc2a5ab3730 100644
--- a/app-misc/devtodo/ChangeLog
+++ b/app-misc/devtodo/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-misc/devtodo
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/ChangeLog,v 1.115 2015/02/12 13:43:55 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/devtodo/ChangeLog,v 1.116 2015/02/12 14:42:21 jlec Exp $
+
+ 12 Feb 2015; Justin Lecher <jlec@gentoo.org> -devtodo-0.1.20-r2.ebuild:
+ Drop old
12 Feb 2015; Raúl Porcel <armin76@gentoo.org> devtodo-0.1.20-r3.ebuild:
alpha/ia64/sparc stable wrt #534870
diff --git a/app-misc/devtodo/devtodo-0.1.20-r2.ebuild b/app-misc/devtodo/devtodo-0.1.20-r2.ebuild
deleted file mode 100644
index 15b6dd5c3978..000000000000
--- a/app-misc/devtodo/devtodo-0.1.20-r2.ebuild
+++ /dev/null
@@ -1,68 +0,0 @@
-# Copyright 1999-2014 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-r2.ebuild,v 1.10 2014/11/11 10:51:41 ago Exp $
-
-EAPI="5"
-
-AUTOTOOLS_AUTORECONF=1
-AUTOTOOLS_IN_SOURCE_BUILD=1
-inherit autotools-utils bash-completion-r1 eutils flag-o-matic toolchain-funcs
-
-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}"
-
-DOCS=( AUTHORS ChangeLog QuickStart README doc/scripts.sh doc/scripts.tcsh doc/todorc.example )
-PATCHES=(
- "${FILESDIR}/${P}-gentoo.diff"
- "${FILESDIR}/${P}-gcc43.patch"
-)
-
-src_prepare() {
- # fix regex.h issue on case-insensitive file-systems #332235
- sed \
- -e 's/Regex.h/DTRegex.h/' \
- -i util/Lexer.h util/Makefile.{am,in} util/Regex.cc || die
- mv util/{,DT}Regex.h || die
-
- sed \
- -e "/^LIBS/s:$: $($(tc-getPKG_CONFIG) --libs ncursesw):g" \
- -i src/Makefile.am || die
-
- autotools-utils_src_prepare
-}
-
-src_configure() {
- replace-flags -O[23] -O1
-
- local myeconfargs=(
- --sysconfdir="${EPREFIX}/etc/devtodo"
- )
- autotools-utils_src_configure
-}
-
-src_install() {
- autotools-utils_src_install
-
- newbashcomp contrib/${PN}.bash-completion ${PN}
- rm contrib/${PN}.bash-completion || die 'rm failed'
-
- bashcomp_alias devtodo tda tdd tde tdr todo
-
- dodoc -r contrib
-}
-
-pkg_postinst() {
- elog "Because of a conflict with app-misc/tdl, the tdl symbolic link"
- elog "and manual page have been removed."
-}