blob: 5a6095b7bc997ad9f66b4e3fd1aaab1451c0fa9a (
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/transcode/transcode-0.6.10.ebuild,v 1.7 2004/06/09 17:39:29 agriffis Exp $
inherit libtool flag-o-matic eutils
MY_P="${P/_pre/.}"
S=${WORKDIR}/${MY_P}
DESCRIPTION="video stream processing tool"
HOMEPAGE="http://zebra.fh-weingarten.de/~transcode/"
SRC_URI="http://www.zebra.fh-weingarten.de/~transcode/pre/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ppc"
IUSE="sdl mmx mpeg sse encode X quicktime avi altivec"
DEPEND=">=media-libs/a52dec-0.7.4
>=media-libs/libdv-0.99
x86? ( >=dev-lang/nasm-0.98.36 )
>=media-libs/libdvdread-0.9.0
>=media-video/ffmpeg-0.4.6
>=media-libs/xvid-0.9.1
>=media-video/mjpegtools-1.6.0
>=dev-libs/lzo-1.08
>=media-libs/libfame-0.9.0
>=media-gfx/imagemagick-5.5.6.0
media-libs/netpbm
X? ( virtual/x11 )
avi? ( >=media-video/avifile-0.7.38 )
avi? ( x86? ( >=media-libs/divx4linux-20030428 ) )
mpeg? ( media-libs/libmpeg3 )
encode? ( >=media-sound/lame-3.93 )
sdl? ( media-libs/libsdl )
quicktime? ( virtual/quicktime )"
src_unpack() {
unpack ${A}
if has_version '>=media-libs/netpbm-9.13'
then
einfo "New netbpm (>9.12)..."
sed -i 's:-lppm:-lnetpbm:' \
${S}/contrib/subrip/Makefile
else
einfo "Old netbpm (<=9.12)..."
fi
}
src_compile() {
# Don't build with -mfpmath=sse || -fPic or it will break. (Bug #14920)
filter-mfpmath sse
filter-flags -fPIC
filter-flags -maltivec -mabi=altivec
# fix invalid paths in .la files of plugins
elibtoolize
local myconf=
myconf="--with-dvdread"
# Leave these alone for now, as the upstream sources do not set/use
# the defines (HAVE_MMX,HAVE_MMX_TRUE) correctly, bug #30877.
#
# use mmx \
# && myconf="${myconf} --enable-mmx"
# use mmx || ( use 3dnow || use sse ) \
# || myconf="${myconf} --disable-mmx"
# # Dont disable mmx if 3dnow or sse are requested.
#
# use sse \
# && myconf="${myconf} --enable-sse" \
# || myconf="${myconf} --disable-sse"
#
# use 3dnow \
# && myconf="${myconf} --enable-3dnow" \
# || myconf="${myconf} --disable-3dnow"
use altivec \
&& myconf="${myconf} --enable-altivec" \
|| myconf="${myconf} --disable-altivec"
use avi \
&& myconf="${myconf} --with-avifile-mods --enable-avifile6" \
|| myconf="${myconf} --without-avifile-mods --disable-avifile6"
use encode \
&& myconf="${myconf} --with-lame" \
|| myconf="${myconf} --without-lame"
use mpeg \
&& myconf="${myconf} --with-libmpeg3" \
|| myconf="${myconf} --without-libmpeg3"
if use quicktime; then
has_version 'media-libs/openquicktime' \
&& myconf="${myconf} --with-openqt --without-qt" \
|| myconf="${myconf} --without-openqt --with-qt"
fi
use X \
&& myconf="${myconf} --enable-x" \
|| myconf="${myconf} --disable-x"
# Use the MPlayer libpostproc if present
[ -f ${ROOT}/usr/lib/libpostproc.a ] && \
[ -f ${ROOT}/usr/include/postproc/postprocess.h ] && \
myconf="${myconf} --with-libpostproc-builddir=${ROOT}/usr/lib"
econf ${myconf} CFLAGS="${CFLAGS} -DDCT_YUV_PRECISION=1" || die
# Do not use emake !!
# export CFLAGS="${CFLAGS} -DDCT_YUV_PRECISION=1"
# workaround for including avifile haders, which are expected
# in an directory named "avifile"
use avi \
&& avi_inc=$(avifile-config --cflags | sed -e "s|^-I||") \
&& [ -d "$avi_inc" ] \
&& [ "$(basename "$avi_inc")" != "avifile" ] \
&& ln -s "$avi_inc" avifile
make all || die
# subrip stuff
cd contrib/subrip
make || die
}
src_install () {
make \
DESTDIR=${D} \
install || die
dodoc AUTHORS COPYING ChangeLog README TODO
# subrip stuff
cd contrib/subrip
dobin pgm2txt srttool subtitle2pgm subtitle2vobsub
einfo ""
einfo "This ebuild uses subtitles !!!"
einfo ""
}
|