Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/guitarix/
Date: Wed, 29 Jan 2020 14:29:36
Message-Id: 1580308166.bc8a1661e165a7be90cab0b71a97f028f89301de.fordfrog@gentoo
1 commit: bc8a1661e165a7be90cab0b71a97f028f89301de
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jan 29 14:29:12 2020 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Wed Jan 29 14:29:26 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc8a1661
7
8 media-sound/guitarix: bump to 0.39.0
9
10 Package-Manager: Portage-2.3.86, Repoman-2.3.20
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 media-sound/guitarix/Manifest | 1 +
14 media-sound/guitarix/guitarix-0.39.0.ebuild | 76 +++++++++++++++++++++++++++++
15 2 files changed, 77 insertions(+)
16
17 diff --git a/media-sound/guitarix/Manifest b/media-sound/guitarix/Manifest
18 index 52c41818c5c..8f09d50afc4 100644
19 --- a/media-sound/guitarix/Manifest
20 +++ b/media-sound/guitarix/Manifest
21 @@ -1 +1,2 @@
22 DIST guitarix2-0.38.1.tar.xz 80768608 BLAKE2B fd745955d8b44da72c669e69c36294d4a2131f2b5868e7e254a0b33768852ba9fcf9302f2a7ebd962c8a6dc02a543f70574466c51341a371c9fb988989123e50 SHA512 54d08b4ed20b9df4c69d0c86e4d668c53fffde8919f5570f376cee903926bd01945169d177d0d45976569ea55b28f8dca7884ac6dfe2f063df6583467559c5b7
23 +DIST guitarix2-0.39.0.tar.xz 80769472 BLAKE2B a699545b7e4a9992ed11a17ee9f82170c1891a95a0543c3b847ff2a02ab4e6597c28cbb4708f85022b1e94f0184b6dc712c271729bdda07373101ea9e8a1323f SHA512 5eb799498385ab9aa865e3f5a7e79d77f7f62c9bd7ad6875ec32bdec85829ed5b84bed3b0eab786ce74088fe2e1d53080f70afcb25ab1ef8d8f78a676b4947df
24
25 diff --git a/media-sound/guitarix/guitarix-0.39.0.ebuild b/media-sound/guitarix/guitarix-0.39.0.ebuild
26 new file mode 100644
27 index 00000000000..275c99ec794
28 --- /dev/null
29 +++ b/media-sound/guitarix/guitarix-0.39.0.ebuild
30 @@ -0,0 +1,76 @@
31 +# Copyright 2019-2020 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +PYTHON_COMPAT=( python3_{6,7,8} )
36 +PYTHON_REQ_USE='threads(+)'
37 +
38 +inherit python-any-r1 waf-utils xdg
39 +
40 +MY_P="${PN}2-${PV}"
41 +
42 +DESCRIPTION="Virtual guitar amplifier for Linux"
43 +HOMEPAGE="http://guitarix.org/"
44 +SRC_URI="mirror://sourceforge/guitarix/guitarix/${MY_P}.tar.xz"
45 +
46 +LICENSE="GPL-2"
47 +SLOT="0"
48 +KEYWORDS="~amd64"
49 +IUSE="bluetooth debug lv2 nls +standalone zeroconf"
50 +REQUIRED_USE="|| ( lv2 standalone )"
51 +
52 +COMMON_DEPEND="dev-cpp/eigen:3
53 + dev-cpp/glibmm:2
54 + dev-cpp/gtkmm:2.4
55 + dev-libs/glib:2
56 + >=media-libs/libsndfile-1.0.17
57 + >=media-libs/zita-convolver-3:=
58 + media-libs/zita-resampler
59 + >=net-misc/curl-7.26.0
60 + >=sci-libs/fftw-3.1.2:3.0=
61 + x11-libs/gtk+:2
62 + lv2? ( media-libs/lv2 )
63 + standalone? (
64 + dev-libs/boost:=
65 + media-libs/liblrdf
66 + media-libs/lilv
67 + virtual/jack
68 + bluetooth? ( net-wireless/bluez )
69 + zeroconf? ( net-dns/avahi )
70 + )
71 +"
72 +# clearlooks gtk engine and roboto fonts are required for correct ui rendering
73 +RDEPEND="${COMMON_DEPEND}
74 + x11-themes/gtk-engines
75 + standalone? (
76 + media-fonts/roboto
77 + )
78 +"
79 +DEPEND="${COMMON_DEPEND}
80 + ${PYTHON_DEPS}
81 + virtual/pkgconfig
82 + nls? ( dev-util/intltool )
83 +"
84 +
85 +DOCS=( changelog README )
86 +
87 +src_configure() {
88 + local myconf=(
89 + --cxxflags-debug=""
90 + --cxxflags-release="-DNDEBUG"
91 + --ldflags="${LDFLAGS}"
92 + --enable-lfs
93 + --lib-dev
94 + --no-desktop-update
95 + --no-faust
96 + --no-ldconfig
97 + --shared-lib
98 + $(use_enable nls)
99 + $(usex bluetooth "" "--no-bluez")
100 + $(usex debug "--debug" "")
101 + $(usex lv2 "--lv2dir=${EPREFIX}/usr/$(get_libdir)/lv2" "--no-lv2 --no-lv2-gui")
102 + $(usex standalone "" "--no-standalone")
103 + $(usex zeroconf "" "--no-avahi")
104 + )
105 + waf-utils_src_configure "${myconf[@]}"
106 +}