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 64B32138350 for ; Sun, 9 Feb 2020 18:50:26 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E9B83E085A; Sun, 9 Feb 2020 18:50:23 +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 CB852E085A for ; Sun, 9 Feb 2020 18:50:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 5B77E34E8F3 for ; Sun, 9 Feb 2020 18:50:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C2FB3132 for ; Sun, 9 Feb 2020 18:50:18 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1581274182.7f5daadd16a00dc0e6cad8263d38e872c7136881.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-libs/libmrss/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-libs/libmrss/libmrss-0.19.2.ebuild X-VCS-Directories: net-libs/libmrss/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 7f5daadd16a00dc0e6cad8263d38e872c7136881 X-VCS-Branch: master Date: Sun, 9 Feb 2020 18:50:18 +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: ddd9294d-a14f-4245-8d12-664920e908ff X-Archives-Hash: feded170e85e68b45152e2e1787bce61 commit: 7f5daadd16a00dc0e6cad8263d38e872c7136881 Author: David Seifert gentoo org> AuthorDate: Sun Feb 9 18:49:42 2020 +0000 Commit: David Seifert gentoo org> CommitDate: Sun Feb 9 18:49:42 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f5daadd net-libs/libmrss: Port to EAPI 7 Package-Manager: Portage-2.3.88, Repoman-2.3.20 Signed-off-by: David Seifert gentoo.org> net-libs/libmrss/libmrss-0.19.2.ebuild | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/net-libs/libmrss/libmrss-0.19.2.ebuild b/net-libs/libmrss/libmrss-0.19.2.ebuild index e57dc41abca..f4ce0a9497b 100644 --- a/net-libs/libmrss/libmrss-0.19.2.ebuild +++ b/net-libs/libmrss/libmrss-0.19.2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="4" +EAPI=7 DESCRIPTION="A C-library for parsing and writing RSS 0.91/0.92/1.0/2.0 files or streams" HOMEPAGE="http://www.autistici.org/bakunin/libmrss/doc/" @@ -10,27 +10,31 @@ SRC_URI="http://www.autistici.org/bakunin/${PN}/${P}.tar.gz" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 ~arm ~mips ppc x86" -IUSE="doc examples static-libs" +IUSE="doc examples" -RDEPEND=">=net-libs/libnxml-0.18.0 +RDEPEND=" + net-libs/libnxml net-misc/curl" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" virtual/pkgconfig doc? ( app-doc/doxygen )" # TODO: php-bindings src_configure() { - econf \ - $(use_enable static-libs static) + econf --disable-static } src_compile() { - emake + default if use doc; then ebegin "Creating documentation" doxygen doxy.conf || die "generating docs failed" + # clean out doxygen gunk + rm doc/html/*.{md5,map} || die + HTML_DOCS=( doc/html/. ) eend 0 fi } @@ -38,14 +42,11 @@ src_compile() { src_install() { default - if use doc; then - dohtml doc/html/* - fi - if use examples; then - insinto /usr/share/doc/${PF}/test - doins test/*.c + docinto test + dodoc test/*.c fi - find "${D}" -name '*.la' -exec rm -f {} + + # no static archives + find "${D}" -name '*.la' -delete || die }