From 84d589a963d902849b7022091e97ec71c38ed82e Mon Sep 17 00:00:00 2001 From: Gustavo Zacarias Date: Mon, 30 Apr 2012 03:48:15 +0000 Subject: package/multimedia: move multimedia libraries out Move multimedia libraries ouf of the Audio and Video category into the Libraries/Multimedia one. Signed-off-by: Gustavo Zacarias Signed-off-by: Peter Korsgaard --- package/libmpeg2/Config.in | 13 ++++++++++++ package/libmpeg2/libmpeg2-0.5.1-altivec.patch | 23 ++++++++++++++++++++ package/libmpeg2/libmpeg2.mk | 30 +++++++++++++++++++++++++++ 3 files changed, 66 insertions(+) create mode 100644 package/libmpeg2/Config.in create mode 100644 package/libmpeg2/libmpeg2-0.5.1-altivec.patch create mode 100644 package/libmpeg2/libmpeg2.mk (limited to 'package/libmpeg2') diff --git a/package/libmpeg2/Config.in b/package/libmpeg2/Config.in new file mode 100644 index 000000000..3694689a9 --- /dev/null +++ b/package/libmpeg2/Config.in @@ -0,0 +1,13 @@ +config BR2_PACKAGE_LIBMPEG2 + bool "libmpeg2" + help + MPEG1/MPEG2 video decoder library + + http://libmpeg2.sourceforge.net/ + +config BR2_PACKAGE_LIBMPEG2_BINS + bool "mpeg2 binaries" + depends on BR2_PACKAGE_LIBMPEG2 + help + Install mpeg2dec, corrupt_mpeg2 and extract_mpeg2 programs as + well. diff --git a/package/libmpeg2/libmpeg2-0.5.1-altivec.patch b/package/libmpeg2/libmpeg2-0.5.1-altivec.patch new file mode 100644 index 000000000..4928a62e6 --- /dev/null +++ b/package/libmpeg2/libmpeg2-0.5.1-altivec.patch @@ -0,0 +1,23 @@ +[PATCH] fix altivec.h detection + +Patch from Gentoo: + +http://sources.gentoo.org/cgi-bin/viewvc.cgi/gentoo-x86/media-libs/libmpeg2/files/libmpeg2-0.5.1-altivec.patch?revision=1.1&view=markup + +Signed-off-by: Peter Korsgaard +--- a/configure.ac.bak 2010-05-25 17:12:14.756245990 +0000 ++++ b/configure.ac 2010-05-25 17:11:51.629581723 +0000 +@@ -79,11 +79,10 @@ + CFLAGS="$OPT_CFLAGS $TRY_CFLAGS $CFLAGS" + AC_MSG_CHECKING([if is needed]) + AC_TRY_COMPILE([], +- [typedef vector int t; +- vec_ld(0, (unsigned char *)0);], ++ [vector int t; t = vec_add(t,t);], + [have_altivec=yes; AC_MSG_RESULT(no)], + [AC_TRY_COMPILE([#include ], +- [typedef vector int t; vec_ld(0, (unsigned char *)0);], ++ [vector int t; t = vec_add(t,t);], + [AC_DEFINE([HAVE_ALTIVEC_H],, + [Define to 1 if you have the header.]) + have_altivec=yes; AC_MSG_RESULT(yes)], diff --git a/package/libmpeg2/libmpeg2.mk b/package/libmpeg2/libmpeg2.mk new file mode 100644 index 000000000..5290af15e --- /dev/null +++ b/package/libmpeg2/libmpeg2.mk @@ -0,0 +1,30 @@ +############################################################# +# +# libmpeg2 +# +############################################################# +LIBMPEG2_VERSION = 0.5.1 +LIBMPEG2_SOURCE = libmpeg2-$(LIBMPEG2_VERSION).tar.gz +LIBMPEG2_SITE = http://libmpeg2.sourceforge.net/files/ +LIBMPEG2_INSTALL_STAGING = YES +LIBMPEG2_AUTORECONF = YES +LIBMPEG2_CONF_OPT = --without-x --disable-directx + +ifeq ($(BR2_PACKAGE_SDL),y) +LIBMPEG2_CONF_ENV += ac_cv_prog_SDLCONFIG=$(STAGING_DIR)/usr/bin/sdl-config +LIBMPEG2_CONF_OPT += --enable-sdl +LIBMPEG2_DEPENDENCIES += sdl +else +LIBMPEG2_CONF_OPT += --disable-sdl +endif + +ifneq ($(BR2_PACKAGE_LIBMPEG2_BINS),y) +define LIBMPEG2_REMOVE_BINS + rm -f $(addprefix $(TARGET_DIR)/usr/bin/,\ + mpeg2dec corrupt_mpeg2 extract_mpeg2) +endef + +LIBMPEG2_POST_INSTALL_TARGET_HOOKS += LIBMPEG2_REMOVE_BINS +endif + +$(eval $(call AUTOTARGETS)) -- cgit v1.2.3