32 lines
651 B
Bash
32 lines
651 B
Bash
# Copyright 1999-2020 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
|
|
DESCRIPTION="Extract info or subtitles from DV stream"
|
|
HOMEPAGE="http://dv2sub.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/dv2sub/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2+"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
IUSE="kino"
|
|
|
|
DEPEND="media-libs/libdv"
|
|
RDEPEND="${DEPEND}
|
|
kino? (
|
|
media-video/kino
|
|
media-video/dvdauthor
|
|
media-video/ffmpeg
|
|
)"
|
|
|
|
src_install() {
|
|
default
|
|
|
|
if use kino; then
|
|
insinto /usr/share/kino/scripts/exports
|
|
exeinto /usr/share/kino/scripts/exports
|
|
doins kino_scripts/dv2sub_spumux.xml
|
|
doexe kino_scripts/*.sh
|
|
fi
|
|
}
|