blob: 72238bdf8d45b281a1e5bd62bbeded6cdd7000bb (
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
144
145
146
147
148
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/ffmpeg/ffmpeg-0.4.9_p20050226-r2.ebuild,v 1.4 2005/03/30 07:58:44 chriswhite Exp $
inherit eutils flag-o-matic gcc multilib toolchain-funcs
DESCRIPTION="Complete solution to record, convert and stream audio and video. Includes libavcodec."
HOMEPAGE="http://ffmpeg.sourceforge.net/"
MY_P=${P/_/-}
S=${WORKDIR}
S_BASE=${WORKDIR}/${MY_P}
S_STATIC=${S_BASE}-static
S_SHARED=${S_BASE}-shared
SRC_URI="mirror://sourceforge/ffmpeg/${MY_P}.tbz2"
LICENSE="LGPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~alpha ~amd64 ~ia64 ~ppc64 ~arm ~mips ~hppa"
IUSE="aac altivec debug doc dv dvd encode imlib mmx oggvorbis oss threads truetype v4l xvid"
DEPEND="imlib? (media-libs/imlib2)
truetype? (>=media-libs/freetype-2)
sdl? (>=media-libs/libsdl-1.2.1)
doc? (app-text/texi2html)
encode? (media-sound/lame)
oggvorbis? (media-libs/libvorbis
media-libs/libogg)
!alpha? ( aac? (media-libs/faad2 media-libs/faac) )
dvd? (>=media-libs/a52dec-0.7.4-r4)
xvid? (media-libs/xvid)
"
src_unpack() {
unpack ${A} || die
cd ${S_BASE}
# for some reason it tries to #include <X11/Xlib.h>, but doesn't use it
sed -i s:\#define\ HAVE_X11:\#define\ HAVE_LINUX: ffplay.c
# make a52bin actually compile... adds the needed external lib
# and makes fprintf -> av_log like it's supposed to be...
epatch ${FILESDIR}/gentoo-${PN}001.patch
#ffmpeg doesn'g use libtool, so the condition for PIC code
#is __PIC__, not PIC.
sed -i -e 's/#if\(\(.*def *\)\|\(.*defined *\)\)PIC/#if\1__PIC__/' \
libavcodec/i386/dsputil_mmx{.c,_rnd.h} \
libavcodec/msmpeg4.c \
|| die "sed failed (__PIC__)"
#fixup liba52 to respect the --disable-mmx configure option
sed -i -e 's/#ifdef ARCH_X86/#ifdef HAVE_MMX/' \
libavcodec/liba52/resample.c \
|| die "sed failed (HAVE_MMX)"
epatch ${FILESDIR}/${PN}-libdir-pic.patch
sed -i -e "s:\$ldl\ \$extralibs:\$ldl\ -la52\ \$extralibs:" configure || die "Unable to patch in -la52"
cd ${S}
cp -R ${S_BASE} ${S_STATIC}
mv ${S_BASE} ${S_SHARED}
}
src_compile() {
#Note; library makefiles don't propogate flags from config.mak so
#use specified CFLAGS are only used in executables
filter-flags -fforce-addr -momit-leaf-frame-pointer
local myconf=""
#disable mmx accelerated code if not requirested, or if PIC is required
# as the provided asm decidedly isn't PIC.
if has_pic || use !mmx; then
myconf="${myconf} --disable-mmx"
else
myconf="${myconf} --enable-mmx"
fi
use encode && use aac && myconf="${myconf} --enable-faac"
if use oggvorbis ; then
myconf="${myconf} --enable-ogg --enable-vorbis"
else
myconf="${myconf} --disable-ogg --disable-theora"
fi
use !alpha && myconf="${myconf} $(use_enable aac faad) $(use_enable aac faac) $(use_enable aac faadbin)"
myconf="${myconf}
$(use_enable altivec) \
$(use_enable debug) \
$(use_enable encode mp3lame) \
$(use_enable dvd a52) $(use_enable dvd a52bin) \
$(use_enable oss audio-oss) \
$(use_enable v4l) \
$(use_enable dv dv1394) \
$(use_enable threads pthreads) \
$(use_enable xvid) \
--enable-gpl \
--enable-pp \
--disable-optimize"
cd ${S_STATIC}
econf --disable-shared-pp --disable-shared --enable-static ${myconf} || die "Configure failed"
emake CC="$(tc-getCC)" || die
cd ${S_SHARED}
econf --enable-shared-pp --enable-shared --disable-static ${myconf} || die "Configure failed"
emake CC="$(tc-getCC)" || die
}
src_install() {
for d in ${S_STATIC} ${S_SHARED}; do
cd ${d}
use doc && make documentation
make DESTDIR=${D} \
prefix=${D}/usr \
libdir=${D}/usr/$(get_libdir) \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
bindir=${D}/usr/bin \
install installlib || die "Install Failed"
done
cd ${S_SHARED}
dodoc ChangeLog README INSTALL
dodoc doc/*
cd ${S_STATIC}/libavcodec/libpostproc
make prefix=${D}/usr libdir=${D}/usr/$(get_libdir) \
install || die "Failed to install libpostproc.a!"
cd ${S_SHARED}/libavcodec/libpostproc
make prefix=${D}/usr libdir=${D}/usr/$(get_libdir) \
SHARED_PP="yes" \
install || die "Failed to install libpostproc.so!"
# Some stuff like transcode can use this one.
dolib ${S_STATIC}/libavcodec/libpostproc/libpostproc.a
preplib /usr
}
# FEATURES=maketest breakes the compile
src_test() { :; }
|