blob: 81f7327d4a827fd6f91eddaff26f1383e1e6bbe1 (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools flag-o-matic
DESCRIPTION="TSE3 Sequencer library"
HOMEPAGE="https://TSE3.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
mirror://gentoo/${P}-awe_voice.h.tbz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc sparc x86"
IUSE="alsa oss"
RDEPEND="alsa? ( media-libs/alsa-lib )"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${PN}-0.2.7-size_t-64bit.patch"
"${FILESDIR}/${PN}-0.2.7-gcc4.patch"
"${FILESDIR}/${P}-parallelmake.patch"
"${FILESDIR}/${P}+gcc-4.3.patch"
)
src_prepare() {
default
mv configure.in configure.ac || die "Moving configure.in -> .ac failed"
if use oss; then
cp "${WORKDIR}"/awe_voice.h src/ || die "copy failed"
append-cppflags -DHAVE_AWE_VOICE_H
fi
eautoreconf
}
src_configure() {
local myconf
use alsa || myconf="${myconf} --without-alsa"
use oss || myconf="${myconf} --without-oss"
econf \
--without-doc-install \
--without-aRts \
${myconf}
}
src_install() {
HTML_DOCS=( doc/*.{html,gif,png} )
default
find "${ED}" -type f -name '*.la' -delete || die
dodoc doc/History
}
|