blob: 56f8611e8a24bfab2dba71f1d4d925c1af52aad0 (
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
|
# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
DESCRIPTION="Information, extraction or creation for OGG media streams"
HOMEPAGE="http://www.bunkus.org/videotools/ogmtools/"
SRC_URI="http://www.bunkus.org/videotools/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 sparc x86"
IUSE="dvd"
RDEPEND="dvd? ( media-libs/libdvdread )
media-sound/vorbis-tools"
DEPEND="${RDEPEND}"
PATCHES=(
"${FILESDIR}/${P}-comments.patch"
"${FILESDIR}/${P}-endian-fix.patch"
"${FILESDIR}/${P}-vorbis_verbosity.patch"
"${FILESDIR}/${P}-summary_length.patch"
)
src_configure() {
econf \
$(use_with dvd dvdread)
}
src_install() {
dobin ogmmerge ogmdemux ogminfo ogmsplit ogmcat
if use dvd; then
dobin dvdxchap
fi
einstalldocs
doman *.1
}
|