blob: f40e4d764de0ba73a4250bfdff224b4d64a3e33e (
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
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
WX_GTK_VER=3.2-gtk3
inherit autotools wxwidgets toolchain-funcs desktop xdg
DESCRIPTION="Live looping sampler with immediate loop recording"
HOMEPAGE="https://sonosaurus.com/sooperlooper/index.html"
SRC_URI="https://sonosaurus.com/${PN}/${P/_p*}.tar.gz
mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV/_p*}~dfsg0-${PV/*_p}.debian.tar.xz
mirror://gentoo/${PN}-1.6.5-m4.tar.bz2
https://dev.gentoo.org/~pacho/${PN}/${PN}.png
"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE="wxwidgets"
RDEPEND="
>=media-libs/liblo-0.18
dev-libs/libsigc++:2
media-libs/libsndfile
media-libs/libsamplerate
dev-libs/libxml2:2
media-libs/rubberband
sci-libs/fftw:3.0=
virtual/jack
wxwidgets? ( x11-libs/wxGTK:${WX_GTK_VER} )
"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
S="${WORKDIR}/${P/_p*}"
DOCS=( OSC README )
src_prepare() {
default
# Debian patches
for p in $(<"${WORKDIR}"/debian/patches/series) ; do
eapply -p1 "${WORKDIR}/debian/patches/${p}"
done
cp -rf "${WORKDIR}"/aclocal "${S}" || die "copying aclocal failed"
AT_M4DIR="${S}"/aclocal eautoreconf
}
src_configure() {
use wxwidgets && setup-wxwidgets
econf \
$(use_with wxwidgets gui) \
--disable-optimize \
--with-wxconfig-path="${WX_CONFIG}"
}
src_compile() {
emake AR="$(tc-getAR)"
}
src_install() {
default
if use wxwidgets; then
make_desktop_entry /usr/bin/slgui SooperLooper
doicon "${DISTDIR}"/${PN}.png
fi
}
|