From: Pacho Ramos Date: Sat, 23 Mar 2019 10:49:03 +0000 (+0100) Subject: media-sound/volumeicon: Ebuild fixes X-Git-Url: http://git.tremily.us/gitweb.cgi?a=commitdiff_plain;h=93b6cb723cd9de98f8df6cf4f1e75271c57e801f;p=gentoo.git media-sound/volumeicon: Ebuild fixes Thanks-to: Brian Evans Closes: https://bugs.gentoo.org/673846 Package-Manager: Portage-2.3.62, Repoman-2.3.12 Signed-off-by: Pacho Ramos --- diff --git a/media-sound/volumeicon/volumeicon-0.5.1-r1.ebuild b/media-sound/volumeicon/volumeicon-0.5.1-r1.ebuild new file mode 100644 index 000000000000..5f3deee45511 --- /dev/null +++ b/media-sound/volumeicon/volumeicon-0.5.1-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="A lightweight volume control that sits in your systray" +HOMEPAGE="http://nullwise.com/volumeicon.html" +SRC_URI="http://nullwise.com/${PN}/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="libnotify" + +RDEPEND=" + dev-libs/glib:2 + media-libs/alsa-lib + x11-libs/gtk+:3[X] + x11-libs/libX11 + libnotify? ( >=x11-libs/libnotify-0.7 ) +" +DEPEND="${RDEPEND} + dev-util/intltool + sys-devel/gettext + virtual/pkgconfig +" + +src_configure() { + # $(use_enable !alsa oss) fails wrt #419891, is likely only for OSS4 + econf $(use_enable libnotify notify) +}