blob: 93db7f9ec91e096f5cc43d13233e7ee3ef442ee0 (
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
|
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="A package to convert movies to DVD format and to build DVDs with"
HOMEPAGE="http://videotrans.sourceforge.net/"
SRC_URI="mirror://sourceforge/videotrans/${P}.tar.bz2"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
DEPEND="
media-video/mplayer
media-video/mjpegtools[png]
media-video/dvdauthor
virtual/imagemagick-tools
media-video/ffmpeg:0
"
RDEPEND="${DEPEND}
www-client/lynx
app-shells/bash
sys-devel/bc
"
DOCS=( aspects.txt CHANGES THANKS TODO )
src_prepare() {
default
# fixing LDFLAGS usage
sed -i -e 's|^\(LDFLAGS.*=\).*\( @LIBS@.*\)|\1\2 @LDFLAGS@|' src/Makefile.in || die
}
|