From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: media-video/qmplay2/
Date: Sun, 19 Jan 2020 23:53:29 +0000 (UTC) [thread overview]
Message-ID: <1579477889.41fe792e4578451ba91b15bd47ae993bad446a98.asturm@gentoo> (raw)
commit: 41fe792e4578451ba91b15bd47ae993bad446a98
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 15 20:31:28 2020 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jan 19 23:51:29 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41fe792e
media-video/qmplay2: Drop 19.12.19 (r0)
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
media-video/qmplay2/qmplay2-19.12.19.ebuild | 141 ----------------------------
1 file changed, 141 deletions(-)
diff --git a/media-video/qmplay2/qmplay2-19.12.19.ebuild b/media-video/qmplay2/qmplay2-19.12.19.ebuild
deleted file mode 100644
index d77ba82ead2..00000000000
--- a/media-video/qmplay2/qmplay2-19.12.19.ebuild
+++ /dev/null
@@ -1,141 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake xdg-utils
-
-DESCRIPTION="A Qt-based video player, which can play most formats and codecs"
-HOMEPAGE="https://github.com/zaps166/QMPlay2"
-
-if [[ ${PV} == *9999 ]]; then
- inherit git-r3
- EGIT_REPO_URI="https://github.com/zaps166/QMPlay2"
-else
- SRC_URI="https://github.com/zaps166/QMPlay2/archive/${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
- S="${WORKDIR}/QMPlay2-${PV}"
-fi
-
-LICENSE="LGPL-3"
-SLOT="0"
-
-IUSE="avdevice +audiofilters avresample +alsa cdio cuvid dbus +extensions
- +ffmpeg gme inputs +lastfm libass lyrics mediabrowser modplug mpris2
- notifications opengl portaudio pulseaudio sid svg taglib vaapi vdpau
- +videofilters visualizations xv"
-
-REQUIRED_USE="
- audiofilters? ( || ( alsa portaudio pulseaudio ) )
- avdevice? ( ffmpeg )
- avresample? ( ffmpeg )
- lastfm? ( extensions )
- lyrics? ( extensions )
- mediabrowser? ( extensions )
- mpris2? ( extensions dbus )
- vaapi? ( ffmpeg opengl )
- vdpau? ( ffmpeg )"
-
-RDEPEND="
- alsa? ( media-libs/alsa-lib )
- cdio? ( dev-libs/libcdio[cddb] )
- dev-libs/jansson
- dev-qt/qtcore:5
- dev-qt/qtgui:5[xcb]
- dev-qt/qtwidgets:5
- dev-qt/qtx11extras:5
- dbus? ( dev-qt/qtdbus:5 )
- ffmpeg? ( media-video/ffmpeg )
- gme? ( media-libs/game-music-emu )
- libass? ( media-libs/libass )
- mediabrowser? ( dev-qt/qtdeclarative:5 )
- opengl? ( virtual/opengl )
- portaudio? ( media-libs/portaudio )
- pulseaudio? ( media-sound/pulseaudio )
- sid? ( media-libs/libsidplayfp )
- svg? ( dev-qt/qtsvg:5 )
- taglib? ( media-libs/taglib )
- vaapi? (
- >=media-video/ffmpeg-4.1.0[vaapi]
- x11-libs/libva[drm,opengl] )
- vdpau? ( media-video/ffmpeg[vdpau] )
- xv? ( x11-libs/libXv )"
-
-DEPEND="${RDEPEND}"
-BDEPEND="
- dev-qt/linguist-tools:5
- virtual/pkgconfig"
-
-src_prepare() {
- # disable compress man pages
- sed -r \
- -e 's/if\(GZIP\)/if\(TRUE\)/' \
- -e 's/(install.+QMPlay2\.1)\.gz/\1/' \
- -i src/gui/CMakeLists.txt || die
-
- cmake_src_prepare
-}
-
-src_configure() {
- local mycmakeargs=(
- # core
- -DUSE_ALSA=$(usex alsa)
- -DUSE_AUDIOCD=$(usex cdio)
- -DUSE_AVRESAMPLE=$(usex avresample)
- -DUSE_FREEDESKTOP_NOTIFICATIONS=$(usex dbus) # https://github.com/zaps166/QMPlay2/issues/134
- -DUSE_LIBASS=$(usex libass)
- -DUSE_NOTIFY=$(usex notifications)
- -DUSE_OPENGL2=$(usex opengl)
- -DUSE_XVIDEO=$(usex xv)
-
- # ffmpeg
- -DUSE_FFMPEG=$(usex ffmpeg)
- -DUSE_FFMPEG_AVDEVICE=$(usex avdevice)
- -DUSE_FFMPEG_VAAPI=$(usex vaapi)
- -DUSE_FFMPEG_VDPAU=$(usex vdpau)
-
- # modules
- -DUSE_AUDIOFILTERS=$(usex audiofilters)
- -DUSE_CUVID=$(usex cuvid)
- -DUSE_EXTENSIONS=$(usex extensions)
- -DUSE_INPUTS=$(usex inputs)
- -DUSE_MODPLUG=$(usex modplug)
- -DUSE_PORTAUDIO=$(usex portaudio)
- -DUSE_PULSEAUDIO=$(usex pulseaudio)
- -DUSE_VIDEOFILTERS=$(usex videofilters)
- -DUSE_VISUALIZATIONS=$(usex visualizations)
-
- # gui
- -DUSE_TAGLIB=$(usex taglib)
-
- # chiptune
- -DUSE_CHIPTUNE_GME=$(usex gme)
- -DUSE_CHIPTUNE_SID=$(usex sid)
-
- # extensions
- -DUSE_LASTFM=$(usex lastfm)
- -DUSE_LYRICS=$(usex lyrics)
- -DUSE_MEDIABROWSER=$(usex mediabrowser)
- -DUSE_MPRIS2=$(usex mpris2)
- )
-
- if [[ ${PV} == *9999 ]]; then
- mycmakeargs+=( USE_GIT_VERSION=ON )
- else
- mycmakeargs+=( USE_GIT_VERSION=OFF )
- fi
-
- cmake_src_configure
-}
-
-pkg_postinst() {
- xdg_icon_cache_update
- xdg_mimeinfo_database_update
- xdg_desktop_database_update
-}
-
-pkg_postrm() {
- xdg_icon_cache_update
- xdg_mimeinfo_database_update
- xdg_desktop_database_update
-}
next reply other threads:[~2020-01-19 23:53 UTC|newest]
Thread overview: 71+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-19 23:53 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-02-18 22:10 [gentoo-commits] repo/gentoo:master commit in: media-video/qmplay2/ Sam James
2025-01-22 17:40 Arthur Zamarin
2025-01-22 17:34 Arthur Zamarin
2025-01-08 20:43 Sam James
2024-12-30 20:02 Arthur Zamarin
2024-12-28 18:18 Arthur Zamarin
2024-12-28 0:05 Andreas Sturmlechner
2024-12-25 19:51 Arthur Zamarin
2024-12-13 10:15 Arthur Zamarin
2024-07-20 12:38 Arthur Zamarin
2024-07-20 11:14 Arthur Zamarin
2024-07-20 10:58 Arthur Zamarin
2024-06-25 22:03 Sam James
2024-06-17 19:42 Arthur Zamarin
2024-05-25 5:05 Arthur Zamarin
2024-05-25 5:05 Arthur Zamarin
2024-05-24 6:18 Arthur Zamarin
2024-04-19 6:08 Arthur Zamarin
2024-04-08 19:52 Arthur Zamarin
2024-04-08 15:30 Arthur Zamarin
2024-04-04 16:32 Arthur Zamarin
2024-04-03 9:23 Arthur Zamarin
2024-03-16 16:33 Arthur Zamarin
2024-03-08 11:33 Arthur Zamarin
2024-02-20 14:30 Arthur Zamarin
2024-02-15 13:04 Ionen Wolkens
2023-12-05 7:53 Arthur Zamarin
2023-11-04 20:14 Arthur Zamarin
2023-10-23 8:26 Arthur Zamarin
2023-09-07 17:40 Arthur Zamarin
2023-09-07 17:40 Arthur Zamarin
2023-08-22 19:48 Arthur Zamarin
2023-08-22 19:48 Arthur Zamarin
2023-08-09 17:21 Arthur Zamarin
2023-08-09 17:21 Arthur Zamarin
2023-06-28 18:30 Arthur Zamarin
2023-06-17 19:32 Arthur Zamarin
2023-06-09 14:42 Arthur Zamarin
2023-06-04 17:03 Arthur Zamarin
2023-05-30 19:39 Andreas Sturmlechner
2023-05-23 2:52 Sam James
2023-02-18 13:23 Arthur Zamarin
2023-02-17 19:08 Arthur Zamarin
2023-02-17 19:08 Arthur Zamarin
2022-10-17 17:32 Arthur Zamarin
2022-08-26 18:52 Arthur Zamarin
2022-07-29 10:52 Arthur Zamarin
2022-06-17 6:20 Arthur Zamarin
2022-04-19 5:51 Arthur Zamarin
2022-04-19 5:51 Arthur Zamarin
2022-04-19 5:51 Arthur Zamarin
2022-01-29 9:13 Arthur Zamarin
2022-01-29 9:13 Arthur Zamarin
2022-01-29 9:13 Arthur Zamarin
2021-08-22 19:10 Arthur Zamarin
2021-08-22 18:49 Arthur Zamarin
2021-08-22 17:42 Arthur Zamarin
2021-08-22 17:42 Arthur Zamarin
2021-08-22 17:42 Arthur Zamarin
2021-04-06 21:17 Sam James
2021-03-31 11:09 Joonas Niilola
2021-03-31 11:09 Joonas Niilola
2021-03-20 8:48 Joonas Niilola
2020-08-05 12:19 Joonas Niilola
2020-06-23 8:36 Joonas Niilola
2020-05-06 11:51 Joonas Niilola
2020-03-14 12:07 Joonas Niilola
2020-01-19 23:53 Andreas Sturmlechner
2019-12-22 17:21 Joonas Niilola
2019-12-22 16:59 Joonas Niilola
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1579477889.41fe792e4578451ba91b15bd47ae993bad446a98.asturm@gentoo \
--to=asturm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox