summaryrefslogtreecommitdiff
blob: af97bb54b2b601529f862948509c2c1abf0cb6be (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
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-0.5.0.ebuild,v 1.3 2003/08/05 13:20:24 vapier Exp $

DESCRIPTION="Tools to create, alter, and inspect Matroska files"
HOMEPAGE="http://www.bunkus.org/videotools/mkvtoolnix"
SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
IUSE="oggvorbis wxwindows"

DEPEND="~media-libs/libebml-0.4.4
	~media-libs/libmatroska-0.4.4
	oggvorbis? ( media-libs/libogg media-libs/libvorbis )
	wxwindows? ( media-libs/wxGTK )"

src_compile() {
	local myconf=""
	use oggvorbis || myconf="${myconf} --disable-oggtest \
		--disable-vorbistest --without-ogg --without-vorbis"
	./configure ${myconf} || die "configure died"

	make || die "make failed"
}

src_install() {
	einstall || die
}