* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-markad/
@ 2017-03-05 19:21 Matthias Schwarzott
0 siblings, 0 replies; 3+ messages in thread
From: Matthias Schwarzott @ 2017-03-05 19:21 UTC (permalink / raw
To: gentoo-commits
commit: 8494eb217fe33ebe476394d9c034e0d1c7f30922
Author: Matthias Schwarzott <zzam <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 5 19:11:56 2017 +0000
Commit: Matthias Schwarzott <zzam <AT> gentoo <DOT> org>
CommitDate: Sun Mar 5 19:11:56 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8494eb21
media-plugins/vdr-markad: Remove required ffmpeg flag x264, as only decoding is needed. Add ~arm keyword.
Package-Manager: Portage-2.3.4, Repoman-2.3.2
.../vdr-markad/vdr-markad-0.1.4-r2.ebuild | 66 ++++++++++++++++++++++
1 file changed, 66 insertions(+)
diff --git a/media-plugins/vdr-markad/vdr-markad-0.1.4-r2.ebuild b/media-plugins/vdr-markad/vdr-markad-0.1.4-r2.ebuild
new file mode 100644
index 00000000000..863359cf467
--- /dev/null
+++ b/media-plugins/vdr-markad/vdr-markad-0.1.4-r2.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit vdr-plugin-2
+
+VERSION="1041" # every bump, new version
+
+DESCRIPTION="VDR Plugin: marks advertisements in VDR recordings"
+HOMEPAGE="http://projects.vdr-developer.org/projects/plg-markad/"
+SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
+
+KEYWORDS="~amd64 ~arm ~x86"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE=""
+
+DEPEND=">=media-video/vdr-1.6
+ virtual/ffmpeg[mp3]
+ !media-video/noad"
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${VDRPLUGIN}-${PV}/plugin"
+S2="${WORKDIR}/${VDRPLUGIN}-${PV}/command"
+
+# vdr-plugin-2.eclass changes
+PO_SUBDIR="../command"
+
+src_prepare() {
+ vdr-plugin-2_src_prepare
+
+ cd "${S2}"
+ epatch "${FILESDIR}/${PN}-0.1.4-libav9.patch"
+ sed -i Makefile \
+ -e "s:\$(CXXFLAGS) \$(OBJS):\$(CXXFLAGS) \$(LDFLAGS) \$(OBJS):" \
+ -e "s:\@\$(STRIP) \$(DESTDIR)/usr/bin/markad::"
+
+ if has_version ">=media-video/vdr-1.7.15"; then
+ sed -e "s:2001:6419:" -i markad-standalone.cpp
+ fi
+
+ epatch "${FILESDIR}/${P}_ffmpeg-2.patch"
+
+ # compile fix, tested libav11, ffmpeg-2.5.2
+ sed -e "s:CODEC_ID_:AV_CODEC_ID_:"\
+ -e "s:avcodec_alloc_frame:av_frame_alloc:"\
+ -i "${S2}"/decoder.cpp
+}
+
+src_compile() {
+ vdr-plugin-2_src_compile
+
+ cd "${S2}"
+ emake markad || die "Compiling command-line markad binary failed"
+}
+
+src_install() {
+ vdr-plugin-2_src_install
+
+ cd "${S2}"
+ emake install DESTDIR="${D}" || die "emake install failed"
+
+ cd "${WORKDIR}/${VDRPLUGIN}-${PV}"
+ dodoc README HISTORY
+}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-markad/
@ 2018-03-26 19:18 Aaron Bauman
0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2018-03-26 19:18 UTC (permalink / raw
To: gentoo-commits
commit: c2689e2bf6334d019b71af5eafd0042783e595b4
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun Mar 11 17:17:12 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Mar 26 19:15:36 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2689e2b
media-plugins/vdr-markad: use HTTPS
media-plugins/vdr-markad/vdr-markad-0.1.4-r1.ebuild | 4 ++--
media-plugins/vdr-markad/vdr-markad-0.1.4-r2.ebuild | 4 ++--
media-plugins/vdr-markad/vdr-markad-0.1.4.ebuild | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/media-plugins/vdr-markad/vdr-markad-0.1.4-r1.ebuild b/media-plugins/vdr-markad/vdr-markad-0.1.4-r1.ebuild
index fe03db19423..263e2ce1abb 100644
--- a/media-plugins/vdr-markad/vdr-markad-0.1.4-r1.ebuild
+++ b/media-plugins/vdr-markad/vdr-markad-0.1.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -8,7 +8,7 @@ inherit vdr-plugin-2
VERSION="1041" # every bump, new version
DESCRIPTION="VDR Plugin: marks advertisements in VDR recordings"
-HOMEPAGE="http://projects.vdr-developer.org/projects/plg-markad/"
+HOMEPAGE="https://projects.vdr-developer.org/projects/plg-markad/"
SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
KEYWORDS="amd64 x86"
diff --git a/media-plugins/vdr-markad/vdr-markad-0.1.4-r2.ebuild b/media-plugins/vdr-markad/vdr-markad-0.1.4-r2.ebuild
index 863359cf467..3d18884c2cc 100644
--- a/media-plugins/vdr-markad/vdr-markad-0.1.4-r2.ebuild
+++ b/media-plugins/vdr-markad/vdr-markad-0.1.4-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -8,7 +8,7 @@ inherit vdr-plugin-2
VERSION="1041" # every bump, new version
DESCRIPTION="VDR Plugin: marks advertisements in VDR recordings"
-HOMEPAGE="http://projects.vdr-developer.org/projects/plg-markad/"
+HOMEPAGE="https://projects.vdr-developer.org/projects/plg-markad/"
SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
KEYWORDS="~amd64 ~arm ~x86"
diff --git a/media-plugins/vdr-markad/vdr-markad-0.1.4.ebuild b/media-plugins/vdr-markad/vdr-markad-0.1.4.ebuild
index c093a955b1d..2b5962e457c 100644
--- a/media-plugins/vdr-markad/vdr-markad-0.1.4.ebuild
+++ b/media-plugins/vdr-markad/vdr-markad-0.1.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
@@ -8,7 +8,7 @@ inherit vdr-plugin-2
VERSION="1041" # every bump, new version
DESCRIPTION="VDR Plugin: marks advertisements in VDR recordings"
-HOMEPAGE="http://projects.vdr-developer.org/projects/plg-markad/"
+HOMEPAGE="https://projects.vdr-developer.org/projects/plg-markad/"
SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
KEYWORDS="amd64 x86"
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-markad/
@ 2025-10-04 18:08 Sam James
0 siblings, 0 replies; 3+ messages in thread
From: Sam James @ 2025-10-04 18:08 UTC (permalink / raw
To: gentoo-commits
commit: d4e0291c2be08eceb32a4a3fa1d64b19e8d695ce
Author: Martin Dummer <martin.dummer <AT> gmx <DOT> net>
AuthorDate: Sat Oct 4 17:45:24 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Oct 4 18:07:50 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4e0291c
media-plugins/vdr-markad: fix build failure
initial ebuild was faulty, dont know how this could happen...
Closes: https://bugs.gentoo.org/963786
Signed-off-by: Martin Dummer <martin.dummer <AT> gmx.net>
Part-of: https://github.com/gentoo/gentoo/pull/44039
Closes: https://github.com/gentoo/gentoo/pull/44039
Signed-off-by: Sam James <sam <AT> gentoo.org>
media-plugins/vdr-markad/vdr-markad-4.2.15.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/media-plugins/vdr-markad/vdr-markad-4.2.15.ebuild b/media-plugins/vdr-markad/vdr-markad-4.2.15.ebuild
index 72aa8d1dc47b..7dc5df512051 100644
--- a/media-plugins/vdr-markad/vdr-markad-4.2.15.ebuild
+++ b/media-plugins/vdr-markad/vdr-markad-4.2.15.ebuild
@@ -39,6 +39,6 @@ src_install() {
cd "${S}/.." || die
emake install DESTDIR="${D}"
- cd "${WORKDIR}/${VDRPLUGIN}-${PV}" || die
+ S="${WORKDIR}/vdr-plugin-markad-${PV}/"
dodoc README HISTORY
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-10-04 18:08 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-04 18:08 [gentoo-commits] repo/gentoo:master commit in: media-plugins/vdr-markad/ Sam James
-- strict thread matches above, loose matches on Subject: below --
2018-03-26 19:18 Aaron Bauman
2017-03-05 19:21 Matthias Schwarzott
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox