Gentoo Archives: gentoo-commits

From: Alexis Ballier <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/qsampler/
Date: Mon, 26 Sep 2016 15:03:24
Message-Id: 1474902188.baba26b0396af78cadbb97d11ab3bb250ebec851.aballier@gentoo
1 commit: baba26b0396af78cadbb97d11ab3bb250ebec851
2 Author: Alexis Ballier <aballier <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 26 12:48:12 2016 +0000
4 Commit: Alexis Ballier <aballier <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 26 15:03:08 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baba26b0
7
8 media-sound/qsampler: bump to 0.4.1
9
10 Package-Manager: portage-2.3.1
11
12 media-sound/qsampler/Manifest | 1 +
13 media-sound/qsampler/qsampler-0.4.1.ebuild | 43 ++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/media-sound/qsampler/Manifest b/media-sound/qsampler/Manifest
17 index cc42d7d..a98d968 100644
18 --- a/media-sound/qsampler/Manifest
19 +++ b/media-sound/qsampler/Manifest
20 @@ -1 +1,2 @@
21 DIST qsampler-0.4.0.tar.gz 243065 SHA256 4f45e80dca00593ad7d9703125e300f98a6f4dce5216985b07f26f3f76ba80e4 SHA512 42c235396cf68bd811fa251fd6f112a835ce1769130823163fa1a0e517431922b941aa56bc88f22890e6d6326b38765a2f3ced8e67a78d3420600f85e827d467 WHIRLPOOL 330769bd6615ec9a909914e1f3559f5999bbfa9e3d9de85432c12656459e5956a2ea547737b7ef72d8545d2b91da710289ce83e2cff6a9fdd5aee28a5e208818
22 +DIST qsampler-0.4.1.tar.gz 243377 SHA256 2e2315b8b4c1c33512618a2a3c0d6dfdb5ee10914cc9eac5deb2f5c0d9bcb08d SHA512 ffa6e2feb11f9a96580fb1803b6ddb5c56ae475c1f04b5bfa94b1403c29ed0e14f8f60e9166ca166d5b478184c37337b0de0e098a54f74a90f951260d070ce14 WHIRLPOOL b4cfed615681d621b100b0f22525fbdedda8b5907888b16660959e324cbb7c91941c123bf7dc04625f7fdf50ca064a88513bc47dad1052a7b9778c2464e631ba
23
24 diff --git a/media-sound/qsampler/qsampler-0.4.1.ebuild b/media-sound/qsampler/qsampler-0.4.1.ebuild
25 new file mode 100644
26 index 00000000..73548e6
27 --- /dev/null
28 +++ b/media-sound/qsampler/qsampler-0.4.1.ebuild
29 @@ -0,0 +1,43 @@
30 +# Copyright 1999-2016 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +# $Id$
33 +
34 +EAPI=5
35 +inherit eutils qmake-utils
36 +
37 +DESCRIPTION="A graphical frontend to the LinuxSampler engine"
38 +HOMEPAGE="http://www.linuxsampler.org/"
39 +SRC_URI="mirror://sourceforge/${PN}/${PV}/${P}.tar.gz"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +KEYWORDS="~amd64 ~x86"
44 +IUSE="debug +libgig"
45 +
46 +DEPEND="media-libs/alsa-lib
47 + >=media-libs/liblscp-0.5.6:=
48 + x11-libs/libX11
49 + libgig? ( >=media-libs/libgig-3.3.0:= )
50 + dev-qt/qtcore:5
51 + dev-qt/qtgui:5
52 + dev-qt/qtx11extras:5
53 + dev-qt/qtwidgets:5"
54 +RDEPEND="${DEPEND}
55 + >=media-sound/linuxsampler-0.5"
56 +DEPEND="${DEPEND}
57 + dev-qt/linguist-tools:5"
58 +
59 +src_configure() {
60 + ac_qmake="$(qt5_get_bindir)/qmake" \
61 + econf $(use_enable debug) \
62 + $(use_enable libgig) \
63 + --disable-qt4
64 + cd "${S}/src"
65 + eqmake5 src.pro -o Makefile
66 +}
67 +
68 +src_install() {
69 + emake DESTDIR="${D}" install
70 + dodoc AUTHORS ChangeLog README TODO TRANSLATORS
71 + doman ${PN}.1
72 +}