You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
2.0 KiB
86 lines
2.0 KiB
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
inherit autotools eutils toolchain-funcs confutils
|
|
|
|
DESCRIPTION="Mark commercial breaks in VDR recordings"
|
|
HOMEPAGE="http://noad.net23.net/"
|
|
SRC_URI="http://noad.net23.net/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="+ffmpeg imagemagick libmpeg2"
|
|
|
|
RDEPEND="
|
|
libmpeg2? ( media-libs/libmpeg2:= )
|
|
ffmpeg? ( virtual/ffmpeg )
|
|
imagemagick? ( media-gfx/imagemagick )
|
|
!media-plugins/vdr-markad"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
REQUIRED_USE="|| ( ffmpeg libmpeg2 )"
|
|
|
|
src_prepare() {
|
|
sed -i -e 's:2001:6419:' svdrpc.cpp main.cpp
|
|
|
|
# wrt bug 575494
|
|
sed -e "s:CODEC_ID_MP3:AV_CODEC_ID_MP3:" -i audiotools.cpp
|
|
sed -e "sCODEC_ID_PROBE:AV_CODEC_ID_PROBE:" -i ffmpeg_decoder.cpp
|
|
|
|
# tested libav-9, ffmepg-2.2.9
|
|
epatch "${FILESDIR}/patches-0.8.x/${P}-libav9.diff" \
|
|
"${FILESDIR}/patches-0.8.x/${P}-ffmpeg25.patch"
|
|
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
confutils_require_any ffmpeg libmpeg2
|
|
econf \
|
|
$(usex imagemagick '--with-magick') \
|
|
$(usex ffmpeg '' '--without-ffmpeg') \
|
|
$(usex libmpeg2 '' '--without-libmpeg2') \
|
|
--with-tools
|
|
}
|
|
|
|
src_compile() {
|
|
emake AR="$(tc-getAR)" # see bug #469810
|
|
}
|
|
|
|
src_install() {
|
|
dobin noad showindex checkMarks
|
|
use imagemagick && dobin markpics
|
|
|
|
dodoc README INSTALL
|
|
# example scripts are installed as dokumentation
|
|
dodoc allnewnoad allnoad allnoadnice clearlogos noadcall.sh noadifnew stat2html statupd
|
|
|
|
newconfd "${FILESDIR}"/confd_vdraddon.noad vdraddon.noad
|
|
|
|
insinto /usr/share/vdr/record
|
|
doins "${FILESDIR}"/record-50-noad.sh
|
|
|
|
insinto /usr/share/vdr/shutdown
|
|
doins "${FILESDIR}"/pre-shutdown-15-noad.sh
|
|
|
|
insinto /etc/vdr/reccmds
|
|
doins "${FILESDIR}"/reccmds.noad.conf
|
|
|
|
exeinto /usr/share/vdr/bin
|
|
doexe "${FILESDIR}"/noad-reccmd
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog
|
|
elog "To integrate noad in VDR you should do this:"
|
|
elog
|
|
elog "start and set Parameter in /etc/conf.d/vdraddon.noad"
|
|
elog
|
|
elog "Note: You can use here all parameters for noad,"
|
|
elog "please look in the documentation of noad."
|
|
}
|