blob: e92c154a6be6040b089b9ef6945685d669d69430 (
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/mkvtoolnix/mkvtoolnix-4.3.0.ebuild,v 1.3 2010/10/01 23:29:03 beandog Exp $
EAPI="1"
inherit wxwidgets autotools
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="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE="bzip2 debug lzo wxwidgets"
RDEPEND="
>=dev-libs/libebml-1.0.0
>=media-libs/libmatroska-1.0.0
dev-libs/boost
dev-libs/expat
media-libs/flac
media-libs/libogg
media-libs/libvorbis
sys-apps/file
sys-libs/zlib
bzip2? ( app-arch/bzip2 )
lzo? ( dev-libs/lzo )
wxwidgets? ( x11-libs/wxGTK:2.8 )
"
DEPEND="${RDEPEND}
dev-ruby/rake
"
pkg_setup() {
WX_GTK_VER="2.8"
if use wxwidgets; then
need-wxwidgets unicode
fi
}
src_prepare() {
eautoreconf
}
src_compile() {
use wxwidgets && myconf="--with-wx-config=${WX_CONFIG}"
econf \
$(use_enable lzo) \
$(use_enable bzip2 bz2) \
$(use_enable wxwidgets) \
$(use_enable debug) \
--disable-qt \
${myconf} \
--with-boost-regex=boost_regex \
--with-boost-filesystem=boost_filesystem \
--with-boost-system=boost_system
rake || die "rake failed"
}
src_install() {
# Don't run strip while installing stuff, leave to portage the job.
DESTDIR="${D}" rake install || die
dodoc AUTHORS ChangeLog README TODO
doman doc/man/*.1
}
|