diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2021-02-26 20:03:49 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2021-02-28 13:26:13 +0100 |
commit | 778f492d269a30b95d5d85222d96e005e518f087 (patch) | |
tree | a2cdbedb01103ae3231bec08f605853c07bc25e8 /media-sound/pnmixer/pnmixer-0.7.2-r1.ebuild | |
parent | media-sound/pamix: Drop 1.5 (diff) | |
download | gentoo-778f492d269a30b95d5d85222d96e005e518f087.tar.gz gentoo-778f492d269a30b95d5d85222d96e005e518f087.tar.bz2 gentoo-778f492d269a30b95d5d85222d96e005e518f087.zip |
media-sound/pnmixer: Various upstream fixes and port to EAPI-7
Package-Manager: Portage-3.0.15, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound/pnmixer/pnmixer-0.7.2-r1.ebuild')
-rw-r--r-- | media-sound/pnmixer/pnmixer-0.7.2-r1.ebuild | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/media-sound/pnmixer/pnmixer-0.7.2-r1.ebuild b/media-sound/pnmixer/pnmixer-0.7.2-r1.ebuild new file mode 100644 index 000000000000..4930d96eb601 --- /dev/null +++ b/media-sound/pnmixer/pnmixer-0.7.2-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +MY_P="${PN}-v${PV}" +inherit cmake xdg-utils + +DESCRIPTION="Volume mixer for the system tray" +HOMEPAGE="https://github.com/nicklan/pnmixer" +SRC_URI="https://github.com/nicklan/${PN}/releases/download/v${PV}/${MY_P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="doc libnotify nls" + +RDEPEND=" + dev-libs/glib:2 + media-libs/alsa-lib + x11-libs/gtk+:3 + x11-libs/libX11 + libnotify? ( x11-libs/libnotify ) +" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig + doc? ( + app-doc/doxygen + media-gfx/graphviz + ) + nls? ( sys-devel/gettext ) +" + +S="${WORKDIR}/${MY_P}" + +PATCHES=( + "${FILESDIR}/${P}-fix-assert-if-volume-gt-100.patch" + "${FILESDIR}/${P}-fix-possible-garbage-value.patch" + "${FILESDIR}/${P}-fix-possible-memleak.patch" +) + +src_configure() { + local mycmakeargs=( + -DBUILD_DOCUMENTATION="$(usex doc)" + -DWITH_LIBNOTIFY="$(usex libnotify)" + -DENABLE_NLS="$(usex nls)" + -DCMAKE_INSTALL_DOCDIR="share/doc/${PF}" + ) + cmake_src_configure +} + +pkg_postinst() { + xdg_icon_cache_update +} + +pkg_postrm() { + xdg_icon_cache_update +} |