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 C059D138334 for ; Mon, 7 Oct 2019 14:26:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DA9F3E0815; Mon, 7 Oct 2019 14:26:31 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 AF2A3E0815 for ; Mon, 7 Oct 2019 14:26:31 +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 202EE34BA02 for ; Mon, 7 Oct 2019 14:26:30 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB2577F8 for ; Mon, 7 Oct 2019 14:26:28 +0000 (UTC) From: "Craig Andrews" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Craig Andrews" Message-ID: <1570458383.be515c587fdcdb175c5cdcf22a8cabaeb8c65104.candrews@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/libprojectm/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/libprojectm/libprojectm-3.1.1_rc5-r1.ebuild media-libs/libprojectm/libprojectm-9999.ebuild X-VCS-Directories: media-libs/libprojectm/ X-VCS-Committer: candrews X-VCS-Committer-Name: Craig Andrews X-VCS-Revision: be515c587fdcdb175c5cdcf22a8cabaeb8c65104 X-VCS-Branch: master Date: Mon, 7 Oct 2019 14:26:28 +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: f2ac2e20-c769-4fe7-b85c-fe17f3647842 X-Archives-Hash: e801609dfb54968127c0d3954bca1e41 commit: be515c587fdcdb175c5cdcf22a8cabaeb8c65104 Author: Lars Wendler gentoo org> AuthorDate: Mon Oct 7 14:16:18 2019 +0000 Commit: Craig Andrews gentoo org> CommitDate: Mon Oct 7 14:26:23 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be515c58 media-libs/libprojectm: Moved virtual/pkgconfig to BDEPEND minor ebuild adjustments Package-Manager: Portage-2.3.76, Repoman-2.3.17 Signed-off-by: Lars Wendler gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/13197 Signed-off-by: Craig Andrews gentoo.org> .../libprojectm/libprojectm-3.1.1_rc5-r1.ebuild | 16 ++++++++++------ media-libs/libprojectm/libprojectm-9999.ebuild | 21 +++++++++++++-------- 2 files changed, 23 insertions(+), 14 deletions(-) diff --git a/media-libs/libprojectm/libprojectm-3.1.1_rc5-r1.ebuild b/media-libs/libprojectm/libprojectm-3.1.1_rc5-r1.ebuild index 70df39cf0c2..19885a4052b 100644 --- a/media-libs/libprojectm/libprojectm-3.1.1_rc5-r1.ebuild +++ b/media-libs/libprojectm/libprojectm-3.1.1_rc5-r1.ebuild @@ -35,8 +35,10 @@ RDEPEND="gles2? ( media-libs/mesa[gles2] ) sdl? ( >=media-libs/libsdl2-2.0.5 ) sys-libs/zlib" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig +" src_prepare() { default @@ -44,9 +46,11 @@ src_prepare() { } src_configure() { - econf \ - $(use_enable gles2 gles ) \ - $(use_enable qt5 qt ) \ - $(use_enable sdl ) \ + local myeconfargs=( + $(use_enable gles2 gles) + $(use_enable qt5 qt) + $(use_enable sdl) --enable-emscripten=no + ) + econf "${myeconfargs[@]}" } diff --git a/media-libs/libprojectm/libprojectm-9999.ebuild b/media-libs/libprojectm/libprojectm-9999.ebuild index 01b1d4b50af..19885a4052b 100644 --- a/media-libs/libprojectm/libprojectm-9999.ebuild +++ b/media-libs/libprojectm/libprojectm-9999.ebuild @@ -12,9 +12,10 @@ if [[ ${PV} == *9999 ]] ; then EGIT_REPO_URI="https://github.com/projectM-visualizer/projectm.git" inherit git-r3 else - SRC_URI="https://github.com/projectM-visualizer/projectm/archive/v${PV}.tar.gz -> ${P}.tar.gz" + MY_PV="${PV/_/-}" + SRC_URI="https://github.com/projectM-visualizer/projectm/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz" KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~sparc ~x86" - S=${WORKDIR}/projectm-${PV}/ + S=${WORKDIR}/projectm-${MY_PV}/ fi LICENSE="LGPL-2" @@ -34,8 +35,10 @@ RDEPEND="gles2? ( media-libs/mesa[gles2] ) sdl? ( >=media-libs/libsdl2-2.0.5 ) sys-libs/zlib" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND=" + virtual/pkgconfig +" src_prepare() { default @@ -43,9 +46,11 @@ src_prepare() { } src_configure() { - econf \ - $(use_enable gles2 gles ) \ - $(use_enable qt5 qt ) \ - $(use_enable sdl ) \ + local myeconfargs=( + $(use_enable gles2 gles) + $(use_enable qt5 qt) + $(use_enable sdl) --enable-emscripten=no + ) + econf "${myeconfargs[@]}" }