media-sound/ncpamixer: treeclean, moved to ::gentoo

Signed-off-by: David Roman <davidroman96@gmail.com>
This commit is contained in:
David Roman 2024-12-14 12:31:22 +01:00
parent 93676d42bf
commit f94efe26c0
No known key found for this signature in database
GPG Key ID: D7475BA08F7705F5
3 changed files with 0 additions and 62 deletions

View File

@ -1 +0,0 @@
DIST ncpamixer-1.3.8.tar.gz 24514 BLAKE2B b7f4e10479f5aa18a0e7ddaa7e8b0c943c763a8d7e9d7422356236c5f45f3cb2be19f0e88da774a483c75db09517c7c7f74e09f7a5fa2c43dfc833883889fa31 SHA512 a50147861f0cabee40b24143f8e1e34290aa74622a46afa751352d691398ea87979a3a1e6c2f44cca8f02428135354b2b485f6fc21b388955a750155a1763cfb

View File

@ -1,14 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="person">
<email>myrvogna@electrosphe.re</email>
<name>Octiabrina Terrien-Puig</name>
</maintainer>
<upstream>
<remote-id type="github">fulhax/ncpamixer</remote-id>
</upstream>
<use>
<flag name="wide">Add ncurses wide characters support</flag>
</use>
</pkgmetadata>

View File

@ -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
}