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
+}

Reply via email to