diff --git a/media-sound/ncpamixer/Manifest b/media-sound/ncpamixer/Manifest deleted file mode 100644 index a757ccc05b..0000000000 --- a/media-sound/ncpamixer/Manifest +++ /dev/null @@ -1 +0,0 @@ -DIST ncpamixer-1.3.8.tar.gz 24514 BLAKE2B b7f4e10479f5aa18a0e7ddaa7e8b0c943c763a8d7e9d7422356236c5f45f3cb2be19f0e88da774a483c75db09517c7c7f74e09f7a5fa2c43dfc833883889fa31 SHA512 a50147861f0cabee40b24143f8e1e34290aa74622a46afa751352d691398ea87979a3a1e6c2f44cca8f02428135354b2b485f6fc21b388955a750155a1763cfb diff --git a/media-sound/ncpamixer/metadata.xml b/media-sound/ncpamixer/metadata.xml deleted file mode 100644 index 8c24a89f8e..0000000000 --- a/media-sound/ncpamixer/metadata.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - myrvogna@electrosphe.re - Octiabrina Terrien-Puig - - - fulhax/ncpamixer - - - Add ncurses wide characters support - - diff --git a/media-sound/ncpamixer/ncpamixer-1.3.8.ebuild b/media-sound/ncpamixer/ncpamixer-1.3.8.ebuild deleted file mode 100644 index 3aaf131cf0..0000000000 --- a/media-sound/ncpamixer/ncpamixer-1.3.8.ebuild +++ /dev/null @@ -1,47 +0,0 @@ -# Copyright 1999-2024 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -inherit cmake - -DESCRIPTION="A ncurses mixer for PulseAudio inspired by pavucontrol" -HOMEPAGE="https://github.com/fulhax/ncpamixer" -SRC_URI="https://github.com/fulhax/ncpamixer/archive/${PV}.tar.gz -> ${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64" -IUSE="+wide" - -DEPEND=" - media-libs/libpulse - sys-libs/ncurses:= -" -RDEPEND="${DEPEND}" -BDEPEND="virtual/pandoc" - -CMAKE_USE_DIR="${S}/src" - -src_prepare() { - sed -i "/-Werror/d" src/CMakeLists.txt || die - cmake_src_prepare -} - -src_configure() { - local mycmakeargs=( - -DBUILD_MANPAGES=OFF - -DUSE_WIDE="$(usex wide)" - ) - cmake_src_configure -} - -src_compile() { - cmake_src_compile - pandoc -s -t man src/man/ncpamixer.1.md -o ncpamixer.1 || die -} - -src_install() { - cmake_src_install - doman ncpamixer.1 -}