commit: dd369d1c2f6ac3ff37db2f80df3ee4cd70ef1456
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 5 11:39:21 2025 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Fri Sep 5 17:57:55 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd369d1c
media-sound/pnmixer: drop 0.7.2-r2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-sound/pnmixer/pnmixer-0.7.2-r2.ebuild | 50 -----------------------------
1 file changed, 50 deletions(-)
diff --git a/media-sound/pnmixer/pnmixer-0.7.2-r2.ebuild
b/media-sound/pnmixer/pnmixer-0.7.2-r2.ebuild
deleted file mode 100644
index 850af4a3e16e..000000000000
--- a/media-sound/pnmixer/pnmixer-0.7.2-r2.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_P="${PN}-v${PV}"
-inherit cmake xdg
-
-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"
-S="${WORKDIR}/${MY_P}"
-
-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[X]
- x11-libs/libX11
- libnotify? ( x11-libs/libnotify )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- doc? (
- app-text/doxygen
- media-gfx/graphviz
- )
- nls? ( sys-devel/gettext )
-"
-
-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
-}