From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id E3496138330 for ; Thu, 25 Aug 2016 19:07:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 70666E0A84; Thu, 25 Aug 2016 19:07:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EB368E0A86 for ; Thu, 25 Aug 2016 19:07:19 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D224C340955 for ; Thu, 25 Aug 2016 19:07:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6ACA2469 for ; Thu, 25 Aug 2016 19:07:16 +0000 (UTC) From: "Kristian Fiskerstrand" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Kristian Fiskerstrand" Message-ID: <1472152005.f8c37ed6cb707f44a21df0c1561dba6b46dad064.k_f@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/pms/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/pms/pms-0.42.ebuild X-VCS-Directories: media-sound/pms/ X-VCS-Committer: k_f X-VCS-Committer-Name: Kristian Fiskerstrand X-VCS-Revision: f8c37ed6cb707f44a21df0c1561dba6b46dad064 X-VCS-Branch: master Date: Thu, 25 Aug 2016 19:07:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 2e369ff5-2c96-4af7-9947-4fd6669fdc16 X-Archives-Hash: bad4a7a41e117d324c2f1e0da2758df9 commit: f8c37ed6cb707f44a21df0c1561dba6b46dad064 Author: Mykyta Holubakha gmail com> AuthorDate: Tue Aug 16 17:14:10 2016 +0000 Commit: Kristian Fiskerstrand gentoo org> CommitDate: Thu Aug 25 19:06:45 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8c37ed6 media-sound/pms: dropped old 0.42 from the tree media-sound/pms/pms-0.42.ebuild | 45 ----------------------------------------- 1 file changed, 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 a6d0e14..00000000 --- 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 -}