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 F3F14138335 for ; Mon, 22 Apr 2019 16:34:08 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D0AF5E0845; Mon, 22 Apr 2019 16:34:07 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 AEF5FE0845 for ; Mon, 22 Apr 2019 16:34:07 +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 CC39B342006 for ; Mon, 22 Apr 2019 16:34:05 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F37AA576 for ; Mon, 22 Apr 2019 16:34:03 +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: <1555950817.67996d65a5de7c2ec48cf2f24adbc5182a7567ef.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-text/libmwaw/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-text/libmwaw/libmwaw-9999.ebuild X-VCS-Directories: app-text/libmwaw/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 67996d65a5de7c2ec48cf2f24adbc5182a7567ef X-VCS-Branch: master Date: Mon, 22 Apr 2019 16:34:03 +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: 05e4a913-ea8a-48ac-beac-4fcaf07147e5 X-Archives-Hash: 5890223c93790261d4ad60d84f61c699 commit: 67996d65a5de7c2ec48cf2f24adbc5182a7567ef Author: Andreas Sturmlechner gentoo org> AuthorDate: Mon Apr 22 10:56:56 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Mon Apr 22 16:33:37 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67996d65 app-text/libmwaw: EAPI-7 bump Package-Manager: Portage-2.3.64, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> app-text/libmwaw/libmwaw-9999.ebuild | 41 +++++++++++++++++++----------------- 1 file changed, 22 insertions(+), 19 deletions(-) diff --git a/app-text/libmwaw/libmwaw-9999.ebuild b/app-text/libmwaw/libmwaw-9999.ebuild index 7dde090fa75..cc207bd575b 100644 --- a/app-text/libmwaw/libmwaw-9999.ebuild +++ b/app-text/libmwaw/libmwaw-9999.ebuild @@ -1,32 +1,33 @@ -# Copyright 1999-2018 Gentoo Foundation +# Copyright 1999-2019 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=7 -EGIT_REPO_URI="git://git.code.sf.net/p/libmwaw/libmwaw" -[[ ${PV} == 9999 ]] && inherit autotools git-r3 +if [[ ${PV} = 9999 ]]; then + EGIT_REPO_URI="https://git.code.sf.net/p/libmwaw/libmwaw" + inherit autotools git-r3 +else + SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" + KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86" +fi DESCRIPTION="Library parsing many pre-OSX MAC text formats" HOMEPAGE="https://sourceforge.net/p/libmwaw/wiki/Home/" -[[ ${PV} == 9999 ]] || SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz" LICENSE="LGPL-2.1" SLOT="0" - -[[ ${PV} == 9999 ]] || \ -KEYWORDS="~amd64 ~arm ~arm64 ~x86" - IUSE="doc static-libs tools" -RDEPEND=" - dev-libs/librevenge - sys-libs/zlib -" -DEPEND="${RDEPEND} +BDEPEND=" sys-devel/libtool virtual/pkgconfig doc? ( app-doc/doxygen ) " +DEPEND=" + dev-libs/librevenge + sys-libs/zlib +" +RDEPEND="${DEPEND}" src_prepare() { default @@ -35,12 +36,14 @@ src_prepare() { src_configure() { # zip is hard enabled as the zlib is dep on the rdeps anyway - econf \ - --enable-zip \ - --disable-werror \ - $(use_with doc docs) \ - $(use_enable static-libs static) \ + local myeconfargs=( + --enable-zip + --disable-werror + $(use_with doc docs) + $(use_enable static-libs static) $(use_enable tools) + ) + econf "${myeconfargs[@]}" } src_install() {