media-sound/ncmpc: Drop old
authorPacho Ramos <pacho@gentoo.org>
Sun, 28 Apr 2019 22:39:06 +0000 (00:39 +0200)
committerPacho Ramos <pacho@gentoo.org>
Sun, 28 Apr 2019 22:39:06 +0000 (00:39 +0200)
Package-Manager: Portage-2.3.64, Repoman-2.3.12
Signed-off-by: Pacho Ramos <pacho@gentoo.org>
media-sound/ncmpc/Manifest
media-sound/ncmpc/metadata.xml
media-sound/ncmpc/ncmpc-0.31.ebuild [deleted file]

index d8fd186e008cce0a57a2339c663eb9aa675fa915..75828bf67e374346365a6ee1ebb563950a06ebac 100644 (file)
@@ -1,2 +1 @@
-DIST ncmpc-0.31.tar.xz 249816 BLAKE2B c9c42fc1ba5cb79cab9a9cc86831ba8ca82bb57981885be81b218d57f529ac7ca9adfbb0de1e0bc7dca8215ecf5fdae1481b73ff6d0dfb69c2020390d0c6a1a2 SHA512 0d3fed08f54afd9aef6342928a3f3b63a973d86ec6510f54c59271316aad856cd1a493e193f676971d90c40ef26486789e8580f2df528bd031251265c48a5eac
 DIST ncmpc-0.33.tar.xz 226344 BLAKE2B d52fdcb17adda1d3d61645715029552804edbf8ed95d2f19e0a25ba11f66cf0e7921748aebceb63e8e32b8d31fbc2d387dfbed6bd5c6a735d5ffa4b17d9b4fa3 SHA512 47730003c9a8ad5b6e682de4b4d3c8882d3266659fcd73ea131d1bba3d6b4d9ac66bb1a3522d63cb238ca9e22d8035907b9d7621a0b5106763770b17325f53b9
index f4eb96c015fc3804b7a36d422b0c946b0880f263..43e440230e03681d8403c67719d261c6af71c817 100644 (file)
@@ -6,7 +6,6 @@
                <name>Gentoo Sound project</name>
        </maintainer>
        <use>
-               <flag name="artist-screen">Enable artist screen</flag>
                <flag name="async-connect">Enable asynchronous connect</flag>
                <flag name="chat-screen">Enable the chat screen</flag>
                <flag name="help-screen">Enable the help screen</flag>
@@ -17,7 +16,6 @@
                <flag name="outputs-screen">Enable the outputs screen</flag>
                <flag name="search-screen">Enable search screen</flag>
                <flag name="song-screen">Enable song viewer screen</flag>
-               <flag name="tcp">Enable TCP support</flag>
        </use>
        <upstream>
                <remote-id type="github">MusicPlayerDaemon/ncmpc</remote-id>
diff --git a/media-sound/ncmpc/ncmpc-0.31.ebuild b/media-sound/ncmpc/ncmpc-0.31.ebuild
deleted file mode 100644 (file)
index 6476c05..0000000
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit meson
-
-DESCRIPTION="A ncurses client for the Music Player Daemon (MPD)"
-HOMEPAGE="https://www.musicpd.org/clients/ncmpc/ https://github.com/MusicPlayerDaemon/ncmpc"
-SRC_URI="http://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~hppa ppc ppc64 ~sparc x86"
-IUSE="+artist-screen async-connect chat-screen doc +help-screen key-screen lirc lyrics-screen outputs-screen search-screen +song-screen +mouse nls tcp"
-
-RDEPEND="
-       dev-libs/glib:2
-       media-libs/libmpdclient
-       sys-libs/ncurses:0=[unicode]
-       lirc? ( app-misc/lirc )
-"
-
-DEPEND="
-       ${RDEPEND}
-       doc? (
-               app-doc/doxygen
-               dev-python/sphinx
-       )
-       virtual/pkgconfig
-"
-
-DOCS=( doc/. AUTHORS README.rst )
-
-src_prepare() {
-       default
-       sed -i -e '/'-Wl,--gc-sections'./d' meson.build || die "sed failed"
-}
-
-src_configure() {
-       local emesonargs=(
-               -Dcurses=ncursesw
-               -Dcolors=true
-               -Dmini=false
-               -Dlyrics_plugin_dir="${EPREFIX}/usr/$(get_libdir)/ncmpc/lyrics"
-               -Dartist_screen=$(usex artist-screen true false)
-               -Dasync_connect=$(usex async-connect true false)
-               -Dchat_screen=$(usex chat-screen true false)
-               -Ddocumentation=$(usex doc true false)
-               -Dhelp_screen=$(usex help-screen true false)
-               -Dkey_screen=$(usex key-screen true false)
-               -Dlyrics_screen=$(usex lyrics-screen true false)
-               -Doutputs_screen=$(usex outputs-screen true false)
-               -Dsearch_screen=$(usex search-screen true false)
-               -Dsong_screen=$(usex song-screen true false)
-               -Dlocale=$(usex nls true false)
-               -Dmultibyte=$(usex nls true false)
-               -Dnls=$(usex nls true false)
-               -Dlirc=$(usex lirc true false)
-               -Dmouse=$(usex mouse true false)
-               -Dtcp=$(usex tcp true false)
-               )
-       meson_src_configure
-}