blob: 6456bff68100d702a031943ed78b4b2b7354c7c2 (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmatroska/libmatroska-0.7.5.ebuild,v 1.4 2005/04/24 06:56:19 corsair Exp $
IUSE=""
inherit flag-o-matic gcc eutils
DESCRIPTION="Extensible multimedia container format based on EBML"
HOMEPAGE="http://www.matroska.org/"
SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~sparc ppc64 ~ppc amd64"
DEPEND=">=dev-libs/libebml-0.7.3"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/libmatroska-shared2.patch
cd ${S}/make/linux
sed -i -e 's/CXXFLAGS=/CXXFLAGS+=/g' Makefile
}
src_compile() {
cd ${S}/make/linux
# This is needed on amd64 to create shared libraries that make
# use of matroska, like libvlcplugin from vlc.
# Travis Tilley <lv@gentoo.org> 09 Apr 2004
use amd64 && append-flags -fPIC
use ppc && append-flags -fPIC
#fixes locale for gcc3.4.0 to close bug 52385
if [ "`gcc-major-version`" -ge "3" -a "`gcc-minor-version`" -ge "4" ]
then
append-flags -finput-charset=ISO8859-15
fi
make PREFIX=/usr \
LIBEBML_INCLUDE_DIR=/usr/include/ebml \
LIBEBML_LIB_DIR=/usr/$(get_libdir) || die "make failed"
}
src_install() {
cd ${S}/make/linux
einstall libdir="${D}/usr/$(get_libdir)" || die "make install failed"
dodoc ../../ChangeLog
}
|