diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2022-10-07 19:47:34 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2022-10-07 20:09:15 -0400 |
commit | d9d9790dd39bdf5c902f7dc0e885f13a925738fa (patch) | |
tree | b466221a2ad6218ba1a4158d21ef5542fcebfbb9 /media-sound/cvoicecontrol | |
parent | app-containers/cri-o: add 1.25.1 (diff) | |
download | gentoo-d9d9790dd39bdf5c902f7dc0e885f13a925738fa.tar.gz gentoo-d9d9790dd39bdf5c902f7dc0e885f13a925738fa.tar.bz2 gentoo-d9d9790dd39bdf5c902f7dc0e885f13a925738fa.zip |
media-sound/cvoicecontrol: EAPI7->8, fix license, depend on ncurses
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'media-sound/cvoicecontrol')
-rw-r--r-- | media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha-r2.ebuild (renamed from media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha-r1.ebuild) | 17 |
1 files changed, 10 insertions, 7 deletions
diff --git a/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha-r1.ebuild b/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha-r2.ebuild index a1d1238c92c2..48c65aca5fcb 100644 --- a/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha-r1.ebuild +++ b/media-sound/cvoicecontrol/cvoicecontrol-0.9_alpha-r2.ebuild @@ -1,21 +1,23 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=7 +EAPI=8 inherit autotools MY_P="${P/_/}" DESCRIPTION="Console based speech recognition system" -HOMEPAGE="http://www.kiecza.net/daniel/linux" +HOMEPAGE="http://www.kiecza.net/daniel/linux/" SRC_URI="http://www.kiecza.net/daniel/linux/${MY_P}.tar.bz2" +S="${WORKDIR}/${MY_P}" -LICENSE="GPL-2" +LICENSE="GPL-2+" SLOT="0" KEYWORDS="amd64 ppc sparc x86" -S="${WORKDIR}/${MY_P}" +RDEPEND="sys-libs/ncurses:=" +DEPEND="${RDEPEND}" PATCHES=( "${FILESDIR}"/${P}-gentoo-2.patch @@ -26,11 +28,12 @@ PATCHES=( src_prepare() { default - mv configure.{in,ac} || die + eautoreconf } src_install() { - HTML_DOCS=( cvoicecontrol/docs/en/*.html ) + local HTML_DOCS=( cvoicecontrol/docs/en/*.html ) + default } |