From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 508D713997D for ; Wed, 13 Nov 2019 01:37:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70AE1E0869; Wed, 13 Nov 2019 01:37:33 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4D8D9E0869 for ; Wed, 13 Nov 2019 01:37:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 01BC034CCDB for ; Wed, 13 Nov 2019 01:37:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 61D938AB for ; Wed, 13 Nov 2019 01:37:29 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1573608721.62999d61fbeae3037c8ed104ecfe5eeeda394d31.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/tdl/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/tdl/tdl-1.5.2-r2.ebuild X-VCS-Directories: app-misc/tdl/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 62999d61fbeae3037c8ed104ecfe5eeeda394d31 X-VCS-Branch: master Date: Wed, 13 Nov 2019 01:37:29 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a2e091e2-0f5d-4c19-909f-895d35d82cf4 X-Archives-Hash: da6c2281226eade3033447ae7f1b62ab commit: 62999d61fbeae3037c8ed104ecfe5eeeda394d31 Author: Aaron Bauman gentoo org> AuthorDate: Wed Nov 13 01:32:01 2019 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Wed Nov 13 01:32:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62999d61 app-misc/tdl: drop old EAPI Signed-off-by: Aaron Bauman gentoo.org> app-misc/tdl/tdl-1.5.2-r2.ebuild | 75 ---------------------------------------- 1 file changed, 75 deletions(-) diff --git a/app-misc/tdl/tdl-1.5.2-r2.ebuild b/app-misc/tdl/tdl-1.5.2-r2.ebuild deleted file mode 100644 index 3b105616d7c..00000000000 --- a/app-misc/tdl/tdl-1.5.2-r2.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=4 - -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 - https://dev.gentoo.org/~jlec/distfiles/${PN}-screenshot.png.tar" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="doc readline" - -RDEPEND=" - sys-libs/ncurses - sys-libs/readline" -DEPEND="${RDEPEND} - sys-apps/sed - sys-apps/texinfo - doc? ( virtual/texi2dvi )" - -src_prepare() { - epatch \ - "${FILESDIR}"/${PV}-ldflags.patch \ - "${FILESDIR}"/${P}-list.c.patch \ - "${FILESDIR}"/${P}-main.c.patch \ - "${FILESDIR}"/${P}-man.patch - - tc-export CC -} - -src_configure() { - local myconf="--prefix=${EPREFIX}/usr" - - if ! use readline; then - myconf="${myconf} --without-readline" - - sed -i 's#\($(LIB_READLINE)\)#\1 -lncurses##g' "${S}"/Makefile.in || die - fi - sed -i 's#-ltermcap#-lncurses#g' "${S}"/configure || die - - # XXX: do not replace with econf. - "${S}"/configure ${myconf} || die "configure failed, sorry!" -} - -src_compile() { - emake all tdl.info tdl.html tdl.txt - use doc && emake tdl.dvi tdl.ps tdl.pdf -} - -src_install() { - local i - - dodoc README NEWS tdl.txt "${WORKDIR}"/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 - - if use doc; then - dodoc tdl.dvi tdl.ps tdl.pdf - fi -}