Gentoo Archives: gentoo-commits

From: Mikle Kolyada <zlogene@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/horgand/
Date: Thu, 26 Jul 2018 17:50:50
Message-Id: 1532627439.3766e6594f25373c0f470ca749379c94795863a6.zlogene@gentoo
1 commit: 3766e6594f25373c0f470ca749379c94795863a6
2 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 26 17:48:58 2018 +0000
4 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 26 17:50:39 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3766e659
7
8 media-sound/horgand: revision bump (EAPI=7)
9
10 Package-Manager: Portage-2.3.40, Repoman-2.3.9
11
12 media-sound/horgand/horgand-1.14-r1.ebuild | 42 ++++++++++++++++++++++++++++++
13 1 file changed, 42 insertions(+)
14
15 diff --git a/media-sound/horgand/horgand-1.14-r1.ebuild b/media-sound/horgand/horgand-1.14-r1.ebuild
16 new file mode 100644
17 index 00000000000..a02538b9c3e
18 --- /dev/null
19 +++ b/media-sound/horgand/horgand-1.14-r1.ebuild
20 @@ -0,0 +1,42 @@
21 +# Copyright 1999-2018 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=7
25 +
26 +inherit desktop toolchain-funcs
27 +
28 +DESCRIPTION="Opensource software organ"
29 +HOMEPAGE="http://horgand.berlios.de"
30 +#SRC_URI="mirror://berlios/${PN}/${P}.tar.gz"
31 +SRC_URI="mirror://gentoo/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +KEYWORDS="amd64 ~ppc sparc x86"
36 +IUSE=""
37 +
38 +RDEPEND="x11-libs/fltk:1
39 + x11-libs/libXpm
40 + media-libs/libsndfile
41 + media-libs/alsa-lib
42 + media-sound/alsa-utils
43 + media-sound/jack-audio-connection-kit"
44 +DEPEND="${RDEPEND}
45 + virtual/pkgconfig"
46 +
47 +src_prepare() {
48 + default
49 + eapply "${FILESDIR}"/${P}-overflow.patch
50 +}
51 +
52 +src_compile() {
53 + emake CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS} $(fltk-config --cxxflags) \
54 + $(pkg-config --cflags jack) $(pkg-config --cflags sndfile)"
55 +}
56 +
57 +src_install() {
58 + default
59 + doman man/${PN}.1
60 + newicon src/${PN}128.xpm ${PN}.xpm
61 + make_desktop_entry ${PN} Horgand ${PN}
62 +}