summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2022-06-13 17:42:53 +0100
committerSam James <sam@gentoo.org>2022-06-13 17:42:53 +0100
commit9d7568dae684dae390beb72aae33b12ce3c273ce (patch)
tree8a2bdad965e55e0c658ab455973c1ec45d86912f /media-sound/pms
parentmedia-sound/pms: fix build with GCC 12 (diff)
downloadgentoo-9d7568dae684dae390beb72aae33b12ce3c273ce.tar.gz
gentoo-9d7568dae684dae390beb72aae33b12ce3c273ce.tar.bz2
gentoo-9d7568dae684dae390beb72aae33b12ce3c273ce.zip
media-sound/pms: drop 9999
Package is abandoned per upstream. Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-sound/pms')
-rw-r--r--media-sound/pms/pms-9999.ebuild36
1 files changed, 0 insertions, 36 deletions
diff --git a/media-sound/pms/pms-9999.ebuild b/media-sound/pms/pms-9999.ebuild
deleted file mode 100644
index c1e5c9adb459..000000000000
--- a/media-sound/pms/pms-9999.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake git-r3
-
-DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
-HOMEPAGE="https://ambientsound.github.io/pms"
-
-EGIT_REPO_URI="https://github.com/ambientsound/pms.git"
-EGIT_BRANCH="0.42.x" # todo: package the golang version
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS=""
-IUSE="+regex doc"
-
-BDEPEND="
- virtual/pkgconfig
- doc? ( app-text/pandoc )
-"
-RDEPEND="
- sys-libs/ncurses:=[unicode(+)]
- media-libs/libmpdclient
-"
-DEPEND="${RDEPEND}"
-
-src_configure() {
- local mycmakeargs=(
- -DENABLE_DOC=$(usex doc)
- -DENABLE_REGEX=$(usex regex)
- )
-
- cmake_src_configure
-}