blob: 2ee199d0ef8f40b080f4d7ba1d5bf7c44ba3055e (
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
|
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
DESCRIPTION="Collection of LV2 plugins"
HOMEPAGE="https://github.com/x42/x42-plugins"
if [[ ${PV} == *9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/x42/x42-plugins.git"
else
SRC_URI="http://gareus.org/misc/x42-plugins/${P}.tar.xz"
KEYWORDS="~amd64"
fi
LICENSE="GPL-2"
SLOT="0"
RESTRICT="mirror"
RDEPEND="dev-libs/glib
media-fonts/dejavu
media-libs/ftgl
media-libs/glu
media-libs/liblo
media-libs/libsamplerate
media-libs/libsndfile
media-libs/libltc
media-libs/lv2
media-libs/zita-convolver
sci-libs/fftw:3.0
virtual/jack
virtual/opengl
x11-libs/cairo[X]
x11-libs/pango
"
DEPEND="${RDEPEND}
sys-apps/help2man"
src_compile() {
emake CC="$(tc-getCC)" STRIP="#" FONTFILE="/usr/share/fonts/dejavu/DejaVuSans-Bold.ttf"
}
src_install() {
emake DESTDIR="${D}" PREFIX="/usr" LV2DIR="/usr/$(get_libdir)/lv2" install
}
|