blob: 26aa8e530f06f023bde83c7bc45569b3b7d9c5f0 (
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
|
# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
inherit toolchain-funcs
VERSION="1911" # every bump, new version
RESTRICT="strip"
DESCRIPTION="Addon needed for XXV - WWW Admin for the Video Disk Recorder"
HOMEPAGE="https://projects.vdr-developer.org/projects/xxv"
SRC_URI="mirror://vdr-developerorg/${VERSION}/${P}.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="media-video/ffmpeg:0"
DEPEND="${RDEPEND}"
BDEPEND="virtual/pkgconfig"
DOCS=( README LIESMICH )
src_prepare() {
sed -i Makefile \
-e "s:usr/local:usr:" \
-e "s:-o vdr2jpeg:\$(LDFLAGS) -shared -o vdr2jpeg:" || die
# bug 727640, do not call strip directly
export STRIP="$(tc-getSTRIP)"
default
}
src_install() {
emake DESTDIR="${D}" install FFMPEG_BIN=/usr/bin/ffmpeg
einstalldocs
}
|