blob: e32472c395c4c6597c472be31ad9ba7146811537 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit vdr-plugin-2
VERSION="1325" #every bump, new version
DESCRIPTION="VDR plugin: display of digital images, like jpeg, tiff, png, bmp"
HOMEPAGE="http://projects.vdr-developer.org/projects/plg-image"
SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
KEYWORDS="~amd64 ~x86"
SLOT="0"
LICENSE="GPL-2"
IUSE="exif"
COMMON_DEPEND=">=media-video/vdr-2
>=virtual/ffmpeg-9
>=media-libs/netpbm-10.0
exif? ( media-libs/libexif )"
DEPEND="${COMMON_DEPEND}
virtual/pkgconfig"
RDEPEND="${COMMON_DEPEND}
media-tv/gentoo-vdr-scripts"
VDR_RCADDON_FILE="${FILESDIR}/rc-addon-0.3.0.sh"
src_prepare() {
vdr-plugin-2_src_prepare
#wrong include
sed -e 's:<liboutput/stillimage-player.h>:"liboutput/stillimage-player.h":'\
-i player-image.h
# dangerous warning
sed -e "s:mktemp:mkstemp:" -i data-image.c
epatch "${FILESDIR}/${P}-gentoo.diff"
# ffmpeg-2.2.12, libav10
sed -e "s:avcodec_alloc_frame:av_frame_alloc:" \
-e "s:CODEC_ID_MPEG2VIDEO:AV_CODEC_ID_MPEG2VIDEO:" \
-i liboutput/encode.c
}
src_install() {
vdr-plugin-2_src_install
insinto /etc/vdr/imagecmds
newins examples/imagecmds.conf imagecmds.example.conf
newins examples/imagecmds.conf.DE imagecmds.example.conf.de
insinto /etc/vdr/plugins/image
doins examples/imagesources.conf
into /usr/share/vdr/image
dobin scripts/imageplugin.sh
newbin scripts/mount.sh mount-image.sh
}
|