Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/amsynth/
Date: Sun, 10 Mar 2019 16:42:15
Message-Id: 1552236108.a166ad1353809d90246f8c1ae490eedd09315bd1.asturm@gentoo
1 commit: a166ad1353809d90246f8c1ae490eedd09315bd1
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 10 14:46:34 2019 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 10 16:41:48 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a166ad13
7
8 media-sound/amsynth: 1.8.0 version bump, EAPI-7 bump
9
10 Package-Manager: Portage-2.3.62, Repoman-2.3.12
11 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
12
13 media-sound/amsynth/Manifest | 1 +
14 media-sound/amsynth/amsynth-1.8.0.ebuild | 47 ++++++++++++++++++++++++++++++++
15 2 files changed, 48 insertions(+)
16
17 diff --git a/media-sound/amsynth/Manifest b/media-sound/amsynth/Manifest
18 index 4c9438b1a32..8b08ba29be1 100644
19 --- a/media-sound/amsynth/Manifest
20 +++ b/media-sound/amsynth/Manifest
21 @@ -1,2 +1,3 @@
22 DIST amsynth-1.5.1.tar.gz 1297131 BLAKE2B 175c008cd4d7bb45234fa22a31132bcd144df98a3dba34fba3a834ffc8623f52c76b412b3b784cb83ee25d12a8762f62bea8e3488b76039ae64e6a39c4404dbe SHA512 5f1551f9d1398a97738ac6f764f169d8cdd55e94464438adb226d1284fe8845e190fe5dd7a740b33972c1bbe76aa2d60467b7a663ec6717bb9fac75e5aac62d1
23 DIST amsynth-1.7.1.tar.gz 1409439 BLAKE2B 80fbd2c56b307cb7defce46e2dafe72ce1a56222314faaec9b2d16be9f4412869e377a8cea97d20803eb668b259f2110179607b4148acb8ba7d5e0ef1bb5b14b SHA512 ad5eff805f3ad30a7cc9f3933bbe82b99c670c669c0c405d5045a410afc75cdc0d692856e73ccf870d3ca66e0997a81a5c35baf57b33bb6012f19056cff725c9
24 +DIST amsynth-1.8.0.tar.bz2 1170068 BLAKE2B 0b570efe1db69bba04215055147792a9635bc086749ca7d70b5b3f8bc16613310591802c6cdabfd83009bda2c3b109b17ccc9d4ace7681614bed8c42c5f84f8d SHA512 a47489b103dbdd1cb2233d8629acfda2a1d26ac1f7ea5b8c4e7925676842cac21758ca94b50894e71426517bd826e9a9b6fd26800516054e24d62f7cbce4f0f9
25
26 diff --git a/media-sound/amsynth/amsynth-1.8.0.ebuild b/media-sound/amsynth/amsynth-1.8.0.ebuild
27 new file mode 100644
28 index 00000000000..6d3bfcd5b48
29 --- /dev/null
30 +++ b/media-sound/amsynth/amsynth-1.8.0.ebuild
31 @@ -0,0 +1,47 @@
32 +# Copyright 1999-2019 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=7
36 +
37 +inherit flag-o-matic
38 +
39 +DESCRIPTION="Virtual analogue synthesizer"
40 +HOMEPAGE="https://github.com/amsynth/amsynth"
41 +SRC_URI="https://github.com/${PN}/${PN}/releases/download/release-${PV}/${P}.tar.bz2"
42 +
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~ppc ~x86"
46 +IUSE="alsa dssi jack lash oss sndfile"
47 +
48 +BDEPEND="
49 + virtual/pkgconfig
50 +"
51 +RDEPEND="
52 + alsa? (
53 + media-libs/alsa-lib:=
54 + media-sound/alsa-utils
55 + )
56 + dssi? (
57 + media-libs/dssi:=
58 + media-libs/liblo:=
59 + >=x11-libs/gtk+-2.20:2
60 + )
61 + jack? ( virtual/jack )
62 + lash? ( media-sound/lash )
63 + sndfile? ( >=media-libs/libsndfile-1:= )
64 +"
65 +DEPEND="${RDEPEND}
66 + oss? ( virtual/os-headers )
67 +"
68 +
69 +src_configure() {
70 + append-cxxflags -std=c++11
71 + econf \
72 + $(use_with oss) \
73 + $(use_with alsa) \
74 + $(use_with jack) \
75 + $(use_with lash) \
76 + $(use_with sndfile) \
77 + $(use_with dssi)
78 +}