blob: 6f0d00cfbe7fd417d5d0d5bfb73280d686c66c8c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit versionator
# FIXME: for versions with last part < 10 pad with zeroes
# e.g 4 => 4000, 5.1 => 5100, 5.2.7 => 5207.
MY_PV=$(delete_all_version_separators)
DESCRIPTION="Speech analysis and synthesis"
SRC_URI="http://www.fon.hum.uva.nl/praat/${PN}${MY_PV}_sources.tar.gz"
HOMEPAGE="http://www.fon.hum.uva.nl/praat/"
KEYWORDS="~amd64 ~x86"
IUSE=""
LICENSE="GPL-2"
SLOT="0"
DEPEND="
x11-libs/libXmu
x11-libs/libXt
x11-libs/libX11
x11-libs/libICE
x11-libs/libXext
x11-libs/libSM
x11-libs/libXp
x11-libs/motif"
RDEPEND="${DEPEND}"
S="${WORKDIR}/sources_${MY_PV}"
src_prepare() {
# TODO: following line should be updated for non-linux etc. builds
# (Flammie does not have testing equipment)
cp "${S}/makefiles/makefile.defs.linux.dynamic" "${S}/makefile.defs"
}
src_install() {
dobin praat
dodir /usr/share/${PN}
insinto /usr/share/${PN}
doins test/*
dodir /usr/share/${PN}/texio
insinto /usr/share/${PN}/texio
doins test/texio/*
dodir /usr/share/${PN}/logisticRegression
insinto /usr/share/${PN}/logisticRegression
doins test/logisticRegression/*
}
|