Gentoo Archives: gentoo-commits

From: Kristian Fiskerstrand <k_f@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/
Date: Thu, 25 Aug 2016 19:07:22
Message-Id: 1472152005.f8c37ed6cb707f44a21df0c1561dba6b46dad064.k_f@gentoo
1 commit: f8c37ed6cb707f44a21df0c1561dba6b46dad064
2 Author: Mykyta Holubakha <hilobakho <AT> gmail <DOT> com>
3 AuthorDate: Tue Aug 16 17:14:10 2016 +0000
4 Commit: Kristian Fiskerstrand <k_f <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 25 19:06:45 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8c37ed6
7
8 media-sound/pms: dropped old 0.42 from the tree
9
10 media-sound/pms/pms-0.42.ebuild | 45 -----------------------------------------
11 1 file changed, 45 deletions(-)
12
13 diff --git a/media-sound/pms/pms-0.42.ebuild b/media-sound/pms/pms-0.42.ebuild
14 deleted file mode 100644
15 index a6d0e14..00000000
16 --- a/media-sound/pms/pms-0.42.ebuild
17 +++ /dev/null
18 @@ -1,45 +0,0 @@
19 -# Copyright 1999-2012 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -# $Id$
22 -
23 -EAPI=2
24 -
25 -inherit autotools
26 -
27 -DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++"
28 -HOMEPAGE="http://pms.sourceforge.net/"
29 -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
30 -
31 -LICENSE="GPL-3"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~x86"
34 -IUSE="regex"
35 -
36 -RDEPEND="
37 - sys-libs/ncurses
38 - dev-libs/glib:2
39 - regex? ( >=dev-libs/boost-1.36 )
40 -"
41 -DEPEND="
42 - virtual/pkgconfig
43 - ${RDEPEND}
44 -"
45 -
46 -src_prepare() {
47 - # bug #424717
48 - sed -i "s:^CXXFLAGS +=:AM_CXXFLAGS =:g" Makefile.am || die "sed failed"
49 -
50 - eautoreconf
51 -}
52 -
53 -src_configure() {
54 - econf \
55 - $(use_enable regex) ||
56 - die "configure failed"
57 -}
58 -
59 -src_install() {
60 - emake DESTDIR="${D}" install || die "installation failed"
61 -
62 - dodoc AUTHORS README TODO
63 -}