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 B6DAC139694 for ; Fri, 2 Jun 2017 00:38:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2AD4FE0C44; Fri, 2 Jun 2017 00:38:48 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 09B22E0C39 for ; Fri, 2 Jun 2017 00:38:38 +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 3720B341789 for ; Fri, 2 Jun 2017 00:38:37 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 69B927478 for ; Fri, 2 Jun 2017 00:38:34 +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: <1496363871.437e6a845854a01780ee63dc6691a639a3609273.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-0.9.1.ebuild X-VCS-Directories: media-libs/phonon-vlc/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 437e6a845854a01780ee63dc6691a639a3609273 X-VCS-Branch: master Date: Fri, 2 Jun 2017 00:38:34 +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-Archives-Salt: 490cbfd1-c24d-4848-9097-e225ef61a29e X-Archives-Hash: 20c524400c5de7486c47550c40f8ff37 commit: 437e6a845854a01780ee63dc6691a639a3609273 Author: Andreas Sturmlechner gentoo org> AuthorDate: Fri Jun 2 00:27:00 2017 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Fri Jun 2 00:37:51 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=437e6a84 media-libs/phonon-vlc: Drop old Package-Manager: Portage-2.3.5, Repoman-2.3.1 media-libs/phonon-vlc/phonon-vlc-0.9.1.ebuild | 77 --------------------------- 1 file changed, 77 deletions(-) diff --git a/media-libs/phonon-vlc/phonon-vlc-0.9.1.ebuild b/media-libs/phonon-vlc/phonon-vlc-0.9.1.ebuild deleted file mode 100644 index 541f5da3c0d..00000000000 --- a/media-libs/phonon-vlc/phonon-vlc-0.9.1.ebuild +++ /dev/null @@ -1,77 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -MY_PN="phonon-backend-vlc" -MY_P="${MY_PN}-${PV}" - -if [[ ${PV} != *9999* ]]; then - SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/${MY_P}.tar.xz" - KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd" - S="${WORKDIR}/${MY_P}" -else - EGIT_REPO_URI=( "git://anongit.kde.org/${PN}" ) - inherit git-r3 -fi - -inherit cmake-utils multibuild - -DESCRIPTION="Phonon VLC backend" -HOMEPAGE="https://phonon.kde.org/" - -LICENSE="LGPL-2.1+ || ( LGPL-2.1 LGPL-3 )" -SLOT="0" -IUSE="debug +qt4 qt5" - -REQUIRED_USE="|| ( qt4 qt5 )" - -RDEPEND=" - >=media-libs/phonon-4.9.0[qt4=,qt5=] - >=media-video/vlc-2.0.1:=[dbus,ogg,vorbis] - qt4? ( - dev-qt/qtcore:4 - dev-qt/qtgui:4 - ) - qt5? ( - dev-qt/qtcore:5 - dev-qt/qtgui:5 - dev-qt/qtwidgets:5 - ) -" -DEPEND="${RDEPEND} - virtual/pkgconfig -" - -DOCS=( AUTHORS ) - -pkg_setup() { - MULTIBUILD_VARIANTS=( $(usev qt4) $(usev qt5) ) -} - -src_configure() { - myconfigure() { - local mycmakeargs=() - if [[ ${MULTIBUILD_VARIANT} = qt4 ]]; then - mycmakeargs+=( -DPHONON_BUILD_PHONON4QT5=OFF ) - fi - if [[ ${MULTIBUILD_VARIANT} = qt5 ]]; then - mycmakeargs+=( -DPHONON_BUILD_PHONON4QT5=ON ) - fi - cmake-utils_src_configure - } - - multibuild_foreach_variant myconfigure -} - -src_compile() { - multibuild_foreach_variant cmake-utils_src_compile -} - -src_test() { - multibuild_foreach_variant cmake-utils_src_test -} - -src_install() { - multibuild_foreach_variant cmake-utils_src_install -}