Move all to deprecated folder.
This commit is contained in:
@@ -0,0 +1,53 @@
|
||||
menuconfig BR2_PACKAGE_GST_PLUGINS_UGLY
|
||||
bool "gst-plugins-ugly"
|
||||
select BR2_PACKAGE_GST_PLUGINS_BASE
|
||||
help
|
||||
A set of well-supported plug-ins for GStreamer, but might pose
|
||||
problems for distributors.
|
||||
|
||||
http://gstreamer.freedesktop.org/
|
||||
|
||||
if BR2_PACKAGE_GST_PLUGINS_UGLY
|
||||
|
||||
comment "dependency-less plugins"
|
||||
|
||||
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_ASFDEMUX
|
||||
bool "asfdemux"
|
||||
|
||||
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_DVDLPCMDEC
|
||||
bool "dvdlpcmdec"
|
||||
|
||||
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_DVDSUB
|
||||
bool "dvdsub"
|
||||
|
||||
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_IEC958
|
||||
bool "iec958"
|
||||
|
||||
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MPEGAUDIOPARSE
|
||||
bool "mpegaudioparse"
|
||||
|
||||
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MPEGSTREAM
|
||||
bool "mpegstream"
|
||||
|
||||
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_REALMEDIA
|
||||
bool "realmedia"
|
||||
|
||||
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_SYNAESTHESIA
|
||||
bool "synaesthesia"
|
||||
|
||||
comment "plugins with external dependencies (there may be more available)"
|
||||
|
||||
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_LAME
|
||||
bool "lame (*.mp3 audio encoder)"
|
||||
select BR2_PACKAGE_LAME
|
||||
|
||||
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MAD
|
||||
bool "mad (*.mp3 audio)"
|
||||
select BR2_PACKAGE_LIBID3TAG
|
||||
select BR2_PACKAGE_LIBMAD
|
||||
|
||||
config BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MPEG2DEC
|
||||
bool "mpeg2dec"
|
||||
select BR2_PACKAGE_LIBMPEG2
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,5 @@
|
||||
# From http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-0.10.19.tar.xz.md5
|
||||
md5 ba26045c8c8c91f0d48d327ccf53ac0c gst-plugins-ugly-0.10.19.tar.xz
|
||||
# Locally computed
|
||||
sha256 4934f65ff892637e7efaf1cfe635779189dde429d0706f40c86a3aac476ea873 gst-plugins-ugly-0.10.19.tar.xz
|
||||
sha256 2a8aa4cd019fab333f1f8377bf7afa426d3038a033361d90fab70c335e9a53e7 cdio-cd-text-api.patch
|
||||
@@ -0,0 +1,90 @@
|
||||
################################################################################
|
||||
#
|
||||
# gst-plugins-ugly
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GST_PLUGINS_UGLY_VERSION = 0.10.19
|
||||
GST_PLUGINS_UGLY_SOURCE = gst-plugins-ugly-$(GST_PLUGINS_UGLY_VERSION).tar.xz
|
||||
GST_PLUGINS_UGLY_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-ugly
|
||||
GST_PLUGINS_UGLY_PATCH = http://git.alpinelinux.org/cgit/aports/plain/main/gst-plugins-ugly0.10/cdio-cd-text-api.patch
|
||||
# COPYING is in fact LGPLv2.1, but all of the code is v2+
|
||||
# (except for one test, xingmux)
|
||||
GST_PLUGINS_UGLY_LICENSE = LGPLv2+, GPLv2+ (synaesthesia)
|
||||
GST_PLUGINS_UGLY_LICENSE_FILES = COPYING
|
||||
|
||||
GST_PLUGINS_UGLY_CONF_OPTS = \
|
||||
--disable-examples
|
||||
|
||||
GST_PLUGINS_UGLY_DEPENDENCIES = gstreamer gst-plugins-base
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_ASFDEMUX),y)
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --enable-asfdemux
|
||||
else
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --disable-asfdemux
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_DVDLPCMDEC),y)
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --enable-dvdlpcmdec
|
||||
else
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --disable-dvdlpcmdec
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_DVDSUB),y)
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --enable-dvdsub
|
||||
else
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --disable-dvdsub
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_IEC958),y)
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --enable-iec958
|
||||
else
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --disable-iec958
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MPEGAUDIOPARSE),y)
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --enable-mpegaudioparse
|
||||
else
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --disable-mpegaudioparse
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MPEGSTREAM),y)
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --enable-mpegstream
|
||||
else
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --disable-mpegstream
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_REALMEDIA),y)
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --enable-realmedia
|
||||
else
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --disable-realmedia
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_SYNAESTHESIA),y)
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --enable-synaesthesia
|
||||
else
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --disable-synaesthesia
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_LAME),y)
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --enable-lame
|
||||
GST_PLUGINS_UGLY_DEPENDENCIES += lame
|
||||
else
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --disable-lame
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MAD),y)
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --enable-mad
|
||||
GST_PLUGINS_UGLY_DEPENDENCIES += libid3tag libmad
|
||||
else
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --disable-mad
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GST_PLUGINS_UGLY_PLUGIN_MPEG2DEC),y)
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --enable-mpeg2dec
|
||||
GST_PLUGINS_UGLY_DEPENDENCIES += libmpeg2
|
||||
else
|
||||
GST_PLUGINS_UGLY_CONF_OPTS += --disable-mpeg2dec
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user