Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/gkrellmss/
Date: Wed, 26 Jul 2017 11:34:57
Message-Id: 1501068865.c8c9e40e6de74a81edb5828dd9dd445d1d901765.pacho@gentoo
1 commit: c8c9e40e6de74a81edb5828dd9dd445d1d901765
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 26 10:55:42 2017 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 26 11:34:25 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8c9e40e
7
8 x11-plugins/gkrellmss: Fix dependency on gkrellm[X]
9
10 Package-Manager: Portage-2.3.6, Repoman-2.3.2
11
12 x11-plugins/gkrellmss/gkrellmss-2.6-r4.ebuild | 31 +++++++++++++++++++++++++++
13 1 file changed, 31 insertions(+)
14
15 diff --git a/x11-plugins/gkrellmss/gkrellmss-2.6-r4.ebuild b/x11-plugins/gkrellmss/gkrellmss-2.6-r4.ebuild
16 new file mode 100644
17 index 00000000000..d18a72ab12e
18 --- /dev/null
19 +++ b/x11-plugins/gkrellmss/gkrellmss-2.6-r4.ebuild
20 @@ -0,0 +1,31 @@
21 +# Copyright 1999-2017 Gentoo Foundation
22 +# Distributed under the terms of the GNU General Public License v2
23 +
24 +EAPI=6
25 +inherit gkrellm-plugin
26 +
27 +DESCRIPTION="A plugin for GKrellM2 that has a VU meter and a sound chart"
28 +HOMEPAGE="http://members.dslextreme.com/users/billw/gkrellmss/gkrellmss.html"
29 +SRC_URI="http://web.wt.net/~billw/gkrellmss/${P}.tar.gz"
30 +
31 +LICENSE="GPL-2"
32 +SLOT="0"
33 +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86"
34 +IUSE="nls"
35 +
36 +RDEPEND="
37 + app-admin/gkrellm[X]
38 + media-libs/alsa-lib
39 + sci-libs/fftw:3.0=
40 +"
41 +DEPEND="${RDEPEND}"
42 +
43 +PLUGIN_SO="src/gkrellmss.so"
44 +PLUGIN_DOCS="Themes"
45 +
46 +PATCHES=( "${FILESDIR}/${P}-Respect-LDFLAGS.patch" )
47 +
48 +src_compile() {
49 + addpredict /dev/snd
50 + emake enable_nls=$(usex nls 1 0)
51 +}