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 5647113997D for ; Fri, 15 Nov 2019 02:33:06 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4700DE088A; Fri, 15 Nov 2019 02:33:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 8FC51E088A for ; Fri, 15 Nov 2019 02:33:03 +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 1958F34CE5C for ; Fri, 15 Nov 2019 02:33:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 67682779 for ; Fri, 15 Nov 2019 02:32:59 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1573785154.4cfea7152d78a0c8bfce83b6512cd7910dc2b2f7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libmpd/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libmpd/libmpd-11.8.17-r1.ebuild X-VCS-Directories: media-libs/libmpd/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 4cfea7152d78a0c8bfce83b6512cd7910dc2b2f7 X-VCS-Branch: master Date: Fri, 15 Nov 2019 02:32:59 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 960751f2-fec5-49e2-9177-bb8d5bf0ca38 X-Archives-Hash: f5f41741115bbcfd3ecddba180d58be2 commit: 4cfea7152d78a0c8bfce83b6512cd7910dc2b2f7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Nov 15 01:48:50 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Nov 15 02:32:34 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cfea715 media-libs/libmpd: EAPI-7 bump Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/libmpd/libmpd-11.8.17-r1.ebuild | 24 +++++++++++------------- 1 file changed, 11 insertions(+), 13 deletions(-) diff --git a/media-libs/libmpd/libmpd-11.8.17-r1.ebuild b/media-libs/libmpd/libmpd-11.8.17-r1.ebuild index 14ddf16e124..cd7942f7a70 100644 --- a/media-libs/libmpd/libmpd-11.8.17-r1.ebuild +++ b/media-libs/libmpd/libmpd-11.8.17-r1.ebuild @@ -1,12 +1,10 @@ -# Copyright 1999-2017 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=4 - -inherit eutils +EAPI=7 DESCRIPTION="A library handling connections to a MPD server" -HOMEPAGE="http://gmpc.wikia.com/wiki/Libmpd" +HOMEPAGE="https://gmpclient.org/" SRC_URI="http://download.sarine.nl/Programs/gmpc/11.8/${P}.tar.gz" LICENSE="GPL-2" @@ -14,14 +12,14 @@ SLOT="0" KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux" IUSE="doc static-libs" -RDEPEND=">=dev-libs/glib-2.16:2" -DEPEND="${RDEPEND} +BDEPEND=" virtual/pkgconfig - doc? ( app-doc/doxygen )" + doc? ( app-doc/doxygen ) +" +DEPEND=">=dev-libs/glib-2.16:2" +RDEPEND="${DEPEND}" -src_prepare() { - epatch "${FILESDIR}"/${P}-remove-strndup.patch -} +PATCHES=( "${FILESDIR}"/${P}-remove-strndup.patch ) src_configure() { econf \ @@ -35,8 +33,8 @@ src_compile() { } src_install() { + use doc && local HTML_DOCS=( doc/html/* ) default - use doc && dohtml -r doc/html/* - find "${ED}" -name "*.la" -exec rm -rf {} + || die + find "${D}" -name '*.la' -type f -delete || die rm "${ED}"/usr/share/doc/${PF}/{README,ChangeLog} || die }