blob: e1892d33fb6e4d518e766d15db0a77e4940f922b (
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
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs flag-o-matic desktop xdg
DESCRIPTION="A synthesised pipe organ emulator"
HOMEPAGE="http://kokkinizita.linuxaudio.org/linuxaudio/aeolus/index.html"
SRC_URI="http://kokkinizita.linuxaudio.org/linuxaudio/downloads/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
BDEPEND="virtual/pkgconfig"
CDEPEND="
dev-libs/libclthreads
media-libs/alsa-lib
>=media-libs/zita-alsa-pcmi-0.3
sys-libs/readline:0
virtual/jack
x11-libs/libclxclient
x11-libs/libX11
x11-libs/libXft
"
DEPEND="${CDEPEND}"
RDEPEND="
${CDEPEND}
media-libs/stops
"
DOCS=( README COPYING AUTHORS )
PATCHES=(
"${FILESDIR}"/${PN}-0.9.9-fix-Makefile.patch
)
src_compile() {
cd "${S}"/source || die "Failed to cd to source dir"
tc-export CXX
append-cppflags $($(tc-getPKG_CONFIG) --cflags xft)
emake PREFIX="${EPREFIX}/usr" LIBDIR="${EXPREFIX}/usr/$(get_libdir)"
}
src_install() {
default
cd "${S}"/source || die "Failed to cd to source dir"
emake PREFIX="${D}/usr" install
echo "-S ${EPREFIX}/usr/share/stops" > "${T}/aeolus.conf"
insinto /etc
doins "${T}/aeolus.conf"
make_desktop_entry aeolus Aeolus "" "AudioVideo"
}
|