blob: 051363474ec807fbf36c1204cd70d947eb09bfb8 (
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
|
DESCRIPTION = "ffmpeg"
SECTION = "libs"
PRIORITY = "optional"
LICENSE = "GPL"
DEPENDS = "libogg zlib libvorbis faac liba52 lame"
PV = "0.4.9+svn${SRCDATE}"
PR = "r1"
DEFAULT_PREFERENCE = "-1"
SRC_URI = "svn://svn.mplayerhq.hu/ffmpeg/;module=trunk"
S = "${WORKDIR}/trunk"
inherit autotools pkgconfig
TARGET_LDFLAGS_append = " -lm -la52 "
EXTRA_OECONF = " \
--enable-libmp3lame \
--enable-libvorbis \
--disable-libfaad \
--enable-liba52 \
--enable-liba52bin \
--enable-libogg \
--enable-pp \
--enable-shared \
--enable-pthreads \
--enable-gpl \
\
--disable-audio-beos \
--disable-v4l \
--disable-dv1394 \
--disable-debug \
--disable-ffserver \
--disable-ffplay \
--disable-strip \
\
--cross-prefix=${TARGET_PREFIX} \
\
--cpu=${PACKAGE_ARCH} \
--arch=${PACKAGE_ARCH} \
"
# We do this because the install program is called with -s
# which causes it to call "strip" and it then mangles cross compiled stuff..
PATH_prepend="${CROSS_DIR}/${TARGET_SYS}/bin:"
do_configure_prepend() {
export CC="${CC}"
}
oe_runconf () {
# make ffmpeg detect arm targets that don't end in 'l'
sed -i -e s:'armv\[4567\]\*l':'armv\[4567\]\*':g ${S}/configure
if [ -x ${S}/configure ] ; then
cfgcmd="${S}/configure \
--prefix=${prefix} \
--mandir=${mandir} \
${EXTRA_OECONF} \
$@"
oenote "Running $cfgcmd..."
$cfgcmd || oefatal "oe_runconf failed"
else
oefatal "no configure script found"
fi
}
do_stage() {
oe_libinstall -a -so -C libavcodec libavcodec ${STAGING_LIBDIR}
oe_libinstall -a -so -C libavformat libavformat ${STAGING_LIBDIR}
oe_libinstall -a -so -C libavutil libavutil ${STAGING_LIBDIR}
oe_libinstall -a -so -C libpostproc libpostproc ${STAGING_LIBDIR}
install -d ${STAGING_INCDIR}/ffmpeg
install -m 0644 ${S}/libavcodec/avcodec.h \
${STAGING_INCDIR}/ffmpeg/avcodec.h
install -m 0644 ${S}/libavformat/avformat.h \
${STAGING_INCDIR}/ffmpeg/avformat.h
install -m 0644 ${S}/libavformat/avio.h \
${STAGING_INCDIR}/ffmpeg/avio.h
install -m 0644 ${S}/libavformat/rtp.h \
${STAGING_INCDIR}/ffmpeg/rtp.h
install -m 0644 ${S}/libavformat/rtsp.h \
${STAGING_INCDIR}/ffmpeg/rtsp.h
install -m 0644 ${S}/libavformat/rtspcodes.h \
${STAGING_INCDIR}/ffmpeg/rtspcodes.h
install -m 0644 ${S}/libavutil/avutil.h \
${STAGING_INCDIR}/ffmpeg/avutil.h
install -m 0644 ${S}/libavutil/bswap.h \
${STAGING_INCDIR}/ffmpeg/bswap.h
install -m 0644 ${S}/libavutil/common.h \
${STAGING_INCDIR}/ffmpeg/common.h
install -m 0644 ${S}/libavutil/crc.h \
${STAGING_INCDIR}/ffmpeg/crc.h
install -m 0644 ${S}/libavutil/integer.h \
${STAGING_INCDIR}/ffmpeg/integer.h
install -m 0644 ${S}/libavutil/intfloat_readwrite.h \
${STAGING_INCDIR}/ffmpeg/intfloat_readwrite.h
install -m 0644 ${S}/libavutil/mathematics.h \
${STAGING_INCDIR}/ffmpeg/mathematics.h
install -m 0644 ${S}/libavutil/rational.h \
${STAGING_INCDIR}/ffmpeg/rational.h
install -m 0644 ${S}/libavutil/mem.h \
${STAGING_INCDIR}/ffmpeg/mem.h
install -m 0644 ${S}/libavutil/log.h \
${STAGING_INCDIR}/ffmpeg/log.h
install -d ${STAGING_INCDIR}/libpostproc
install -m 0644 ${S}/libpostproc/postprocess.h \
${STAGING_INCDIR}/libpostproc/postprocess.h
}
PACKAGES += "libavcodec libavcodec-dev \
libavformat libavformat-dev \
libavutil libavutil-dev \
libpostproc libpostproc-dev"
FILES_${PN} = "${bindir}"
FILES_${PN}-dev = "${includedir}"
FILES_${PN}-doc = "${mandir}"
FILES_libavcodec = "${libdir}/libavcodec*.so.*"
FILES_libavcodec-dev = "${libdir}/libavcodec*.so \
${libdir}/libavcodec*.la ${libdir}/libavcodec*.a"
FILES_libavformat = "${libdir}/libavformat*.so.*"
FILES_libavformat-dev = "${libdir}/libavformat*.so \
${libdir}/libavformat*.la ${libdir}/libavformat*.a"
FILES_libavutil = "${libdir}/libavutil*.so.*"
FILES_libavutil-dev = "${libdir}/libavutil*.so \
${libdir}/libavutil*.la ${libdir}/libavutil*.a"
FILES_libpostproc = "${libdir}/libpostproc*.so.*"
FILES_libpostproc-dev = "${libdir}/libpostproc*.so \
${libdir}/libpostproc*.la ${libdir}/libpostproc*.a"
|