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/seq24/
Date: Sun, 10 Mar 2019 16:42:16
Message-Id: 1552236108.8bd9f2c42e3d05450e99cd4e48755d254e23d1e9.asturm@gentoo
1 commit: 8bd9f2c42e3d05450e99cd4e48755d254e23d1e9
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 10 15:02:12 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=8bd9f2c4
7
8 media-sound/seq24: EAPI-7 bump, switch to virtual/jack, fix DESCRIPTION
9
10 Bug: https://bugs.gentoo.org/587326
11 Closes: https://bugs.gentoo.org/645010
12 Package-Manager: Portage-2.3.62, Repoman-2.3.12
13 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
14
15 media-sound/seq24/seq24-0.9.3-r1.ebuild | 41 +++++++++++++++++++++++++++++++++
16 1 file changed, 41 insertions(+)
17
18 diff --git a/media-sound/seq24/seq24-0.9.3-r1.ebuild b/media-sound/seq24/seq24-0.9.3-r1.ebuild
19 new file mode 100644
20 index 00000000000..ebb6c2c844a
21 --- /dev/null
22 +++ b/media-sound/seq24/seq24-0.9.3-r1.ebuild
23 @@ -0,0 +1,41 @@
24 +# Copyright 1999-2019 Gentoo Authors
25 +# Distributed under the terms of the GNU General Public License v2
26 +
27 +EAPI=7
28 +
29 +inherit desktop
30 +
31 +DESCRIPTION="Loop based MIDI sequencer with focus on live performances"
32 +HOMEPAGE="https://edge.launchpad.net/seq24/"
33 +SRC_URI="https://edge.launchpad.net/seq24/trunk/${PV}/+download/${P}.tar.bz2"
34 +
35 +LICENSE="GPL-2"
36 +SLOT="0"
37 +KEYWORDS="~amd64 ~ppc ~x86"
38 +IUSE="jack lash"
39 +
40 +BDEPEND="
41 + virtual/pkgconfig
42 +"
43 +DEPEND="
44 + dev-cpp/gtkmm:2.4
45 + dev-libs/libsigc++:2
46 + media-libs/alsa-lib
47 + jack? ( virtual/jack )
48 + lash? ( media-sound/lash )
49 +"
50 +RDEPEND="${DEPEND}"
51 +
52 +DOCS=( AUTHORS ChangeLog README RTC SEQ24 )
53 +
54 +src_configure() {
55 + econf \
56 + $(use_enable jack) \
57 + $(use_enable lash)
58 +}
59 +
60 +src_install() {
61 + default
62 + newicon src/pixmaps/seq24_32.xpm seq24.xpm
63 + make_desktop_entry seq24
64 +}