diff options
author | Thomas Bracht Laumann Jespersen <t@laumann.xyz> | 2022-04-04 14:47:06 +0200 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-04-21 20:54:40 +0100 |
commit | 228f28b254c1e95bf96e37038d0ab17c5968576e (patch) | |
tree | e50f22912ba26b7ba96b3c79702b159b4223c597 /x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild | |
parent | x11-plugins/gkrellm-imonc: update EAPI 6 -> 8 (diff) | |
download | gentoo-228f28b254c1e95bf96e37038d0ab17c5968576e.tar.gz gentoo-228f28b254c1e95bf96e37038d0ab17c5968576e.tar.bz2 gentoo-228f28b254c1e95bf96e37038d0ab17c5968576e.zip |
x11-plugins/gkrellm-volume: update EAPI 6 -> 8
Signed-off-by: Thomas Bracht Laumann Jespersen <t@laumann.xyz>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild')
-rw-r--r-- | x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild new file mode 100644 index 000000000000..b3affa03f88b --- /dev/null +++ b/x11-plugins/gkrellm-volume/gkrellm-volume-2.1.13-r3.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 +inherit gkrellm-plugin toolchain-funcs + +DESCRIPTION="A mixer control plugin for gkrellm" +HOMEPAGE="http://gkrellm.luon.net/volume.php" +SRC_URI="http://gkrellm.luon.net/files/${P}.tar.gz" +S="${WORKDIR}/${PN}" + +LICENSE="GPL-2" +SLOT="2" +KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86" +IUSE="alsa" + +RDEPEND=" + app-admin/gkrellm:2[X] + alsa? ( media-libs/alsa-lib )" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}/${P}-reenable.patch" + "${FILESDIR}/${P}-makefile.patch" + "${FILESDIR}/${P}-r3-pkgconfig.patch" +) + +src_configure() { + PLUGIN_SO=( volume$(get_modname) ) + default +} + +src_compile() { + tc-export PKG_CONFIG + use alsa && local myconf="enable_alsa=1" + emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" ${myconf} +} |