summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2023-05-29 14:18:47 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2023-05-29 14:20:23 +0200
commitaadf4a888fde3d26c8fc3ac359cd582fde7a9778 (patch)
tree234b241c810eb6fab7d914914a5e648ffaab7c67 /media-sound/pamix
parentmedia-sound/pamix: EAPI 8 bump, switch to media-libs/libpulse (diff)
downloadgentoo-aadf4a888fde3d26c8fc3ac359cd582fde7a9778.tar.gz
gentoo-aadf4a888fde3d26c8fc3ac359cd582fde7a9778.tar.bz2
gentoo-aadf4a888fde3d26c8fc3ac359cd582fde7a9778.zip
media-sound/pamix: drop 1.6-r2
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'media-sound/pamix')
-rw-r--r--media-sound/pamix/pamix-1.6-r2.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/media-sound/pamix/pamix-1.6-r2.ebuild b/media-sound/pamix/pamix-1.6-r2.ebuild
deleted file mode 100644
index d0c727991818..000000000000
--- a/media-sound/pamix/pamix-1.6-r2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake
-
-if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI="https://github.com/patroclos/PAmix.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/patroclos/PAmix/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="amd64 x86"
- S="${WORKDIR}/PAmix-${PV}"
-fi
-
-DESCRIPTION="A PulseAudio NCurses mixer"
-HOMEPAGE="https://github.com/patroclos/PAmix"
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+unicode"
-
-RDEPEND="
- media-sound/pulseaudio
- sys-libs/ncurses:=[unicode(+)?]
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
-"
-
-PATCHES=(
- "${FILESDIR}/${P}-ncurses_pkgconfig.patch"
- "${FILESDIR}/${P}-xdgconfigdir.patch"
- "${FILESDIR}/${P}-fix-output-scrolling.patch"
- "${FILESDIR}/${P}-fix-ncurses-freezing.patch"
-)
-
-src_prepare() {
- cmake_src_prepare
- if [[ ${PV} != 9999 ]] ; then
- sed -e "/^include(CMakeGitDefines.cmake)/d" -i CMakeLists.txt || die
- fi
-}
-
-src_configure() {
- local mycmakeargs=(
- -DWITH_UNICODE="$(usex unicode)"
- )
- [[ ${PV} != 9999 ]] && mycmakeargs+=( -DGIT_VERSION=${PV} )
- cmake_src_configure
-}