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 92F84138334 for ; Sat, 23 Nov 2019 18:19:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 23BE7E0809; Sat, 23 Nov 2019 18:19:06 +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 0212DE0809 for ; Sat, 23 Nov 2019 18:19:05 +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 1B26334D27D for ; Sat, 23 Nov 2019 18:19:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8A4518C2 for ; Sat, 23 Nov 2019 18:19:01 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1574533135.3d2cf615b687520e0febd3de97856dcae72caed8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-tcltk/vtcl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-tcltk/vtcl/vtcl-1.6.0-r1.ebuild X-VCS-Directories: dev-tcltk/vtcl/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 3d2cf615b687520e0febd3de97856dcae72caed8 X-VCS-Branch: master Date: Sat, 23 Nov 2019 18:19:01 +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: 577c00cd-3633-4e36-9d98-fdd3b51b9e4e X-Archives-Hash: 870a7704b97ac0b5f9fa407a7abb46b2 commit: 3d2cf615b687520e0febd3de97856dcae72caed8 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 23 18:15:07 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Sat Nov 23 18:18:55 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d2cf615 dev-tcltk/vtcl: Drop EAPI 0 ebuild Signed-off-by: Michał Górny gentoo.org> dev-tcltk/vtcl/vtcl-1.6.0-r1.ebuild | 30 ------------------------------ 1 file changed, 30 deletions(-) diff --git a/dev-tcltk/vtcl/vtcl-1.6.0-r1.ebuild b/dev-tcltk/vtcl/vtcl-1.6.0-r1.ebuild deleted file mode 100644 index 6b09343c421..00000000000 --- a/dev-tcltk/vtcl/vtcl-1.6.0-r1.ebuild +++ /dev/null @@ -1,30 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="Visual Tcl is a high-quality application development environment" -HOMEPAGE="http://vtcl.sf.net" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="doc" -DEPEND="dev-lang/tk" -RDEPEND="${DEPEND}" - -MY_DESTDIR=/usr/share/${PN} -src_compile() { - ./configure || die - sed -i 's,^\(VTCL_HOME=\).*,\1'${MY_DESTDIR}',g' vtcl || die "Path fixing failed." - sed -i 's,package require -exact Tk ,package require Tk ,' lib/tkcon.tcl || die "Tcl8.5 patch failed" -} - -src_install() { - dodir ${MY_DESTDIR} || die "Directory creation failed." - dobin vtcl || die - cp -r ./{demo,images,lib,sample,vtcl.tcl} "${D}/${MY_DESTDIR}" || die "Data installation failed." - dodoc ChangeLog README - use doc && dodoc doc/tutorial.txt - use doc && dohtml doc/*html -}