summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMykyta Holubakha <hilobakho@gmail.com>2017-05-08 14:55:58 +0300
committerMichał Górny <mgorny@gentoo.org>2017-05-08 18:49:22 +0200
commitc5eb4f574fc04e925e9e53f1827cd24506312c19 (patch)
treef7cad4a86c96fa182810c0fc2c2e05fac8d8645c /media-sound/pms
parentmedia-sound/pms: version bump to 0.42_p20170508 (diff)
downloadgentoo-c5eb4f574fc04e925e9e53f1827cd24506312c19.tar.gz
gentoo-c5eb4f574fc04e925e9e53f1827cd24506312c19.tar.bz2
gentoo-c5eb4f574fc04e925e9e53f1827cd24506312c19.zip
media-sound/pms: drop old 0.42-r2
Closes: https://github.com/gentoo/gentoo/pull/4569
Diffstat (limited to 'media-sound/pms')
-rw-r--r--media-sound/pms/Manifest1
-rw-r--r--media-sound/pms/pms-0.42-r2.ebuild53
2 files changed, 0 insertions, 54 deletions
diff --git a/media-sound/pms/Manifest b/media-sound/pms/Manifest
index 54c723732f47..0075b59e05a2 100644
--- a/media-sound/pms/Manifest
+++ b/media-sound/pms/Manifest
@@ -1,2 +1 @@
-DIST pms-0.42.tar.gz 676147 SHA256 e0b57fb02edee153fcec43adcf88df2f15b36ceed446f01645cd770195c8eedc SHA512 2cfda707f17415b2e8207a0c9add83b652247c42680e478029a2c42dc0bc7987e1cb1dce844163446a783a046a43260e3d5d0e1a1a35a02b69b2c2c0d2fadfcf WHIRLPOOL 6bd5cfd38fe7b37be12c045c40cbcbebbb3af39f998a9e1210152c7f247366e5257bf2a919f83a76a181655ff7a0522e410c7d518db677db524a5a34b7feda8c
DIST pms-0.42_p20170508.tar.gz 140157 SHA256 a5453fe84421608cd2ebe0827e9c011259723a41e1eba1519eb3df83e4ade7f4 SHA512 686a5e265ebad418a153b9888cc213bbf8cca5aa2d398206848823105edac16e298431c288dc0a74adb23d327c75845cdec1680a6a2a2ae40bc7b41c55ca163c WHIRLPOOL 745e7a8bf61c06e35575ff62a22fa36b808db21b0f1500ecebd7ec830e968d708fb7ed0e813e98f52fa689f1cafcf6ade3da69e756cd7adffd5c64ad68c9baa0
diff --git a/media-sound/pms/pms-0.42-r2.ebuild b/media-sound/pms/pms-0.42-r2.ebuild
deleted file mode 100644
index 3b01d052260d..000000000000
--- a/media-sound/pms/pms-0.42-r2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
-HOMEPAGE="https://ambientsound.github.io/pms/"
-SRC_URI="https://github.com/ambientsound/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="regex"
-
-RDEPEND="
- sys-libs/ncurses:0=
- dev-libs/glib:2
- virtual/libintl
- regex? ( dev-libs/boost:= )
-"
-DEPEND="
- virtual/pkgconfig
- sys-devel/gettext
- ${RDEPEND}
-"
-
-DOCS=( AUTHORS README TODO )
-
-src_prepare() {
- # bug #424717
- sed -i -e "s:^CXXFLAGS +=:AM_CXXFLAGS =:g" Makefile.am || die 'sed on Makefile.am failed'
-
- # Compatibility with automake 1.14
- sed -i -e '/AM_INIT_AUTOMAKE/s/-Werror/subdir-objects/' configure.ac || die 'sed on configure.ac failed'
-
- # bug #351995
- sed -i -e '394s/BUFFER/ERRORSTR/' src/libmpdclient.c || die 'sed on libmpdclient.c failed'
-
- eapply_user
-
- eautoreconf
-}
-
-src_configure() {
- # fixes build with ncurses[tinfo], bug #526530
- append-cflags $($(tc-getPKG_CONFIG) --cflags ncursesw)
- append-libs $($(tc-getPKG_CONFIG) --libs ncursesw)
-
- econf \
- $(use_enable regex)
-}