* [gentoo-commits] proj/kde-sunset:master commit in: media-libs/phonon-vlc/
@ 2020-12-07 1:01 Andreas Sturmlechner
0 siblings, 0 replies; 2+ messages in thread
From: Andreas Sturmlechner @ 2020-12-07 1:01 UTC (permalink / raw
To: gentoo-commits
commit: e435cd83992dd4bd7c597a91961498c83407baec
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 6 02:00:22 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Dec 6 10:09:29 2020 +0000
URL: https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=e435cd83
media-libs/phonon-vlc: Import 0.10.2 (SLOT="0-qt4") from before last-rites
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-libs/phonon-vlc/phonon-vlc-0.10.2.ebuild | 33 ++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/media-libs/phonon-vlc/phonon-vlc-0.10.2.ebuild b/media-libs/phonon-vlc/phonon-vlc-0.10.2.ebuild
new file mode 100644
index 00000000..5123163b
--- /dev/null
+++ b/media-libs/phonon-vlc/phonon-vlc-0.10.2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="phonon-backend-vlc"
+inherit cmake
+
+DESCRIPTION="Phonon VLC backend"
+HOMEPAGE="https://community.kde.org/Phonon"
+SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/${MY_PN}-${PV}.tar.xz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="LGPL-2.1+ || ( LGPL-2.1 LGPL-3 )"
+SLOT="0-qt4"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
+IUSE="debug"
+
+DEPEND="
+ >=dev-qt/qtcore-4.8.7-r2:4
+ >=dev-qt/qtgui-4.8.7:4
+ media-libs/phonon:0-qt4
+ media-video/vlc:=[dbus,ogg,vorbis]
+"
+RDEPEND="${DEPEND}
+ !<media-libs/phonon-vlc-0.11:0
+"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+ local mycmakeargs=( -DPHONON_BUILD_PHONON4QT5=OFF )
+ cmake_src_configure
+}
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [gentoo-commits] proj/kde-sunset:master commit in: media-libs/phonon-vlc/
@ 2020-12-07 1:01 Andreas Sturmlechner
0 siblings, 0 replies; 2+ messages in thread
From: Andreas Sturmlechner @ 2020-12-07 1:01 UTC (permalink / raw
To: gentoo-commits
commit: aa1f7abc64dc9f781be1642eae220eec9f74fcd2
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Sun Dec 6 02:13:36 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Dec 6 10:09:29 2020 +0000
URL: https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=aa1f7abc
media-libs/phonon-vlc: Drop 0.9.1-r1
Package-Manager: Portage-3.0.11, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-libs/phonon-vlc/phonon-vlc-0.9.1-r1.ebuild | 70 ------------------------
1 file changed, 70 deletions(-)
diff --git a/media-libs/phonon-vlc/phonon-vlc-0.9.1-r1.ebuild b/media-libs/phonon-vlc/phonon-vlc-0.9.1-r1.ebuild
deleted file mode 100644
index f69828b2..00000000
--- a/media-libs/phonon-vlc/phonon-vlc-0.9.1-r1.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PN="phonon-backend-vlc"
-MY_P="${MY_PN}-${PV}"
-inherit cmake-utils multibuild
-
-DESCRIPTION="Phonon VLC backend"
-HOMEPAGE="https://community.kde.org/Phonon"
-SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/${MY_P}.tar.xz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="LGPL-2.1+ || ( LGPL-2.1 LGPL-3 )"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
-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.8.7-r2:4
- >=dev-qt/qtgui-4.8.7: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
-}
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-12-07 1:01 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-07 1:01 [gentoo-commits] proj/kde-sunset:master commit in: media-libs/phonon-vlc/ Andreas Sturmlechner
-- strict thread matches above, loose matches on Subject: below --
2020-12-07 1:01 Andreas Sturmlechner
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox