Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/cvoicecontrol/
Date: Sun, 28 Apr 2019 22:41:39
Message-Id: 1556490938.e3557d8ffd9e4023dc8a33cd069c426fb5a66081.pacho@gentoo
1 commit: e3557d8ffd9e4023dc8a33cd069c426fb5a66081
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Apr 28 22:35:38 2019 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Apr 28 22:35:38 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3557d8f
7
8 media-sound/cvoicecontrol: Drop old
9
10 Package-Manager: Portage-2.3.64, Repoman-2.3.12
11 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
12
13 .../cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild | 43 ----------------------
14 1 file changed, 43 deletions(-)
15
16 diff --git a/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild b/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild
17 deleted file mode 100644
18 index 37dd3eaabfd..00000000000
19 --- a/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha.ebuild
20 +++ /dev/null
21 @@ -1,43 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=0
26 -
27 -IUSE=""
28 -
29 -inherit eutils
30 -
31 -MY_P=${P/_/}
32 -S=${WORKDIR}/${MY_P}
33 -
34 -DESCRIPTION="Console based speech recognition system"
35 -HOMEPAGE="http://www.kiecza.net/daniel/linux/"
36 -SRC_URI="http://www.kiecza.net/daniel/linux/${MY_P}.tar.bz2"
37 -
38 -SLOT="0"
39 -LICENSE="GPL-2"
40 -
41 -KEYWORDS="amd64 ppc sparc x86"
42 -
43 -src_unpack() {
44 - unpack ${A}
45 -
46 - epatch "${FILESDIR}/${P}-gentoo.diff"
47 -
48 - #remove "docs" from SUBDIRS in Makefile.in
49 - #Makefile will try to install few html files directly under the /usr
50 - #much easier to do with dohtml
51 - cd "${S}"/cvoicecontrol/
52 - sed -i -e "s:SUBDIRS = docs:#SUBDIRS = docs:" Makefile.in
53 -
54 - cd "${S}"
55 - sed -i -e "s/install-data-am: install-data-local/install-data-am:/" Makefile.in
56 -}
57 -
58 -src_install () {
59 - make DESTDIR="${D}" install || die
60 -
61 - #install documentation
62 - dodoc AUTHORS BUGS ChangeLog FAQ README
63 - dohtml cvoicecontrol/docs/en/*.html
64 -}