blob: 310699533c3cffbe05f0d51fde52b6c02ff6fd3b (
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
PYTHON_COMPAT=( python3_{7..9} )
DISTUTILS_USE_SETUPTOOLS=no
DISTUTILS_OPTIONAL=yes
inherit distutils-r1 toolchain-funcs virtualx
DESCRIPTION="The Snack Sound Toolkit (Tcl)"
HOMEPAGE="http://www.speech.kth.se/snack/"
SRC_URI="http://www.speech.kth.se/snack/dist/${PN}${PV}.tar.gz"
LICENSE="GPL-2"
KEYWORDS="amd64 ~hppa ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
SLOT="0"
IUSE="alsa examples python vorbis"
RESTRICT="!test? ( test )"
DEPEND="
dev-lang/tcl:0=
dev-lang/tk:0=
alsa? ( media-libs/alsa-lib )
python? ( ${PYTHON_DEPS} )
vorbis? ( media-libs/libvorbis )"
RDEPEND="${DEPEND}"
REQUIRED_USE=${PYTHON_REQUIRED_USE}
S="${WORKDIR}/${PN}${PV}/unix"
PATCHES=(
"${FILESDIR}"/alsa-undef-sym.patch
"${FILESDIR}"/${P}-CVE-2012-6303-fix.patch
"${FILESDIR}"/${P}-debian-args.patch
"${FILESDIR}"/${P}-test.patch
"${FILESDIR}"/${PN}${PV}-seektell-fix.patch
"${FILESDIR}"/tcl-${P}-python3.patch
)
HTML_DOCS="${WORKDIR}/${PN}${PV}/doc/*"
src_prepare() {
# adds -install_name (soname on Darwin)
[[ ${CHOST} == *-darwin* ]] && PATCHES+=( "${FILESDIR}"/${P}-darwin.patch )
sed \
-e "s:ar cr:$(tc-getAR) cr:g" \
-e "s|-O|${CFLAGS}|g" \
-i Makefile.in || die
cd ..
default
sed \
-e 's|^\(#define roundf(.*\)|//\1|' \
-i generic/jkFormatMP3.c || die
rm tests/{play,record}.test || die
if use python; then
cd python
distutils-r1_src_prepare
fi
}
src_configure() {
local myconf=""
use alsa && myconf+=" --enable-alsa"
if use vorbis; then
myconf+=" --with-ogg-include="${EPREFIX}"/usr/include"
myconf+=" --with-ogg-lib="${EPREFIX}"/usr/$(get_libdir)"
fi
econf \
--libdir="${EPREFIX}"/usr/$(get_libdir) \
--includedir="${EPREFIX}"/usr/include \
--with-tcl="${EPREFIX}"/usr/$(get_libdir) \
--with-tk="${EPREFIX}"/usr/$(get_libdir) \
$myconf
if use python; then
cd ../python
distutils-r1_src_configure
fi
}
src_compile() {
default
if use python; then
cd ../python
distutils-r1_src_compile
fi
}
src_test() {
TCLLIBPATH=${S} virtx default | tee snack.testResult
grep -q FAILED snack.testResult && die
}
src_install() {
default
if use python ; then
cd "${S}"/../python || die
distutils-r1_src_install
fi
cd "${S}"/.. || die
if use examples ; then
docinto examples
sed -i -e 's/wish[0-9.]+/wish/g' demos/tcl/* || die
dodoc -r demos/tcl
use python && dodoc -r demos/python
fi
}
|