Gentoo Archives: gentoo-commits

From: Justin Lecher <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-misc/praat/
Date: Sun, 29 Jan 2017 11:59:32
Message-Id: 1485691162.3b81a0278098614577ceef8dbf53f6175be50fe8.jlec@gentoo
1 commit: 3b81a0278098614577ceef8dbf53f6175be50fe8
2 Author: Pavel Denisov <pavel.a.denisov <AT> gmail <DOT> com>
3 AuthorDate: Sun Jan 29 08:56:59 2017 +0000
4 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
5 CommitDate: Sun Jan 29 11:59:22 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=3b81a027
7
8 sci-misc/praat: Version Bump (#723)
9
10 Package-Manager: Portage-2.3.3, Repoman-2.3.1
11
12 sci-misc/praat/praat-6.0.23.ebuild | 33 +++++++++++++++++++++++++++++++++
13 1 file changed, 33 insertions(+)
14
15 diff --git a/sci-misc/praat/praat-6.0.23.ebuild b/sci-misc/praat/praat-6.0.23.ebuild
16 new file mode 100644
17 index 0000000..59ec3b8
18 --- /dev/null
19 +++ b/sci-misc/praat/praat-6.0.23.ebuild
20 @@ -0,0 +1,33 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +# $Id$
24 +
25 +EAPI=6
26 +
27 +DESCRIPTION="Speech analysis and synthesis"
28 +HOMEPAGE="http://www.fon.hum.uva.nl/praat/ https://github.com/praat/praat"
29 +SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
30 +
31 +KEYWORDS="~amd64 ~x86"
32 +IUSE=""
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +
36 +DEPEND="
37 + x11-libs/gtk+:2
38 + media-libs/alsa-lib
39 + media-sound/pulseaudio"
40 +RDEPEND="${DEPEND}"
41 +
42 +src_prepare() {
43 + eapply_user
44 + # TODO: following line should be updated for non-linux etc. builds
45 + # (Flammie does not have testing equipment)
46 + cp "${S}"/makefiles/makefile.defs.linux.pulse "${S}"/makefile.defs || die
47 +}
48 +
49 +src_install() {
50 + dobin ${PN}
51 + insinto /usr/share/${PN}
52 + doins -r test
53 +}