diff options
author | Mykyta Holubakha <hilobakho@gmail.com> | 2016-08-16 20:14:10 +0300 |
---|---|---|
committer | Kristian Fiskerstrand <k_f@gentoo.org> | 2016-08-25 21:06:45 +0200 |
commit | f8c37ed6cb707f44a21df0c1561dba6b46dad064 (patch) | |
tree | 872bde67d99ec74972c3efa4d6e8002f3f0f17f6 /media-sound/pms | |
parent | media-sound/pms-9999: match ncurses slot (diff) | |
download | gentoo-f8c37ed6cb707f44a21df0c1561dba6b46dad064.tar.gz gentoo-f8c37ed6cb707f44a21df0c1561dba6b46dad064.tar.bz2 gentoo-f8c37ed6cb707f44a21df0c1561dba6b46dad064.zip |
media-sound/pms: dropped old 0.42 from the tree
Diffstat (limited to 'media-sound/pms')
-rw-r--r-- | media-sound/pms/pms-0.42.ebuild | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/media-sound/pms/pms-0.42.ebuild b/media-sound/pms/pms-0.42.ebuild deleted file mode 100644 index a6d0e145873b..000000000000 --- a/media-sound/pms/pms-0.42.ebuild +++ /dev/null @@ -1,45 +0,0 @@ -# Copyright 1999-2012 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=2 - -inherit autotools - -DESCRIPTION="Practical Music Search: an open source ncurses client for mpd, written in C++" -HOMEPAGE="http://pms.sourceforge.net/" -SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="regex" - -RDEPEND=" - sys-libs/ncurses - dev-libs/glib:2 - regex? ( >=dev-libs/boost-1.36 ) -" -DEPEND=" - virtual/pkgconfig - ${RDEPEND} -" - -src_prepare() { - # bug #424717 - sed -i "s:^CXXFLAGS +=:AM_CXXFLAGS =:g" Makefile.am || die "sed failed" - - eautoreconf -} - -src_configure() { - econf \ - $(use_enable regex) || - die "configure failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "installation failed" - - dodoc AUTHORS README TODO -} |