blob: 0469400e841a0783a59c09a041535592f3b0558a (
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
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ogmtools/ogmtools-1.5.ebuild,v 1.6 2006/05/07 10:33:10 corsair Exp $
IUSE="dvd"
inherit eutils
DESCRIPTION="These tools allow information about (ogminfo) or extraction from (ogmdemux) or creation of (ogmmerge) 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"
RDEPEND="dvd? ( media-libs/libdvdread )
media-sound/vorbis-tools"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-endian-fix.patch
}
src_compile() {
econf `use_with dvd dvdread` || die "econf failed"
emake || die "emake failed"
}
src_install() {
dobin ogmmerge ogmdemux ogminfo ogmsplit ogmcat || die
use dvd && dobin dvdxchap
dodoc TODO README ChangeLog
doman dvdxchap.1 ogmcat.1 ogmdemux.1 ogminfo.1 ogmmerge.1 ogmsplit.1
}
|