Gentoo Archives: gentoo-commits

From: Mart Raudsepp <leio@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-accessibility/speech-dispatcher/
Date: Wed, 25 Jul 2018 16:47:39
Message-Id: 1532537216.cd3f982c968645c7a4ffd83cd1abdd708d8550e8.leio@gentoo
1 commit: cd3f982c968645c7a4ffd83cd1abdd708d8550e8
2 Author: Mart Raudsepp <leio <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 25 11:30:26 2018 +0000
4 Commit: Mart Raudsepp <leio <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 25 16:46:56 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd3f982c
7
8 app-accessibility/speech-dispatcher: remove old
9
10 Package-Manager: Portage-2.3.43, Repoman-2.3.10
11
12 app-accessibility/speech-dispatcher/Manifest | 1 -
13 .../speech-dispatcher-0.8.3.ebuild | 111 ---------------------
14 2 files changed, 112 deletions(-)
15
16 diff --git a/app-accessibility/speech-dispatcher/Manifest b/app-accessibility/speech-dispatcher/Manifest
17 index 46475c1ce56..ace56a5aa3e 100644
18 --- a/app-accessibility/speech-dispatcher/Manifest
19 +++ b/app-accessibility/speech-dispatcher/Manifest
20 @@ -1,3 +1,2 @@
21 DIST speech-dispatcher-0.8.1.tar.gz 1309969 BLAKE2B 225a7b6a134cf0c82b1e08f961bad87a509ae7b4a9948c1e548c84a325b86b70ee66cd52dabd560f6640682385ea826fa4e67ec762a3da223a14303ddfdae5c2 SHA512 35f1ae547001a45d7945406ae5672829ff9ab6ac3f0cccb9eb3670dd92888a63c7cc4270ee90b5a166e6788afe3b117b5c3ef62c41a9df9f9af94dc4e0948fe8
22 -DIST speech-dispatcher-0.8.3.tar.gz 1292321 BLAKE2B a9a69734b9aa3c38041ea2872fa872e91d0e464714b71852266d5010677accee84a656e1b3661370b5e0047f0f0051e61dc5e8152185146b3779f59117bf7670 SHA512 48eaa1fb27a14ad6c6a1f214044fbddde85ff07e636355e75f4f3ac1e46cea0cbbbd2cb9ce01ce4b9cb27d5395d840bd38afd2c65ec0fabcc8787483ae7a7b67
23 DIST speech-dispatcher-0.8.7.tar.gz 1333677 BLAKE2B 0b08f1a1228fe1240e14b3d52913f8fa64a1f2ee9b563294b49ea8d3e5cfd3041aa5572ec72354b360dabd2d263deb79e418b95b6174a5b89ee541e9fd23c7e2 SHA512 0e7af02e8521aa8d397ea4d0329f9a8d56970beed645456dfedc738ececd2ccd8ecfdf66e92ae852878a473ba991175e1d4dc2b8b0148c958163682b49678375
24
25 diff --git a/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.3.ebuild b/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.3.ebuild
26 deleted file mode 100644
27 index 2c177405d33..00000000000
28 --- a/app-accessibility/speech-dispatcher/speech-dispatcher-0.8.3.ebuild
29 +++ /dev/null
30 @@ -1,111 +0,0 @@
31 -# Copyright 1999-2018 Gentoo Foundation
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=5
35 -
36 -PYTHON_COMPAT=( python3_4 python3_5 )
37 -
38 -inherit eutils python-r1
39 -
40 -DESCRIPTION="Speech synthesis interface"
41 -HOMEPAGE="http://www.freebsoft.org/speechd"
42 -SRC_URI="http://www.freebsoft.org/pub/projects/speechd/${P}.tar.gz"
43 -
44 -LICENSE="GPL-2"
45 -SLOT="0"
46 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
47 -IUSE="alsa ao +espeak flite nas pulseaudio python static-libs"
48 -
49 -REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
50 -
51 -COMMON_DEPEND="python? ( ${PYTHON_DEPS} )
52 - >=dev-libs/dotconf-1.3
53 - >=dev-libs/glib-2.28:2
54 - >=media-libs/libsndfile-1.0.2
55 - alsa? ( media-libs/alsa-lib )
56 - ao? ( media-libs/libao )
57 - espeak? ( app-accessibility/espeak )
58 - flite? ( app-accessibility/flite )
59 - nas? ( media-libs/nas )
60 - pulseaudio? ( media-sound/pulseaudio )"
61 -DEPEND="${COMMON_DEPEND}
62 - >=dev-util/intltool-0.40.0
63 - virtual/pkgconfig"
64 - RDEPEND="${COMMON_DEPEND}
65 - dev-python/pyxdg"
66 -
67 -src_configure() {
68 - # bug 573732
69 - export GIT_CEILING_DIRECTORIES="${WORKDIR}"
70 -
71 - local myeconfargs=(
72 - --disable-python
73 - $(use_enable static-libs static)
74 - $(use_with alsa)
75 - $(use_with ao libao)
76 - $(use_with espeak)
77 - $(use_with flite)
78 - $(use_with pulseaudio pulse)
79 - $(use_with nas)
80 - )
81 - econf ${myeconfargs[@]}
82 -}
83 -
84 -src_compile() {
85 - use python && python_copy_sources
86 -
87 - emake
88 -
89 - if use python; then
90 - building() {
91 - cd src/api/python || die
92 - emake \
93 - pyexecdir="$(python_get_sitedir)" \
94 - pythondir="$(python_get_sitedir)"
95 - }
96 - python_foreach_impl run_in_build_dir building
97 - fi
98 -}
99 -
100 -src_install() {
101 - emake DESTDIR="${D}" install
102 - dodoc ANNOUNCE AUTHORS BUGS ChangeLog FAQ NEWS README*
103 -
104 - prune_libtool_files --all
105 -
106 - if use python; then
107 - installation() {
108 - cd src/api/python || die
109 - emake \
110 - DESTDIR="${D}" \
111 - pyexecdir="$(python_get_sitedir)" \
112 - pythondir="$(python_get_sitedir)" \
113 - install
114 - }
115 - python_foreach_impl run_in_build_dir installation
116 - python_replicate_script "${ED}"/usr/bin/spd-conf
117 - fi
118 -}
119 -
120 -pkg_postinst() {
121 - local editconfig="n"
122 - if ! use espeak; then
123 - ewarn "You have disabled espeak, which is speech-dispatcher's"
124 - ewarn "default speech synthesizer."
125 - ewarn
126 - editconfig="y"
127 - fi
128 - if ! use pulseaudio; then
129 - ewarn "You have disabled pulseaudio support."
130 - ewarn "pulseaudio is speech-dispatcher's default audio subsystem."
131 - ewarn
132 - editconfig="y"
133 - fi
134 - if [[ "${editconfig}" == "y" ]]; then
135 - ewarn "You must edit ${EROOT}etc/speech-dispatcher/speechd.conf"
136 - ewarn "and make sure the settings there match your system."
137 - ewarn
138 - fi
139 - elog "For festival support, you need to"
140 - elog "install app-accessibility/festival-freebsoft-utils."
141 -}