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 228F6138334 for ; Sun, 28 Apr 2019 22:41:39 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 24E9FE086B; Sun, 28 Apr 2019 22:41:38 +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 00CE6E086B for ; Sun, 28 Apr 2019 22:41:37 +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 8ED93342BFB for ; Sun, 28 Apr 2019 22:41:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DD2615CC for ; Sun, 28 Apr 2019 22:41:34 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1556490938.e3557d8ffd9e4023dc8a33cd069c426fb5a66081.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/cvoicecontrol/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild X-VCS-Directories: media-sound/cvoicecontrol/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: e3557d8ffd9e4023dc8a33cd069c426fb5a66081 X-VCS-Branch: master Date: Sun, 28 Apr 2019 22:41:34 +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: cf3aadbc-76ab-4f8a-ac75-392c5798cb14 X-Archives-Hash: 3044afac3cd51b4f783bba10305300cd commit: e3557d8ffd9e4023dc8a33cd069c426fb5a66081 Author: Pacho Ramos gentoo org> AuthorDate: Sun Apr 28 22:35:38 2019 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun Apr 28 22:35:38 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3557d8f media-sound/cvoicecontrol: Drop old Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Pacho Ramos gentoo.org> .../cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild | 43 ---------------------- 1 file changed, 43 deletions(-) diff --git a/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild b/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild deleted file mode 100644 index 37dd3eaabfd..00000000000 --- a/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -IUSE="" - -inherit eutils - -MY_P=${P/_/} -S=${WORKDIR}/${MY_P} - -DESCRIPTION="Console based speech recognition system" -HOMEPAGE="http://www.kiecza.net/daniel/linux/" -SRC_URI="http://www.kiecza.net/daniel/linux/${MY_P}.tar.bz2" - -SLOT="0" -LICENSE="GPL-2" - -KEYWORDS="amd64 ppc sparc x86" - -src_unpack() { - unpack ${A} - - epatch "${FILESDIR}/${P}-gentoo.diff" - - #remove "docs" from SUBDIRS in Makefile.in - #Makefile will try to install few html files directly under the /usr - #much easier to do with dohtml - cd "${S}"/cvoicecontrol/ - sed -i -e "s:SUBDIRS = docs:#SUBDIRS = docs:" Makefile.in - - cd "${S}" - sed -i -e "s/install-data-am: install-data-local/install-data-am:/" Makefile.in -} - -src_install () { - make DESTDIR="${D}" install || die - - #install documentation - dodoc AUTHORS BUGS ChangeLog FAQ README - dohtml cvoicecontrol/docs/en/*.html -}