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 0A391138334 for ; Sat, 10 Nov 2018 21:11:13 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3DF50E0D44; Sat, 10 Nov 2018 21:11:12 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 17B07E0D44 for ; Sat, 10 Nov 2018 21:11:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E9FD0335CEC for ; Sat, 10 Nov 2018 21:11:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A9A1E459 for ; Sat, 10 Nov 2018 21:11:08 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1541884262.f52ba3f9a363b6042f7d00751a1d64e65d4eab88.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libifp/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libifp/libifp-1.0.0.2.ebuild X-VCS-Directories: media-libs/libifp/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: f52ba3f9a363b6042f7d00751a1d64e65d4eab88 X-VCS-Branch: master Date: Sat, 10 Nov 2018 21:11:08 +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: 77975255-d456-4295-8e69-0497a9f003ad X-Archives-Hash: aa797b1002163bf6e19a80640df2533d commit: f52ba3f9a363b6042f7d00751a1d64e65d4eab88 Author: Mikle Kolyada gentoo org> AuthorDate: Sat Nov 10 21:10:35 2018 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sat Nov 10 21:11:02 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f52ba3f9 media-libs/libifp: Drop old Signed-off-by: Mikle Kolyada gentoo.org> Package-Manager: Portage-2.3.51, Repoman-2.3.11 media-libs/libifp/libifp-1.0.0.2.ebuild | 56 --------------------------------- 1 file changed, 56 deletions(-) diff --git a/media-libs/libifp/libifp-1.0.0.2.ebuild b/media-libs/libifp/libifp-1.0.0.2.ebuild deleted file mode 100644 index f79c97f24cc..00000000000 --- a/media-libs/libifp/libifp-1.0.0.2.ebuild +++ /dev/null @@ -1,56 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=2 - -DESCRIPTION="A general-purpose library for iRiver's iFP portable audio players" -HOMEPAGE="http://ifp-driver.sourceforge.net/libifp/" -SRC_URI="mirror://sourceforge/ifp-driver/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ~ia64 ppc ppc64 x86" -IUSE="doc examples static-libs" - -RDEPEND="virtual/libusb:0" -DEPEND="${RDEPEND} - doc? ( >=app-doc/doxygen-1.3.7 ) - sys-apps/sed" - -src_prepare() { - sed -i \ - -e '/CFLAGS=/s:-g -O2:${CFLAGS}:' \ - -e '/CXXFLAGS=/s:-g -O2:${CXXFLAGS}:' \ - configure || die -} - -src_configure() { - use doc || export have_doxygen=no - - econf \ - --disable-dependency-tracking \ - $(use_enable static-libs static) \ - $(use_enable examples) \ - --with-libusb \ - --without-kmodule -} - -src_test() { :; } # hardware dependant wrt #318597 - -src_install() { - emake DESTDIR="${D}" install || die - - find "${D}" -name '*.la' -exec rm -f {} + - - # clean /usr/bin after installation - # by moving examples to examples dir - if use examples; then - insinto /usr/share/${PN}/examples - doins "${S}"/examples/simple.c "${S}"/examples/ifpline.c - mv "${D}"/usr/bin/{simple,ifpline} "${D}"/usr/share/${PN}/examples - else - rm -f "${D}"/usr/bin/{simple,ifpline} - fi - - use doc && dodoc README ChangeLog TODO -}