diff options
author | Andrei Gherzan <andrei@gherzan.ro> | 2014-08-17 17:56:41 +0200 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-08-21 21:35:07 +0200 |
commit | f17c1486c15e35006891be9d53b2175364afe363 (patch) | |
tree | 373e23dcae3459716df1583ddf3c3d320c187b10 /meta-multimedia | |
parent | d6c5c40f729e9a47d3136957f6533d0542493e11 (diff) | |
download | meta-openembedded-f17c1486c15e35006891be9d53b2175364afe363.tar.gz |
rtmpdump: Integrate v2.4
Change-Id: I2d8e84189674074385c41f50dc535081e9c845af
Signed-off-by: Andrei Gherzan <andrei@gherzan.ro>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-multimedia')
-rw-r--r-- | meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump/fix-racing-build-issue.patch | 18 | ||||
-rw-r--r-- | meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.4.bb | 22 |
2 files changed, 40 insertions, 0 deletions
diff --git a/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump/fix-racing-build-issue.patch b/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump/fix-racing-build-issue.patch new file mode 100644 index 000000000..bb3d8b0ef --- /dev/null +++ b/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump/fix-racing-build-issue.patch | |||
@@ -0,0 +1,18 @@ | |||
1 | Make sure libdir (SODIR) is created when running parallel make. | ||
2 | |||
3 | Upstream-Status: Inappropriate [configuration] | ||
4 | |||
5 | Signed-off-by: Andrei Gherzan <andrei@gherzan.ro> | ||
6 | |||
7 | Index: git/librtmp/Makefile | ||
8 | =================================================================== | ||
9 | --- git.orig/librtmp/Makefile | ||
10 | +++ git/librtmp/Makefile | ||
11 | @@ -107,6 +107,7 @@ install_base: librtmp.a librtmp.pc | ||
12 | cp librtmp.3 $(MANDIR)/man3 | ||
13 | |||
14 | install_so: librtmp.$(SO_EXT) | ||
15 | + -mkdir -p $(SODIR) | ||
16 | cp librtmp.$(SO_EXT) $(SODIR) | ||
17 | cd $(SODIR); ln -sf librtmp.$(SO_EXT) librtmp.$(SOX) | ||
18 | |||
diff --git a/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.4.bb b/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.4.bb new file mode 100644 index 000000000..a1e650243 --- /dev/null +++ b/meta-multimedia/recipes-multimedia/rtmpdump/rtmpdump_2.4.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "RTMP Dump" | ||
2 | DESCRIPTION = "rtmpdump is a toolkit for RTMP streams. All forms of RTMP are \ | ||
3 | supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps://." | ||
4 | HOMEPAGE = "http://rtmpdump.mplayerhq.hu/" | ||
5 | LICENSE = "GPLv2" | ||
6 | LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe" | ||
7 | |||
8 | DEPENDS = "openssl zlib" | ||
9 | |||
10 | SRCREV = "3121324046e4ca1934e7e28293fc8326475d5053" | ||
11 | SRC_URI = " \ | ||
12 | git://git.ffmpeg.org/rtmpdump \ | ||
13 | file://fix-racing-build-issue.patch" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | inherit autotools-brokensep | ||
18 | |||
19 | EXTRA_OEMAKE = " \ | ||
20 | CC='${CC}' LD='${LD} ${STAGING_LIBDIR}' \ | ||
21 | SYS=posix INC=-I=/usr/include DESTDIR=${D} \ | ||
22 | prefix=${prefix} libdir=${libdir} incdir=${includedir}/librtmp bindir=${bindir} mandir=${mandir}" | ||