summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJakov Smolić <jsmolic@gentoo.org>2022-12-20 17:18:47 +0100
committerJakov Smolić <jsmolic@gentoo.org>2022-12-20 17:30:18 +0100
commit12a19da8deeeaf40b8f9053572806ad581f253e0 (patch)
tree99da84d43e4311c6da931274ba5036dd013ce251 /media-sound
parentdev-php/agavi: treeclean (diff)
downloadgentoo-12a19da8deeeaf40b8f9053572806ad581f253e0.tar.gz
gentoo-12a19da8deeeaf40b8f9053572806ad581f253e0.tar.bz2
gentoo-12a19da8deeeaf40b8f9053572806ad581f253e0.zip
media-sound/umix: treeclean
Closes: https://bugs.gentoo.org/726076 Signed-off-by: Jakov Smolić <jsmolic@gentoo.org>
Diffstat (limited to 'media-sound')
-rw-r--r--media-sound/umix/Manifest1
-rw-r--r--media-sound/umix/files/umix-1.0.2-tinfo.patch18
-rw-r--r--media-sound/umix/metadata.xml11
-rw-r--r--media-sound/umix/umix-1.0.2-r1.ebuild34
4 files changed, 0 insertions, 64 deletions
diff --git a/media-sound/umix/Manifest b/media-sound/umix/Manifest
deleted file mode 100644
index ff09605f4d77..000000000000
--- a/media-sound/umix/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST umix-1.0.2.tar.gz 225866 BLAKE2B 8ab2b3246440fcab64edea366dafd5d8f734c42483fd78410a1f884c2b046a27fdb6959023d6c537900c64409ad0f606e7d2c2e91f23bdd03dda61940ba7d29b SHA512 9e59a26c0b6cd60bbcfa715694ed58e023c119840080ccb46d9e6b17a9613fd42c1346233a5185d02ece77e3f3e456e18be25573fd34e2f265c5b0b3dc593468
diff --git a/media-sound/umix/files/umix-1.0.2-tinfo.patch b/media-sound/umix/files/umix-1.0.2-tinfo.patch
deleted file mode 100644
index 65c0d7158375..000000000000
--- a/media-sound/umix/files/umix-1.0.2-tinfo.patch
+++ /dev/null
@@ -1,18 +0,0 @@
---- a/configure.in
-+++ b/configure.in
-@@ -89,6 +89,7 @@
- then
- AC_CHECK_LIB(curses, initscr, NCURSLIB="curses", NCURSLIB="")
- fi
-+ AC_SEARCH_LIBS(stdscr,tinfo)
- fi
- if test "x$NCURSLIB" != "x"
- then
-@@ -97,6 +98,7 @@
- AC_DEFINE(HAVE_NCURSES)
- LIBS="$LIBS -l$NCURSLIB"
- umix_CONDOBJS="$umix_CONDOBJS ui_ncurses.o"
-+ AC_SEARCH_LIBS(stdscr,tinfo)
- else
- have_ncurses="no"
- fi
diff --git a/media-sound/umix/metadata.xml b/media-sound/umix/metadata.xml
deleted file mode 100644
index 861c10998372..000000000000
--- a/media-sound/umix/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sound@gentoo.org</email>
- <name>Gentoo Sound project</name>
- </maintainer>
- <upstream>
- <remote-id type="sourceforge">umix</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/media-sound/umix/umix-1.0.2-r1.ebuild b/media-sound/umix/umix-1.0.2-r1.ebuild
deleted file mode 100644
index dd633418564d..000000000000
--- a/media-sound/umix/umix-1.0.2-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Program for adjusting soundcard volumes"
-HOMEPAGE="http://umix.sourceforge.net/"
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~alpha amd64 ppc sparc x86"
-IUSE="ncurses oss"
-
-DEPEND="ncurses? ( >=sys-libs/ncurses-5.2:= )"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS ChangeLog NEWS README TODO )
-
-PATCHES=( "${FILESDIR}"/${P}-tinfo.patch )
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- local myconf
- use ncurses || myconf="--disable-ncurses"
- use oss || myconf="${myconf} --disable-oss"
- econf ${myconf}
-}