summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2009-04-13 02:32:19 +0000
committerJeremy Olexa <darkside@gentoo.org>2009-04-13 02:32:19 +0000
commit0c2ef50dc3043ba70007d8786a71889e3c999d0d (patch)
tree4bff09682b28eeffdc28b7c0408d8ae51665aab3 /app-misc
parentrespect CC (bug #243610) (diff)
downloadhistorical-0c2ef50dc3043ba70007d8786a71889e3c999d0d.tar.gz
historical-0c2ef50dc3043ba70007d8786a71889e3c999d0d.tar.bz2
historical-0c2ef50dc3043ba70007d8786a71889e3c999d0d.zip
QA: respect CC, bug 243676. Remove old.
Package-Manager: portage-2.1.6.11/cvs/Linux x86_64
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/tdl/ChangeLog8
-rw-r--r--app-misc/tdl/tdl-1.4.1.ebuild55
-rw-r--r--app-misc/tdl/tdl-1.5.2.ebuild7
3 files changed, 10 insertions, 60 deletions
diff --git a/app-misc/tdl/ChangeLog b/app-misc/tdl/ChangeLog
index 15472b13c42e..713a57f58343 100644
--- a/app-misc/tdl/ChangeLog
+++ b/app-misc/tdl/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-misc/tdl
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tdl/ChangeLog,v 1.21 2008/09/03 08:51:22 opfer Exp $
+# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tdl/ChangeLog,v 1.22 2009/04/13 02:32:19 darkside Exp $
+
+ 13 Apr 2009; Jeremy Olexa <darkside@gentoo.org> -tdl-1.4.1.ebuild,
+ tdl-1.5.2.ebuild:
+ QA: respect CC, bug 243676. Remove old.
03 Sep 2008; Christian Faulhammer <opfer@gentoo.org> tdl-1.4.1.ebuild,
tdl-1.5.2.ebuild:
diff --git a/app-misc/tdl/tdl-1.4.1.ebuild b/app-misc/tdl/tdl-1.4.1.ebuild
deleted file mode 100644
index f3cfd998694c..000000000000
--- a/app-misc/tdl/tdl-1.4.1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/tdl/tdl-1.4.1.ebuild,v 1.16 2008/09/03 08:51:22 opfer Exp $
-
-DESCRIPTION="Command line To Do List manager"
-HOMEPAGE="http://www.rc0.org.uk/tdl/"
-SRC_URI="http://www.rrbcurnow.freeuk.com/tdl/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86 alpha ppc"
-IUSE="doc readline"
-
-RDEPEND="
- readline? (
- >=sys-libs/readline-4.3
- sys-libs/ncurses
- )"
-DEPEND="${RDEPEND}
- sys-apps/texinfo
- >=sys-apps/sed-4
- doc? ( virtual/texi2dvi )"
-
-src_compile() {
- local myconf="--prefix=/usr"
-
- if ! use readline; then
- myconf="${myconf} --without-readline"
- else
- sed -i 's#-ltermcap#-lncurses#g' "${S}"/configure
- fi
-
- ./configure ${myconf} || die "configure failed, sorry!"
- emake all tdl.info tdl.html tdl.txt || die
- use doc && emake tdl.dvi tdl.ps tdl.pdf
-}
-
-src_install() {
- local i
-
- dodoc README NEWS tdl.txt "${FILESDIR}/screenshot.png"
- doinfo tdl.info
- dohtml tdl.html
-
- dobin tdl
- doman tdl.1
-
- for i in tdl{a,l,d,g}
- do
- dosym tdl /usr/bin/${i}
- dosym tdl.1 /usr/share/man/man1/${i}.1
- done
-
- use doc && dodoc tdl.dvi tdl.ps tdl.pdf
-}
diff --git a/app-misc/tdl/tdl-1.5.2.ebuild b/app-misc/tdl/tdl-1.5.2.ebuild
index c85101c1b1c5..bc1ceb16f57c 100644
--- a/app-misc/tdl/tdl-1.5.2.ebuild
+++ b/app-misc/tdl/tdl-1.5.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 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.17 2008/09/03 08:51:22 opfer Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/tdl/tdl-1.5.2.ebuild,v 1.18 2009/04/13 02:32:19 darkside Exp $
-inherit eutils flag-o-matic
+inherit eutils flag-o-matic toolchain-funcs
DESCRIPTION="Command line To Do List manager"
HOMEPAGE="http://www.rc0.org.uk/tdl/"
@@ -21,6 +21,7 @@ DEPEND="${RDEPEND}
doc? ( virtual/texi2dvi )"
src_compile() {
+ tc-export CC
local myconf="--prefix=/usr"
if ! use readline; then