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 06052138334 for ; Thu, 8 Aug 2019 21:50:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1AE68E077C; Thu, 8 Aug 2019 21:50:20 +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 00741E077C for ; Thu, 8 Aug 2019 21:50:19 +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 B3BA03496D8 for ; Thu, 8 Aug 2019 21:50:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 92396741 for ; Thu, 8 Aug 2019 21:50: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: <1565300993.6452ebd475ab521f6005cad9ea40f13e8a9ce2d7.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/phonon-vlc/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/phonon-vlc/phonon-vlc-9999.ebuild X-VCS-Directories: media-libs/phonon-vlc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 6452ebd475ab521f6005cad9ea40f13e8a9ce2d7 X-VCS-Branch: master Date: Thu, 8 Aug 2019 21:50: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: 3ff0e321-bd21-4fac-a370-a8d085b5c20b X-Archives-Hash: c503babc8af93b2e97c46e2d251bd5b3 commit: 6452ebd475ab521f6005cad9ea40f13e8a9ce2d7 Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Aug 8 21:45:45 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Aug 8 21:49:53 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6452ebd4 media-libs/phonon-vlc: Switch to kde5.eclass This is now fully ported to ECM after upstream dropped Qt4 support. Update DESCRIPTION. Package-Manager: Portage-2.3.71, Repoman-2.3.17 Signed-off-by: Andreas Sturmlechner gentoo.org> media-libs/phonon-vlc/phonon-vlc-9999.ebuild | 25 +++++++------------------ 1 file changed, 7 insertions(+), 18 deletions(-) diff --git a/media-libs/phonon-vlc/phonon-vlc-9999.ebuild b/media-libs/phonon-vlc/phonon-vlc-9999.ebuild index e6d157cf774..890afef5f15 100644 --- a/media-libs/phonon-vlc/phonon-vlc-9999.ebuild +++ b/media-libs/phonon-vlc/phonon-vlc-9999.ebuild @@ -3,21 +3,16 @@ EAPI=7 -MY_PN="phonon-backend-vlc" +inherit kde5 -if [[ ${PV} != *9999* ]]; then - SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/${MY_PN}-${PV}.tar.xz" +DESCRIPTION="VLC backend for the Phonon multimedia library" +HOMEPAGE="https://phonon.kde.org/" + +if [[ ${KDE_BUILD_TYPE} = release ]]; then + SRC_URI="mirror://kde/stable/phonon/phonon-backend-vlc/${PV}/phonon-backend-vlc-${PV}.tar.xz" KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" -else - EGIT_REPO_URI=( "git://anongit.kde.org/${PN}" ) - inherit git-r3 fi -inherit cmake-utils - -DESCRIPTION="Phonon VLC backend" -HOMEPAGE="https://phonon.kde.org/" - LICENSE="LGPL-2.1+ || ( LGPL-2.1 LGPL-3 )" SLOT="0" IUSE="debug" @@ -26,15 +21,9 @@ BDEPEND=" virtual/pkgconfig " DEPEND=" - dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 - >=media-libs/phonon-4.10.0 + >=media-libs/phonon-4.10.60 media-video/vlc:=[dbus,ogg,vorbis] " RDEPEND="${DEPEND}" - -src_configure() { - local mycmakeargs=( -DPHONON_BUILD_PHONON4QT5=ON ) - cmake-utils_src_configure -}