code
string
repo_name
string
path
string
language
string
license
string
size
int64
config BR2_PACKAGE_GPM bool "gpm" depends on !BR2_STATIC_LIBS depends on BR2_USE_MMU # fork() help "gpm" means general purpose mouse (server) and provides mouse support for Linux virtual consoles. gpm-root (to draw menus in current virtual console; config file in /etc/gpm-root.conf) and disable-paste (to disable paste buffer for security reasons), will also be installed. http://www.nico.schottelius.org/software/gpm/ if BR2_PACKAGE_GPM config BR2_PACKAGE_GPM_INSTALL_TEST_TOOLS bool "install test tools" help Install gpm test tools (get-versions, mev, hltest, mouse-test, display-buttons & display-coords). endif comment "gpm mouse server needs a toolchain w/ dynamic library" depends on BR2_STATIC_LIBS depends on BR2_USE_MMU
shibajee/buildroot
package/gpm/Config.in
in
mit
767
# Locally computed: sha256 a955053b36556ffa7c628ce18fd6de7d625966573fa412fb08869533d8f7385c gpm-1.20.7.tar.lzma
shibajee/buildroot
package/gpm/gpm.hash
hash
mit
114
################################################################################ # # gpm # ################################################################################ GPM_VERSION = 1.20.7 GPM_SOURCE = gpm-$(GPM_VERSION).tar.lzma GPM_SITE = http://www.nico.schottelius.org/software/gpm/archives GPM_LICENSE = GPLv2+ GPM_LICENSE_FILES = COPYING GPM_INSTALL_STAGING = YES GPM_DEPENDENCIES = host-bison # if not already installed in staging dir, gpm Makefile may fail to find some # of the headers needed to generate build dependencies, the first time it is # built. CPPFLAGS is used to pass the right include path to dependency rules. GPM_CONF_ENV = CPPFLAGS="$(TARGET_CPPFLAGS) -I$(@D)/src/headers/" \ ac_cv_path_emacs=no # For some reason, Microblaze gcc does not define __ELF__, which gpm # configure script uses to determine whether the architecture uses ELF # binaries and therefore can build shared libraries. We fix this by # telling GPM that ELF is used on Microblaze. ifeq ($(BR2_microblaze),y) GPM_CONF_ENV += itz_cv_sys_elf=yes endif # gpm and ncurses have a circular dependency. As gpm function GPM_Wgetch() # (requiring ncurses) is not recommended for use by ncurses people themselves # and as it's better to have gpm support in ncurses that the contrary, we force # gpm to not look after ncurses explicitly. # http://invisible-island.net/ncurses/ncurses.faq.html#using_gpm_lib GPM_CONF_OPTS = --without-curses # configure is missing but gpm seems not compatible with our autoreconf # mechanism so we have to do it manually instead of using GPM_AUTORECONF = YES define GPM_RUN_AUTOGEN cd $(@D) && PATH=$(BR_PATH) ./autogen.sh endef GPM_PRE_CONFIGURE_HOOKS += GPM_RUN_AUTOGEN GPM_DEPENDENCIES += host-automake host-autoconf host-libtool # gpm tries to build/install .info doc even if makeinfo isn't installed on the # host, so we have to disable global doc installation to prevent autobuild # errors. define GPM_DISABLE_DOC_INSTALL $(SED) 's/SUBDIRS = src doc contrib/SUBDIRS = src contrib/' \ $(@D)/Makefile.in endef GPM_POST_PATCH_HOOKS += GPM_DISABLE_DOC_INSTALL ifeq ($(BR2_PACKAGE_GPM_INSTALL_TEST_TOOLS),) define GPM_REMOVE_TEST_TOOLS_FROM_TARGET for tools in mev hltest mouse-test display-buttons \ get-versions display-coords; do \ rm -f $(TARGET_DIR)/usr/bin/$$tools ; \ done endef GPM_POST_INSTALL_TARGET_HOOKS += GPM_REMOVE_TEST_TOOLS_FROM_TARGET endif define GPM_INSTALL_GPM_ROOT_CONF_ON_TARGET $(INSTALL) -m 0644 -D $(@D)/conf/gpm-root.conf $(TARGET_DIR)/etc/ endef GPM_POST_INSTALL_TARGET_HOOKS += GPM_INSTALL_GPM_ROOT_CONF_ON_TARGET $(eval $(autotools-package))
shibajee/buildroot
package/gpm/gpm.mk
mk
mit
2,620
comment "gpsd needs a toolchain w/ threads, dynamic library" depends on BR2_USE_MMU depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS menuconfig BR2_PACKAGE_GPSD bool "gpsd" # Uses fork() depends on BR2_USE_MMU depends on BR2_TOOLCHAIN_HAS_THREADS # Always tries to build a shared library depends on !BR2_STATIC_LIBS help gpsd is a service daemon that monitors one or more GPSes or AIS receivers attached to a host computer through serial or USB ports, making all data on the location/course/velocity of the sensors available to be queried on TCP port 2947 of the host computer. The D-Bus interface is included if dbus-glib is enabled. http://www.catb.org/gpsd/ if BR2_PACKAGE_GPSD config BR2_PACKAGE_GPSD_DEVICES string "Where to look for GPSes" default "/dev/ttyS1" comment "Features" config BR2_PACKAGE_GPSD_CLIENT_DEBUG bool "client debugging support" config BR2_PACKAGE_GPSD_OLDSTYLE bool "oldstyle (pre-JSON) protocol support" config BR2_PACKAGE_GPSD_PROFILING bool "profiling support" depends on BR2_TOOLCHAIN_USES_GLIBC depends on !BR2_aarch64 comment "profiling support not available with uClibc-based toolchain" depends on !BR2_TOOLCHAIN_USES_GLIBC config BR2_PACKAGE_GPSD_NTP_SHM bool "NTP time hinting support" config BR2_PACKAGE_GPSD_PPS bool "PPS time syncing support" select BR2_PACKAGE_GPSD_NTP_SHM config BR2_PACKAGE_GPSD_USER bool "GPSD privilege revocation user" config BR2_PACKAGE_GPSD_USER_VALUE string "user to run as" default "nobody" depends on BR2_PACKAGE_GPSD_USER config BR2_PACKAGE_GPSD_GROUP bool "GPSD privilege revocation group" config BR2_PACKAGE_GPSD_GROUP_VALUE string "group to run as" default "nobody" depends on BR2_PACKAGE_GPSD_GROUP config BR2_PACKAGE_GPSD_FIXED_PORT_SPEED bool "compile with fixed serial port speed" config BR2_PACKAGE_GPSD_FIXED_PORT_SPEED_VALUE int "serial port speed" default "9600" depends on BR2_PACKAGE_GPSD_FIXED_PORT_SPEED config BR2_PACKAGE_GPSD_MAX_CLIENT bool "compile with limited maximum clients" config BR2_PACKAGE_GPSD_MAX_CLIENT_VALUE int "maximum number of clients" default "10" depends on BR2_PACKAGE_GPSD_MAX_CLIENT config BR2_PACKAGE_GPSD_MAX_DEV bool "compile with maximum allowed devices" config BR2_PACKAGE_GPSD_MAX_DEV_VALUE int "maximum allowed devices" default "2" depends on BR2_PACKAGE_GPSD_MAX_DEV config BR2_PACKAGE_GPSD_RECONFIGURE bool "allow gpsd to change device settings" default y config BR2_PACKAGE_GPSD_CONTROLSEND bool "allow gpsctl/gpsmon to change device settings" default y config BR2_PACKAGE_GPSD_SQUELCH bool "squelch gpsd_report and gpsd_hexdump to save cpu" comment "Protocols" config BR2_PACKAGE_GPSD_AIVDM bool "Aivdm" help Aivdm support config BR2_PACKAGE_GPSD_ASHTECH bool "Ashtech" help Ashtech support config BR2_PACKAGE_GPSD_EARTHMATE bool "Earthmate" help DeLorme EarthMate Zodiac support config BR2_PACKAGE_GPSD_EVERMORE bool "EverMore" help EverMore binary support config BR2_PACKAGE_GPSD_FURY bool "Fury" help Jackson Labs Fury and Firefly support config BR2_PACKAGE_GPSD_FV18 bool "FV-18" help San Jose Navigation FV-18 support config BR2_PACKAGE_GPSD_GARMIN bool "Garmin (kernel)" help Garmin kernel driver support config BR2_PACKAGE_GPSD_GARMIN_SIMPLE_TXT bool "Garmin (simple text)" help Garmin Simple Text support config BR2_PACKAGE_GPSD_GEOSTAR bool "Geostar" help Geostar Protocol support config BR2_PACKAGE_GPSD_GPSCLOCK bool "GPSClock" help GPSClock support config BR2_PACKAGE_GPSD_ITRAX bool "iTrax" help iTrax support config BR2_PACKAGE_GPSD_MTK3301 bool "MTK-3301" help Mediatek MTK-3301 support config BR2_PACKAGE_GPSD_NAVCOM bool "Navcom" help Navcom binary support config BR2_PACKAGE_GPSD_NMEA bool "NMEA" default y help Generic NMEA support config BR2_PACKAGE_GPSD_NMEA2000 bool "NMEA2000" select BR2_PACKAGE_GPSD_NAVCOM select BR2_PACKAGE_GPSD_AIVDM help NMEA2000/CAN support config BR2_PACKAGE_GPSD_NTRIP bool "NTRIP" help NTRIP support config BR2_PACKAGE_GPSD_OCEANSERVER bool "OceanServer" help OceanServer Digital Compass support config BR2_PACKAGE_GPSD_ONCORE bool "OnCore" help OnCore support config BR2_PACKAGE_GPSD_RTCM104V2 bool "RTCM104 v2" help RTCM104 v2 support config BR2_PACKAGE_GPSD_RTCM104V3 bool "RTCM104 v3" help RTCM104 v3 support config BR2_PACKAGE_GPSD_SIRF bool "SiRF" help SiRF binary support config BR2_PACKAGE_GPSD_SUPERSTAR2 bool "SuperStarII" help Novatel SuperStarII binary support config BR2_PACKAGE_GPSD_TRIMBLE_TSIP bool "Trimble TSIP" help Trimble TSIP support config BR2_PACKAGE_GPSD_TRIPMATE bool "TripMate" help Delorme TripMate support config BR2_PACKAGE_GPSD_TRUE_NORTH bool "True North Technologies" help True North Technologies support config BR2_PACKAGE_GPSD_UBX bool "UBX" help uBlox UBX binary support endif
shibajee/buildroot
package/gpsd/Config.in
in
mit
4,938
#!/bin/sh # # Starts the gps daemon. # NAME=gpsd DAEMON=/usr/sbin/$NAME DEVICES=/dev/ttyS1 PIDFILE=/var/run/$NAME.pid start() { printf "Starting $NAME: " start-stop-daemon -S -q -p $PIDFILE --exec $DAEMON -- -P $PIDFILE $DEVICES && echo "OK" || echo "Failed" } stop() { printf "Stopping $NAME: " start-stop-daemon -K -q -p $PIDFILE && echo "OK" || echo "Failed" rm -f $PIDFILE } restart() { stop start } case "$1" in start) start ;; stop) stop ;; restart|reload) restart ;; *) echo "Usage: $0 {start|stop|restart}" exit 1 esac exit $?
shibajee/buildroot
package/gpsd/S50gpsd
none
mit
667
# Locally calculated sha256 03579af13a4d3fe0c5b79fa44b5f75c9f3cac6749357f1d99ce5d38c09bc2029 gpsd-3.16.tar.gz
shibajee/buildroot
package/gpsd/gpsd.hash
hash
mit
110
################################################################################ # # gpsd # ################################################################################ GPSD_VERSION = 3.16 GPSD_SITE = http://download-mirror.savannah.gnu.org/releases/gpsd GPSD_LICENSE = BSD-3c GPSD_LICENSE_FILES = COPYING GPSD_INSTALL_STAGING = YES GPSD_DEPENDENCIES = host-scons host-pkgconf GPSD_LDFLAGS = $(TARGET_LDFLAGS) GPSD_CFLAGS = $(TARGET_CFLAGS) GPSD_SCONS_ENV = $(TARGET_CONFIGURE_OPTS) GPSD_SCONS_OPTS = \ arch=$(ARCH)\ prefix=/usr\ sysroot=$(STAGING_DIR)\ strip=no\ python=no ifeq ($(BR2_PACKAGE_NCURSES),y) GPSD_DEPENDENCIES += ncurses else GPSD_SCONS_OPTS += ncurses=no endif # Build libgpsmm if we've got C++ ifeq ($(BR2_INSTALL_LIBSTDCPP),y) GPSD_LDFLAGS += -lstdc++ GPSD_SCONS_OPTS += libgpsmm=yes else GPSD_SCONS_OPTS += libgpsmm=no endif # prevents from triggering GCC ICE # A bug was reported to the gcc bug tracker: # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=68485 ifeq ($(BR2_microblaze),y) GPSD_CFLAGS += -fno-expensive-optimizations -fno-schedule-insns endif # Enable or disable Qt binding ifeq ($(BR2_PACKAGE_QT_NETWORK),y) GPSD_SCONS_ENV += QMAKE="$(QT_QMAKE)" GPSD_DEPENDENCIES += qt else GPSD_SCONS_OPTS += qt=no endif # If libusb is available build it before so the package can use it ifeq ($(BR2_PACKAGE_LIBUSB),y) GPSD_DEPENDENCIES += libusb else GPSD_SCONS_OPTS += usb=no endif # If bluetooth is available build it before so the package can use it ifeq ($(BR2_PACKAGE_BLUEZ_UTILS),y) GPSD_DEPENDENCIES += bluez_utils else GPSD_SCONS_OPTS += bluez=no endif # If pps-tools is available, build it before so the package can use it # (HAVE_SYS_TIMEPPS_H). ifeq ($(BR2_PACKAGE_PPS_TOOLS),y) GPSD_DEPENDENCIES += pps-tools endif ifeq ($(BR2_PACKAGE_DBUS_GLIB),y) GPSD_SCONS_OPTS += dbus_export=yes GPSD_DEPENDENCIES += dbus-glib endif # Protocol support ifneq ($(BR2_PACKAGE_GPSD_ASHTECH),y) GPSD_SCONS_OPTS += ashtech=no endif ifneq ($(BR2_PACKAGE_GPSD_AIVDM),y) GPSD_SCONS_OPTS += aivdm=no endif ifneq ($(BR2_PACKAGE_GPSD_EARTHMATE),y) GPSD_SCONS_OPTS += earthmate=no endif ifneq ($(BR2_PACKAGE_GPSD_EVERMORE),y) GPSD_SCONS_OPTS += evermore=no endif ifneq ($(BR2_PACKAGE_GPSD_FURY),y) GPSD_SCONS_OPTS += fury=no endif ifneq ($(BR2_PACKAGE_GPSD_FV18),y) GPSD_SCONS_OPTS += fv18=no endif ifneq ($(BR2_PACKAGE_GPSD_GARMIN),y) GPSD_SCONS_OPTS += garmin=no endif ifneq ($(BR2_PACKAGE_GPSD_GARMIN_SIMPLE_TXT),y) GPSD_SCONS_OPTS += garmintxt=no endif ifneq ($(BR2_PACKAGE_GPSD_GEOSTAR),y) GPSD_SCONS_OPTS += geostar=no endif ifneq ($(BR2_PACKAGE_GPSD_GPSCLOCK),y) GPSD_SCONS_OPTS += gpsclock=no endif ifneq ($(BR2_PACKAGE_GPSD_ITRAX),y) GPSD_SCONS_OPTS += itrax=no endif ifneq ($(BR2_PACKAGE_GPSD_MTK3301),y) GPSD_SCONS_OPTS += mtk3301=no endif ifneq ($(BR2_PACKAGE_GPSD_NMEA),y) GPSD_SCONS_OPTS += nmea0183=no endif ifneq ($(BR2_PACKAGE_GPSD_NTRIP),y) GPSD_SCONS_OPTS += ntrip=no endif ifneq ($(BR2_PACKAGE_GPSD_NAVCOM),y) GPSD_SCONS_OPTS += navcom=no endif ifneq ($(BR2_PACKAGE_GPSD_NMEA2000),y) GPSD_SCONS_OPTS += nmea2000=no endif ifneq ($(BR2_PACKAGE_GPSD_OCEANSERVER),y) GPSD_SCONS_OPTS += oceanserver=no endif ifneq ($(BR2_PACKAGE_GPSD_ONCORE),y) GPSD_SCONS_OPTS += oncore=no endif ifneq ($(BR2_PACKAGE_GPSD_RTCM104V2),y) GPSD_SCONS_OPTS += rtcm104v2=no endif ifneq ($(BR2_PACKAGE_GPSD_RTCM104V3),y) GPSD_SCONS_OPTS += rtcm104v3=no endif ifneq ($(BR2_PACKAGE_GPSD_SIRF),y) GPSD_SCONS_OPTS += sirf=no endif ifneq ($(BR2_PACKAGE_GPSD_SUPERSTAR2),y) GPSD_SCONS_OPTS += superstar2=no endif ifneq ($(BR2_PACKAGE_GPSD_TRIMBLE_TSIP),y) GPSD_SCONS_OPTS += tsip=no endif ifneq ($(BR2_PACKAGE_GPSD_TRIPMATE),y) GPSD_SCONS_OPTS += tripmate=no endif ifneq ($(BR2_PACKAGE_GPSD_TRUE_NORTH),y) GPSD_SCONS_OPTS += tnt=no endif ifneq ($(BR2_PACKAGE_GPSD_UBX),y) GPSD_SCONS_OPTS += ublox=no endif # Features ifneq ($(BR2_PACKAGE_GPSD_NTP_SHM),y) GPSD_SCONS_OPTS += ntpshm=no endif ifneq ($(BR2_PACKAGE_GPSD_PPS),y) GPSD_SCONS_OPTS += pps=no endif ifeq ($(BR2_PACKAGE_GPSD_SQUELCH),y) GPSD_SCONS_OPTS += squelch=yes endif ifneq ($(BR2_PACKAGE_GPSD_RECONFIGURE),y) GPSD_SCONS_OPTS += reconfigure=no endif ifneq ($(BR2_PACKAGE_GPSD_CONTROLSEND),y) GPSD_SCONS_OPTS += controlsend=no endif ifneq ($(BR2_PACKAGE_GPSD_OLDSTYLE),y) GPSD_SCONS_OPTS += oldstyle=no endif ifeq ($(BR2_PACKAGE_GPSD_PROFILING),y) GPSD_SCONS_OPTS += profiling=yes endif ifneq ($(BR2_PACKAGE_GPSD_CLIENT_DEBUG),y) GPSD_SCONS_OPTS += clientdebug=no endif ifeq ($(BR2_PACKAGE_GPSD_USER),y) GPSD_SCONS_OPTS += gpsd_user=$(BR2_PACKAGE_GPSD_USER_VALUE) endif ifeq ($(BR2_PACKAGE_GPSD_GROUP),y) GPSD_SCONS_OPTS += gpsd_group=$(BR2_PACKAGE_GPSD_GROUP_VALUE) endif ifeq ($(BR2_PACKAGE_GPSD_FIXED_PORT_SPEED),y) GPSD_SCONS_OPTS += fixed_port_speed=$(BR2_PACKAGE_GPSD_FIXED_PORT_SPEED_VALUE) endif ifeq ($(BR2_PACKAGE_GPSD_MAX_CLIENT),y) GPSD_SCONS_OPTS += limited_max_clients=$(BR2_PACKAGE_GPSD_MAX_CLIENT_VALUE) endif ifeq ($(BR2_PACKAGE_GPSD_MAX_DEV),y) GPSD_SCONS_OPTS += limited_max_devices=$(BR2_PACKAGE_GPSD_MAX_DEV_VALUE) endif GPSD_SCONS_ENV += LDFLAGS="$(GPSD_LDFLAGS)" CFLAGS="$(GPSD_CFLAGS)" define GPSD_BUILD_CMDS (cd $(@D); \ $(GPSD_SCONS_ENV) \ $(SCONS) \ $(GPSD_SCONS_OPTS)) endef define GPSD_INSTALL_TARGET_CMDS (cd $(@D); \ $(GPSD_SCONS_ENV) \ DESTDIR=$(TARGET_DIR) \ $(SCONS) \ $(GPSD_SCONS_OPTS) \ install) endef define GPSD_INSTALL_INIT_SYSV $(INSTALL) -m 0755 -D package/gpsd/S50gpsd $(TARGET_DIR)/etc/init.d/S50gpsd $(SED) 's,^DEVICES=.*,DEVICES=$(BR2_PACKAGE_GPSD_DEVICES),' $(TARGET_DIR)/etc/init.d/S50gpsd endef define GPSD_INSTALL_STAGING_CMDS (cd $(@D); \ $(GPSD_SCONS_ENV) \ DESTDIR=$(STAGING_DIR) \ $(SCONS) \ $(GPSD_SCONS_OPTS) \ install) endef # After installing the udev rule, make it writable so that this # package can be re-built/re-installed. ifeq ($(BR2_PACKAGE_HAS_UDEV),y) define GPSD_INSTALL_UDEV_RULES (cd $(@D); \ $(GPSD_SCONS_ENV) \ DESTDIR=$(TARGET_DIR) \ $(SCONS) \ $(GPSD_SCONS_OPTS) \ udev-install) chmod u+w $(TARGET_DIR)/lib/udev/rules.d/25-gpsd.rules endef GPSD_POST_INSTALL_TARGET_HOOKS += GPSD_INSTALL_UDEV_RULES endif $(eval $(generic-package))
shibajee/buildroot
package/gpsd/gpsd.mk
mk
mit
6,131
Add $(LDLIBS) support to enable clean static builds (for libintl). Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> diff -Nura gptfdisk-0.8.10.orig/Makefile gptfdisk-0.8.10/Makefile --- gptfdisk-0.8.10.orig/Makefile 2015-05-01 08:45:14.667748141 -0300 +++ gptfdisk-0.8.10/Makefile 2015-05-01 08:45:42.685699419 -0300 @@ -14,19 +14,19 @@ all: cgdisk gdisk sgdisk fixparts gdisk: $(LIB_OBJS) gdisk.o gpttext.o - $(CXX) $(LIB_OBJS) gdisk.o gpttext.o $(LDFLAGS) -luuid -o gdisk + $(CXX) $(LIB_OBJS) gdisk.o gpttext.o $(LDFLAGS) -luuid $(LDLIBS) -o gdisk # $(CXX) $(LIB_OBJS) gdisk.o gpttext.o $(LDFLAGS) -licuio -licuuc -luuid -o gdisk cgdisk: $(LIB_OBJS) cgdisk.o gptcurses.o - $(CXX) $(LIB_OBJS) cgdisk.o gptcurses.o $(LDFLAGS) -luuid -lncursesw -o cgdisk + $(CXX) $(LIB_OBJS) cgdisk.o gptcurses.o $(LDFLAGS) -luuid -lncursesw $(LDLIBS) -o cgdisk # $(CXX) $(LIB_OBJS) cgdisk.o gptcurses.o $(LDFLAGS) -licuio -licuuc -luuid -lncurses -o cgdisk sgdisk: $(LIB_OBJS) sgdisk.o gptcl.o - $(CXX) $(LIB_OBJS) sgdisk.o gptcl.o $(LDFLAGS) -luuid -lpopt -o sgdisk + $(CXX) $(LIB_OBJS) sgdisk.o gptcl.o $(LDFLAGS) -luuid -lpopt $(LDLIBS) -o sgdisk # $(CXX) $(LIB_OBJS) sgdisk.o gptcl.o $(LDFLAGS) -licuio -licuuc -luuid -lpopt -o sgdisk fixparts: $(MBR_LIB_OBJS) fixparts.o - $(CXX) $(MBR_LIB_OBJS) fixparts.o $(LDFLAGS) -o fixparts + $(CXX) $(MBR_LIB_OBJS) fixparts.o $(LDFLAGS) $(LDLIBS) -o fixparts lint: #no pre-reqs lint $(SRCS)
shibajee/buildroot
package/gptfdisk/0001-ldlibs.patch
patch
mit
1,452
comment "gptfdisk needs a toolchain w/ wchar, C++" depends on !(BR2_INSTALL_LIBSTDCPP && BR2_USE_WCHAR) config BR2_PACKAGE_GPTFDISK bool "gptfdisk" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR # util-linux select BR2_PACKAGE_UTIL_LINUX select BR2_PACKAGE_UTIL_LINUX_LIBUUID select BR2_PACKAGE_GPTFDISK_GDISK if \ !(BR2_PACKAGE_GPTFDISK_SGDISK || BR2_PACKAGE_GPTFDISK_CGDISK) help GPT fdisk (consisting of the gdisk and sgdisk programs) is a text-mode partitioning tool that works on Globally Unique Identifier (GUID) Partition Table (GPT) disks, rather than on the more common (through 2010) Master Boot Record (MBR) partition tables. http://www.rodsbooks.com/gdisk/ if BR2_PACKAGE_GPTFDISK config BR2_PACKAGE_GPTFDISK_GDISK bool "interactive gdisk" help Install the interactive GUID partition table (GPT) manipulator /usr/sbin/gdisk which is modelled after and quite similar in use to the traditional MBR based fdisk tool. config BR2_PACKAGE_GPTFDISK_SGDISK bool "command line sgdisk" select BR2_PACKAGE_POPT help Install the command-line GUID partition table (GPT) manipulator /usr/sbin/sgdisk which is named after the traditional MBR based sfdisk tool albeit with an entirely different option syntax. config BR2_PACKAGE_GPTFDISK_CGDISK bool "ncurses cgdisk" select BR2_PACKAGE_NCURSES select BR2_PACKAGE_NCURSES_WCHAR # needed because of UTF-16 depends on !(BR2_bfin && BR2_BINFMT_FLAT) # ncurses wchar support help Install the ncurses-based GUID partition table (GPT) manipulator /usr/sbin/cgdisk. endif
shibajee/buildroot
package/gptfdisk/Config.in
in
mit
1,587
config BR2_PACKAGE_HOST_GPTFDISK bool "host gptfdisk" select BR2_PACKAGE_HOST_UTIL_LINUX help GPT fdisk (consisting of the gdisk and sgdisk programs) is a text-mode partitioning tool that works on Globally Unique Identifier (GUID) Partition Table (GPT) disks, rather than on the more common (through 2010) Master Boot Record (MBR) partition tables. http://www.rodsbooks.com/gdisk/
shibajee/buildroot
package/gptfdisk/Config.in.host
host
mit
403
# From http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.0/ md5 2061f917af084215898d4fea04d8388f gptfdisk-1.0.0.tar.gz sha1 97f25db2def1c1939ed3954520bfd9948806d95a gptfdisk-1.0.0.tar.gz
shibajee/buildroot
package/gptfdisk/gptfdisk.hash
hash
mit
197
################################################################################ # # gptfdisk # ################################################################################ GPTFDISK_VERSION = 1.0.0 GPTFDISK_SITE = http://downloads.sourceforge.net/sourceforge/gptfdisk GPTFDISK_LICENSE = GPLv2+ GPTFDISK_LICENSE_FILES = COPYING GPTFDISK_TARGETS_$(BR2_PACKAGE_GPTFDISK_GDISK) += gdisk GPTFDISK_TARGETS_$(BR2_PACKAGE_GPTFDISK_SGDISK) += sgdisk GPTFDISK_TARGETS_$(BR2_PACKAGE_GPTFDISK_CGDISK) += cgdisk GPTFDISK_DEPENDENCIES += util-linux ifeq ($(BR2_PACKAGE_GPTFDISK_SGDISK),y) GPTFDISK_DEPENDENCIES += popt endif ifeq ($(BR2_PACKAGE_GPTFDISK_CGDISK),y) GPTFDISK_DEPENDENCIES += ncurses endif ifeq ($(BR2_STATIC_LIBS),y) # gptfdisk dependencies may link against libintl/libiconv, so we need # to do so as well when linking statically ifeq ($(BR2_PACKAGE_GETTEXT),y) GPTFDISK_DEPENDENCIES += gettext GPTFDISK_LDLIBS += -lintl endif ifeq ($(BR2_PACKAGE_LIBICONV),y) GPTFDISK_DEPENDENCIES += libiconv GPTFDISK_LDLIBS += -liconv endif endif define GPTFDISK_BUILD_CMDS $(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D) \ LDLIBS='$(GPTFDISK_LDLIBS)' $(GPTFDISK_TARGETS_y) endef define GPTFDISK_INSTALL_TARGET_CMDS for i in $(GPTFDISK_TARGETS_y); do \ $(INSTALL) -D -m 0755 $(@D)/$$i $(TARGET_DIR)/usr/sbin/$$i || exit 1; \ done endef HOST_GPTFDISK_DEPENDENCIES = host-util-linux host-popt define HOST_GPTFDISK_BUILD_CMDS $(HOST_MAKE_ENV) $(MAKE) $(HOST_CONFIGURE_OPTS) -C $(@D) sgdisk endef define HOST_GPTFDISK_INSTALL_CMDS $(INSTALL) -D -m 0755 $(@D)/sgdisk $(HOST_DIR)/usr/sbin/sgdisk endef $(eval $(generic-package)) $(eval $(host-generic-package))
shibajee/buildroot
package/gptfdisk/gptfdisk.mk
mk
mit
1,679
--- a/src/Makefile.in 2006-12-02 20:41:25.000000000 -0500 +++ b/src/Makefile.in 2008-02-13 14:00:25.000000000 -0500 @@ -200,7 +200,7 @@ SUBDIRS = icons DIST_SUBDIRS = icons INCLUDES = -I$(srcdir) -I$(builddir) \ -I$(top_srcdir) -I$(top_builddir) \ - -I$(includedir) $(GTK_CFLAGS) + $(GTK_CFLAGS) module_SLIK = \ intl.h \
shibajee/buildroot
package/gqview/0001-make.patch
patch
mit
340
config BR2_PACKAGE_GQVIEW bool "gqview" depends on BR2_PACKAGE_LIBGTK2 help GQview is an image viewer for Unix operating systems http://prdownloads.sourceforge.net/gqview
shibajee/buildroot
package/gqview/Config.in
in
mit
181
# Locally computed: sha256 12fea494e607a69eff31cdca13d306ef1b0b3b7850be0f8b236f267d8f2e9546 gqview-2.1.5.tar.gz
shibajee/buildroot
package/gqview/gqview.hash
hash
mit
114
################################################################################ # # gqview # ################################################################################ GQVIEW_VERSION = 2.1.5 GQVIEW_SITE = http://prdownloads.sourceforge.net/gqview GQVIEW_DEPENDENCIES = host-pkgconf libgtk2 GQVIEW_CONF_ENV = LIBS="-lm" GQVIEW_LICENSE = GPLv2 GQVIEW_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/gqview/gqview.mk
mk
mit
411
config BR2_PACKAGE_GR_OSMOSDR bool "gr-osmosdr" depends on BR2_PACKAGE_GNURADIO select BR2_PACKAGE_GNURADIO_BLOCKS help GNU Radio block for interfacing with various radio hardware if BR2_PACKAGE_GR_OSMOSDR config BR2_PACKAGE_GR_OSMOSDR_PYTHON bool "python support" depends on BR2_PACKAGE_GNURADIO_PYTHON help Enable Python support config BR2_PACKAGE_GR_OSMOSDR_IQFILE bool "IQ File Source support" help Enable IQ File Source support config BR2_PACKAGE_GR_OSMOSDR_RTLSDR bool "Osmocom RTLSDR support" select BR2_PACKAGE_LIBRTLSDR help Enable Osmocom RTLSDR support config BR2_PACKAGE_GR_OSMOSDR_RTLSDR_TCP bool "RTLSDR TCP Client support" help Enable RTLSDR TCP client support config BR2_PACKAGE_GR_OSMOSDR_RFSPACE bool "RFSPACE Receivers support" help Enable RFSPACE Receivers support endif
shibajee/buildroot
package/gr-osmosdr/Config.in
in
mit
832
# Locally calculated: sha256 274960cd32bc8a7216eeed8967bf078efd6123332808b405ec42c24a7e426b7c gr-osmosdr-164a09fc11cec2d8b15b38e8b512fa542d6cecc7.tar.gz
shibajee/buildroot
package/gr-osmosdr/gr-osmosdr.hash
hash
mit
153
################################################################################ # # gr-osmosdr # ################################################################################ GR_OSMOSDR_VERSION = 164a09fc11cec2d8b15b38e8b512fa542d6cecc7 GR_OSMOSDR_SITE = $(call github,osmocom,gr-osmosdr,$(GR_OSMOSDR_VERSION)) GR_OSMOSDR_LICENSE = GPLv3+ GR_OSMOSDR_LICENSE_FILES = COPYING # gr-osmosdr prevents doing an in-source-tree build GR_OSMOSDR_SUPPORTS_IN_SOURCE_BUILD = NO GR_OSMOSDR_DEPENDENCIES = gnuradio GR_OSMOSDR_CONF_OPTS = -DENABLE_DEFAULT=OFF # For third-party blocks, the gr-osmosdr libraries are mandatory at # compile time. GR_OSMOSDR_INSTALL_STAGING = YES ifeq ($(BR2_PACKAGE_GR_OSMOSDR_PYTHON),y) GR_OSMOSDR_CONF_OPTS += -DENABLE_PYTHON=ON GR_OSMOSDR_DEPENDENCIES += python else GR_OSMOSDR_CONF_OPTS += -DENABLE_PYTHON=OFF endif ifeq ($(BR2_PACKAGE_GR_OSMOSDR_IQFILE),y) GR_OSMOSDR_CONF_OPTS += -DENABLE_FILE=ON else GR_OSMOSDR_CONF_OPTS += -DENABLE_FILE=OFF endif ifeq ($(BR2_PACKAGE_GR_OSMOSDR_RTLSDR),y) GR_OSMOSDR_CONF_OPTS += -DENABLE_RTL=ON GR_OSMOSDR_DEPENDENCIES += librtlsdr else GR_OSMOSDR_CONF_OPTS += -DENABLE_RTL=OFF endif ifeq ($(BR2_PACKAGE_GR_OSMOSDR_RTLSDR_TCP),y) GR_OSMOSDR_CONF_OPTS += -DENABLE_RTL_TCP=ON else GR_OSMOSDR_CONF_OPTS += -DENABLE_RTL_TCP=OFF endif ifeq ($(BR2_PACKAGE_GR_OSMOSDR_RFSPACE),y) GR_OSMOSDR_CONF_OPTS += -DENABLE_RFSPACE=ON else GR_OSMOSDR_CONF_OPTS += -DENABLE_RFSPACE=OFF endif $(eval $(cmake-package))
shibajee/buildroot
package/gr-osmosdr/gr-osmosdr.mk
mk
mit
1,473
config BR2_PACKAGE_GRANITE bool "granite" depends on BR2_USE_WCHAR depends on BR2_TOOLCHAIN_HAS_THREADS depends on BR2_USE_MMU # fork() depends on BR2_PACKAGE_LIBGTK3 select BR2_PACKAGE_LIBGEE select BR2_PACKAGE_LIBGLIB2 help An extension to GTK+ that provides several useful widgets and classes to ease application development. https://launchpad.net/granite comment "granite needs libgtk3 and a toolchain w/ wchar, threads" depends on BR2_USE_MMU depends on !BR2_PACKAGE_LIBGTK3 || !BR2_USE_WCHAR \ || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/granite/Config.in
in
mit
553
# From https://launchpad.net/granite/0.3/0.3.1/+download/granite-0.3.1.tar.xz/+md5 md5 4297d4fcec8cfe2e08b460a45c779bbe granite-0.3.1.tar.xz # Calculated based on the hash above sha256 8ec1d61f9aba75f1b3a745e721288b0dfb34cb11d1307be80cef7b0571c2dec6 granite-0.3.1.tar.xz
shibajee/buildroot
package/granite/granite.hash
hash
mit
271
################################################################################ # # granite # ################################################################################ GRANITE_VERSION_MAJOR = 0.3 GRANITE_VERSION = $(GRANITE_VERSION_MAJOR).1 GRANITE_SITE = https://launchpad.net/granite/$(GRANITE_VERSION_MAJOR)/$(GRANITE_VERSION)/+download GRANITE_SOURCE = granite-$(GRANITE_VERSION).tar.xz GRANITE_DEPENDENCIES = host-pkgconf host-vala libgee libglib2 libgtk3 GRANITE_INSTALL_STAGING = YES GRANITE_LICENSE = LGPLv3+ GRANITE_LICENSE_FILES = COPYING $(eval $(cmake-package))
shibajee/buildroot
package/granite/granite.mk
mk
mit
584
config BR2_PACKAGE_GRANTLEE bool "grantlee" depends on BR2_PACKAGE_QT5_JSCORE_AVAILABLE && BR2_PACKAGE_QT5 select BR2_PACKAGE_QT5SCRIPT select BR2_PACKAGE_QT5BASE_GUI help Qt implementation of the Django template framework http://www.grantlee.org
shibajee/buildroot
package/grantlee/Config.in
in
mit
259
# Locally calculated after checking pgp signature sha256 ea2e402466c74bb533eee2c7252209ec61cd93a5d236fecd625b4a0eb13a1478 grantlee-5.1.0.tar.gz
shibajee/buildroot
package/grantlee/grantlee.hash
hash
mit
148
################################################################################ # # grantlee # ################################################################################ GRANTLEE_VERSION = 5.1.0 GRANTLEE_SITE = http://downloads.grantlee.org GRANTLEE_INSTALL_STAGING = YES GRANTLEE_LICENSE = LGPLv2.1+ GRANTLEE_LICENSE_FILES = COPYING.LIB GRANTLEE_DEPENDENCIES = qt5base qt5script $(eval $(cmake-package))
shibajee/buildroot
package/grantlee/grantlee.mk
mk
mit
413
Don't use -Wdouble-promotion gcc option The warning flag isn't recognized for older GCC versions (blackfin), so just disable it. Signed-off-by: Gustavo Zacarias <gustavo.zacarias@free-electrons.com> [Gustavo: update for 1.3.5] diff -Nura graphite2-1.3.5.orig/src/CMakeLists.txt graphite2-1.3.5/src/CMakeLists.txt --- graphite2-1.3.5.orig/src/CMakeLists.txt 2016-02-15 11:46:45.941906112 -0300 +++ graphite2-1.3.5/src/CMakeLists.txt 2016-02-15 11:46:54.237194222 -0300 @@ -111,9 +111,6 @@ COMPILE_FLAGS "-Wall -Wextra -Wno-unknown-pragmas -Wendif-labels -Wshadow -Wctor-dtor-privacy -Wnon-virtual-dtor -fno-rtti -fno-exceptions -fvisibility=hidden -fvisibility-inlines-hidden -fno-stack-protector" LINK_FLAGS "-nodefaultlibs ${GRAPHITE_LINK_FLAGS}" LINKER_LANGUAGE C) - if (CMAKE_COMPILER_IS_GNUCXX) - add_definitions(-Wdouble-promotion) - endif (CMAKE_COMPILER_IS_GNUCXX) message(STATUS "Compiler ID is: ${CMAKE_CXX_COMPILER_ID}") if (${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang") add_definitions(-Wimplicit-fallthrough)
shibajee/buildroot
package/graphite2/0001-disable-double-promotion.patch
patch
mit
1,088
config BR2_PACKAGE_GRAPHITE2 bool "graphite2" depends on BR2_INSTALL_LIBSTDCPP depends on !BR2_STATIC_LIBS help Graphite is a project within SIL's scripts and software dev groups to provide cross-platform rendering for complex writing systems. http://graphite.sil.org/ comment "graphite2 needs a toolchain w/ C++, dynamic library" depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS
shibajee/buildroot
package/graphite2/Config.in
in
mit
403
# From http://sourceforge.net/projects/silgraphite/files/graphite2 md5 236d2cb1f831fe33083112afbb555f0e graphite2-1.3.8.tgz sha1 0c802628dacf3bfa2c1654d7d72b76e20e1adc97 graphite2-1.3.8.tgz
shibajee/buildroot
package/graphite2/graphite2.hash
hash
mit
190
################################################################################ # # graphite2 # ################################################################################ GRAPHITE2_VERSION = 1.3.8 GRAPHITE2_SOURCE = graphite2-$(GRAPHITE2_VERSION).tgz GRAPHITE2_SITE = http://downloads.sourceforge.net/project/silgraphite/graphite2 GRAPHITE2_INSTALL_STAGING = YES GRAPHITE2_LICENSE = LGPLv2.1+ GRAPHITE2_LICENSE_FILES = LICENSE # Avoid building docs and tests to save time define GRAPHITE2_DISABLE_TESTS_DOC $(SED) '/^add_subdirectory(doc)/d' \ -e '/^add_subdirectory(tests)/d' \ -e '/add_subdirectory(gr2fonttest)/d' \ $(@D)/CMakeLists.txt endef GRAPHITE2_POST_PATCH_HOOKS += GRAPHITE2_DISABLE_TESTS_DOC $(eval $(cmake-package))
shibajee/buildroot
package/graphite2/graphite2.mk
mk
mit
746
config BR2_PACKAGE_GREP bool "grep" depends on BR2_USE_WCHAR depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS select BR2_PACKAGE_GETTEXT if BR2_NEEDS_GETTEXT_IF_LOCALE help The GNU regular expression matcher. http://www.gnu.org/software/grep/grep.html comment "grep needs a toolchain w/ wchar" depends on !BR2_USE_WCHAR depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
shibajee/buildroot
package/grep/Config.in
in
mit
372
# Locally calculated after checking signature sha256 e21e83bac50450e0d0d61a42c154ee0dceaacdbf4f604ef6e79071cb8e596830 grep-2.25.tar.xz
shibajee/buildroot
package/grep/grep.hash
hash
mit
135
################################################################################ # # grep # ################################################################################ GREP_VERSION = 2.25 GREP_SITE = $(BR2_GNU_MIRROR)/grep GREP_SOURCE = grep-$(GREP_VERSION).tar.xz GREP_LICENSE = GPLv3+ GREP_LICENSE_FILES = COPYING GREP_CONF_OPTS = --disable-perl-regexp \ $(if $(BR2_TOOLCHAIN_USES_MUSL),--with-included-regex) GREP_DEPENDENCIES = $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) # link with iconv if enabled ifeq ($(BR2_PACKAGE_LIBICONV),y) GREP_CONF_ENV += LIBS=-liconv GREP_DEPENDENCIES += libiconv endif # link with pcre if enabled ifeq ($(BR2_PACKAGE_PCRE),y) GREP_CONF_OPTS += --enable-perl-regexp GREP_DEPENDENCIES += pcre endif # Full grep preferred over busybox grep ifeq ($(BR2_PACKAGE_BUSYBOX),y) GREP_DEPENDENCIES += busybox endif $(eval $(autotools-package))
shibajee/buildroot
package/grep/grep.mk
mk
mit
880
config BR2_PACKAGE_GSETTINGS_DESKTOP_SCHEMAS bool "gsettings-desktop-schemas" depends on BR2_USE_WCHAR # glib2 depends on BR2_TOOLCHAIN_HAS_THREADS # glib2 depends on BR2_USE_MMU # glib2 select BR2_PACKAGE_LIBGLIB2 help gsettings-desktop-schemas contains a collection of GSettings schemas for settings shared by various components of a desktop. https://github.com/GNOME/gsettings-desktop-schemas comment "gsettings-desktop-schemas needs a toolchain w/ wchar, threads" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/gsettings-desktop-schemas/Config.in
in
mit
569
# From http://ftp.acc.umu.se/pub/gnome/sources/gsettings-desktop-schemas/3.20/gsettings-desktop-schemas-3.20.0.sha256sum sha256 55a41b533c0ab955e0a36a84d73829451c88b027d8d719955d8f695c35c6d9c1 gsettings-desktop-schemas-3.20.0.tar.xz
shibajee/buildroot
package/gsettings-desktop-schemas/gsettings-desktop-schemas.hash
hash
mit
233
################################################################################ # # gsettings-desktop-schemas # ################################################################################ GSETTINGS_DESKTOP_SCHEMAS_VERSION_MAJOR = 3.20 GSETTINGS_DESKTOP_SCHEMAS_VERSION = $(GSETTINGS_DESKTOP_SCHEMAS_VERSION_MAJOR).0 GSETTINGS_DESKTOP_SCHEMAS_SOURCE = gsettings-desktop-schemas-$(GSETTINGS_DESKTOP_SCHEMAS_VERSION).tar.xz GSETTINGS_DESKTOP_SCHEMAS_SITE = http://ftp.gnome.org/pub/gnome/sources/gsettings-desktop-schemas/$(GSETTINGS_DESKTOP_SCHEMAS_VERSION_MAJOR) GSETTINGS_DESKTOP_SCHEMAS_INSTALL_STAGING = YES GSETTINGS_DESKTOP_SCHEMAS_DEPENDENCIES = host-intltool host-pkgconf libglib2 GSETTINGS_DESKTOP_SCHEMAS_LICENSE = LGPLv2.1+ GSETTINGS_DESKTOP_SCHEMAS_LICENSE_FILES = COPYING $(eval $(autotools-package))
shibajee/buildroot
package/gsettings-desktop-schemas/gsettings-desktop-schemas.mk
mk
mit
820
config BR2_PACKAGE_GSL bool "gsl" help The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. The library provides a wide range of mathematical routines such as random number generators, special functions and least-squares fitting. There are over 1000 functions in total with an extensive test suite. http://www.gnu.org/software/gsl
shibajee/buildroot
package/gsl/Config.in
in
mit
382
# Locally calculated after checking pgp signature sha256 73bc2f51b90d2a780e6d266d43e487b3dbd78945dd0b04b14ca5980fe28d2f53 gsl-1.16.tar.gz
shibajee/buildroot
package/gsl/gsl.hash
hash
mit
138
################################################################################ # # gsl # ################################################################################ GSL_VERSION = 1.16 GSL_SITE = $(BR2_GNU_MIRROR)/gsl GSL_INSTALL_STAGING = YES GSL_LICENSE = GPLv3 GSL_LICENSE_FILES = COPYING GSL_CONFIG_SCRIPTS = gsl-config # uClibc pretends to have fenv support as it installs <fenv.h>, but in # practice, it only implements it for i386. Problem reported upstream # at: http://lists.busybox.net/pipermail/uclibc/2012-October/047067.html. # So we tell gsl that fenv related functions are not available in this # case. ifeq ($(BR2_TOOLCHAIN_USES_UCLIBC),y) ifneq ($(BR2_i386),y) GSL_CONF_ENV = \ ac_cv_have_decl_feenableexcept=no \ ac_cv_have_decl_fesettrapenable=no endif endif $(eval $(autotools-package))
shibajee/buildroot
package/gsl/gsl.mk
mk
mit
818
config BR2_PACKAGE_GSSDP bool "gssdp" depends on BR2_USE_WCHAR # glib2, libsoup depends on BR2_TOOLCHAIN_HAS_THREADS # glib2, libsoup depends on BR2_USE_MMU # glib2, libsoup select BR2_PACKAGE_LIBGLIB2 select BR2_PACKAGE_LIBSOUP help GSSDP implements resource discovery and announcement over SSDP. http://www.gupnp.org comment "gssdp needs a toolchain w/ wchar, threads" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS
shibajee/buildroot
package/gssdp/Config.in
in
mit
467
# Hash from: http://ftp.gnome.org/pub/gnome/sources/gssdp/0.14/gssdp-0.14.16.sha256sum: sha256 54520bfb230b9c8c938eba88d87df44e04749682c95fb8aa381d13441345c5b2 gssdp-0.14.16.tar.xz
shibajee/buildroot
package/gssdp/gssdp.hash
hash
mit
181
################################################################################ # # gssdp # ################################################################################ GSSDP_VERSION_MAJOR = 0.14 GSSDP_VERSION = $(GSSDP_VERSION_MAJOR).16 GSSDP_SOURCE = gssdp-$(GSSDP_VERSION).tar.xz GSSDP_SITE = http://ftp.gnome.org/pub/gnome/sources/gssdp/$(GSSDP_VERSION_MAJOR) GSSDP_LICENSE = LGPLv2+ GSSDP_LICENSE_FILES = COPYING GSSDP_INSTALL_STAGING = YES GSSDP_DEPENDENCIES = host-pkgconf libglib2 libsoup $(eval $(autotools-package))
shibajee/buildroot
package/gssdp/gssdp.mk
mk
mit
533
# Gstreamer 0.10.x & Plugins source "package/gstreamer/gstreamer/Config.in" if BR2_PACKAGE_GSTREAMER source "package/gstreamer/gst-plugins-base/Config.in" source "package/gstreamer/gst-plugins-good/Config.in" source "package/gstreamer/gst-plugins-bad/Config.in" source "package/gstreamer/gst-plugins-ugly/Config.in" source "package/gstreamer/gst-ffmpeg/Config.in" source "package/gstreamer/gst-dsp/Config.in" source "package/gstreamer/gst-fsl-plugins/Config.in" source "package/gstreamer/gst-omapfb/Config.in" source "package/gstreamer/gst-plugin-x170/Config.in" endif
shibajee/buildroot
package/gstreamer/Config.in
in
mit
570
config BR2_PACKAGE_GST_DSP bool "gst-dsp" depends on BR2_cortex_a8 select BR2_PACKAGE_TIDSP_BINARIES help GStreamer plug-in to access TI OMAP3 DSP algorithms. http://code.google.com/p/gst-dsp/
shibajee/buildroot
package/gstreamer/gst-dsp/Config.in
in
mit
204
# Locally computed: sha256 45437a038979916de74e78a2cc7a0b01ba3982d0848e1e483a054c9cf0ce5883 gst-dsp-v0.10.2.tar.gz
shibajee/buildroot
package/gstreamer/gst-dsp/gst-dsp.hash
hash
mit
116
################################################################################ # # gst-dsp # ################################################################################ GST_DSP_VERSION = v0.10.2 GST_DSP_SITE = $(call github,felipec,gst-dsp,$(GST_DSP_VERSION)) define GST_DSP_BUILD_CMDS $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) -e endef define GST_DSP_INSTALL_TARGET_CMDS $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) -e DESTDIR=$(TARGET_DIR) install endef GST_DSP_DEPENDENCIES = gstreamer tidsp-binaries host-pkgconf $(eval $(generic-package))
shibajee/buildroot
package/gstreamer/gst-dsp/gst-dsp.mk
mk
mit
555
gst-ffmpeg libav: Fixes compiling gst-ffmpeg with gcc-4.7 Fetch from: http://www.slackware.com/~alien/slackbuilds/gst-plugins-ffmpeg/build/gst-ffmpeg-0.10.13_gcc47.patch Signed-off-by: Bernd Kuhls <berndkuhls@hotmail.com> --- Submitted By: Andrew Benton <andy@benton.eu.com> Date: 2012-06-15 Initial Package Version: 0.10.13 Upstream Status: From upstream Origin: http://git.videolan.org/?p=ffmpeg.git;a=patch;h=5f654897e325349dacf2546674e0510bb72ecb50 Description: Fixes compiling gst-ffmpeg with gcc-4.7 libavcodec/x86/h264_qpel_mmx.c: Assembler messages: libavcodec/x86/h264_qpel_mmx.c:1294: Error: operand type mismatch for `cmp' libavcodec/x86/h264_qpel_mmx.c:1294: Error: operand type mismatch for `cmp' libavcodec/x86/h264_qpel_mmx.c:1298: Error: operand type mismatch for `cmp' libavcodec/x86/h264_qpel_mmx.c:1298: Error: operand type mismatch for `cmp' libavcodec/x86/h264_qpel_mmx.c:964: Error: operand type mismatch for `cmp' libavcodec/x86/h264_qpel_mmx.c:964: Error: operand type mismatch for `cmp' libavcodec/x86/h264_qpel_mmx.c:964: Error: operand type mismatch for `cmp' make[5]: *** [libavcodec/x86/dsputil_mmx.o] Error 1 Index: gst-ffmpeg-0.10.13/gst-libs/ext/libav/libavcodec/x86/h264_qpel_mmx.c =================================================================== --- gst-ffmpeg-0.10.13.orig/gst-libs/ext/libav/libavcodec/x86/h264_qpel_mmx.c 2012-03-30 11:39:41.324522051 -0700 +++ gst-ffmpeg-0.10.13/gst-libs/ext/libav/libavcodec/x86/h264_qpel_mmx.c 2012-03-30 11:54:08.152564075 -0700 @@ -398,7 +398,7 @@ "2: \n\t"\ \ : "+a"(src), "+c"(dst)\ - : "S"((x86_reg)srcStride), "D"((x86_reg)dstStride), "g"(h)\ + : "S"((x86_reg)srcStride), "D"((x86_reg)dstStride), "rm"(h)\ : "memory"\ );\ src += 4-(h+5)*srcStride;\ @@ -446,7 +446,7 @@ QPEL_H264HV(%%mm3, %%mm4, %%mm5, %%mm0, %%mm1, %%mm2, 15*48)\ "2: \n\t"\ : "+a"(src)\ - : "c"(tmp), "S"((x86_reg)srcStride), "g"(size)\ + : "c"(tmp), "S"((x86_reg)srcStride), "rm"(size)\ : "memory"\ );\ tmp += 4;\ @@ -823,7 +823,7 @@ "2: \n\t"\ \ : "+a"(src), "+c"(dst)\ - : "S"((x86_reg)srcStride), "D"((x86_reg)dstStride), "g"(h)\ + : "S"((x86_reg)srcStride), "D"((x86_reg)dstStride), "rm"(h)\ : XMM_CLOBBERS("%xmm0", "%xmm1", "%xmm2", "%xmm3", \ "%xmm4", "%xmm5", "%xmm6", "%xmm7",)\ "memory"\ @@ -878,7 +878,7 @@ QPEL_H264HV_XMM(%%xmm3, %%xmm4, %%xmm5, %%xmm0, %%xmm1, %%xmm2, 15*48) "2: \n\t" : "+a"(src) - : "c"(tmp), "S"((x86_reg)srcStride), "g"(size) + : "c"(tmp), "S"((x86_reg)srcStride), "rm"(size) : XMM_CLOBBERS("%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7",) "memory"
shibajee/buildroot
package/gstreamer/gst-ffmpeg/0001-gcc47.patch
patch
mit
3,045
Date: Mon, 1 Aug 2011 20:21:04 +0300 Subject: [libavcodec] arm: Avoid using the movw instruction needlessly MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit This fixes building for ARM11 without Thumb2. Signed-off-by: Martin Storsjö <martin@martin.st> [Arnout: backported to gst-ffmpeg, from ffmpeg 9a83adaf3] Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> --- gst-libs/ext/libav/libavcodec/arm/ac3dsp_armv6.S | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst-libs/ext/libav/libavcodec/arm/ac3dsp_armv6.S b/gst-libs/ext/libav/libavcodec/arm/ac3dsp_armv6.S index d3058ff..b6aee86 100644 --- a/gst-libs/ext/libav/libavcodec/arm/ac3dsp_armv6.S +++ b/gst-libs/ext/libav/libavcodec/arm/ac3dsp_armv6.S @@ -37,7 +37,7 @@ function ff_ac3_bit_alloc_calc_bap_armv6, export=1 ldrb r10, [r4], #1 1: ldrsh r9, [r0], #2 @ mask[band] - movw r8, #0x1fe0 + mov r8, #0xff0 sub r9, r9, r12 @ - snr_offset mov r11, r10 ldrb r10, [r4], #1 @ band_start_tab[band++] @@ -44,7 +44,7 @@ function ff_ac3_bit_alloc_calc_bap_armv6, export=1 subs r9, r9, r5 @ - floor movlt r9, #0 cmp r10, r3 @ - end - and r9, r9, r8 @ & 0x1fe0 + and r9, r9, r8, lsl #1 @ & 0x1fe0 subgt r8, r3, r11 suble r8, r10, r11 add r9, r9, r5 @ + floor => m -- 1.7.10.4
shibajee/buildroot
package/gstreamer/gst-ffmpeg/0002-arm-avoid-using-the-movw-instruction.patch
patch
mit
1,783
config BR2_PACKAGE_GST_FFMPEG bool "gst-ffmpeg" # Unsupported for MIPS R6. It bundles a version of libav which # doesn't have support for MIPS R6. depends on !BR2_mips_32r6 && !BR2_mips_64r6 # triggers https://gcc.gnu.org/bugzilla/show_bug.cgi?id=65151 on sh depends on BR2_TOOLCHAIN_GCC_AT_LEAST_5 || !BR2_sh select BR2_PACKAGE_GST_PLUGINS_BASE help GStreamer plugin containing one plugin with a set of elements using the Libav library. It contains most popular decoders as well as colorspace conversion elements. This package is configured to use an internal copy of the Libav library. http://gstreamer.freedesktop.org/modules/gst-ffmpeg.html if BR2_PACKAGE_GST_FFMPEG config BR2_PACKAGE_GST_FFMPEG_GPL bool "Enable GPL code" help Allow use of GPL code. The resulting libs and binaries will be under GPL. endif comment "gst-ffmpeg needs a toolchain w/ gcc >= 5" depends on !BR2_TOOLCHAIN_GCC_AT_LEAST_5 && BR2_sh
shibajee/buildroot
package/gstreamer/gst-ffmpeg/Config.in
in
mit
956
# From http://gstreamer.freedesktop.org/src/gst-ffmpeg/gst-ffmpeg-0.10.13.tar.bz2.md5 md5 7f5beacaf1312db2db30a026b36888c4 gst-ffmpeg-0.10.13.tar.bz2
shibajee/buildroot
package/gstreamer/gst-ffmpeg/gst-ffmpeg.hash
hash
mit
150
################################################################################ # # gst-ffmpeg # ################################################################################ GST_FFMPEG_VERSION = 0.10.13 GST_FFMPEG_SOURCE = gst-ffmpeg-$(GST_FFMPEG_VERSION).tar.bz2 GST_FFMPEG_SITE = http://gstreamer.freedesktop.org/src/gst-ffmpeg GST_FFMPEG_INSTALL_STAGING = YES GST_FFMPEG_DEPENDENCIES = host-pkgconf gstreamer gst-plugins-base ifeq ($(BR2_PACKAGE_GST_FFMPEG_GPL),y) GST_FFMPEG_CONF_OPTS += --disable-lgpl GST_FFMPEG_LICENSE = GPLv2+ (gst-ffmpeg), GPLv2+/GPLv3+ (libav) GST_FFMPEG_LICENSE_FILES = COPYING gst-libs/ext/libav/COPYING.GPLv2 gst-libs/ext/libav/COPYING.GPLv3 else GST_FFMPEG_CONF_OPTS += --enable-lgpl GST_FFMPEG_LICENSE = LGPLv2+ (gst-ffmpeg), LGPLv2.1+/LGPLv3+ (libav) GST_FFMPEG_LICENSE_FILES = COPYING.LIB gst-libs/ext/libav/COPYING.LGPLv2.1 gst-libs/ext/libav/COPYING.LGPLv3 endif GST_FFMPEG_CONF_EXTRA_OPTS = \ --cross-prefix=$(TARGET_CROSS) \ --target-os=linux \ --pkg-config='$(PKG_CONFIG_HOST_BINARY)' ifeq ($(BR2_PACKAGE_ZLIB),y) GST_FFMPEG_CONF_EXTRA_OPTS += --enable-zlib GST_FFMPEG_DEPENDENCIES += zlib else GST_FFMPEG_CONF_EXTRA_OPTS += --disable-zlib endif ifeq ($(BR2_PACKAGE_BZIP2),y) GST_FFMPEG_CONF_EXTRA_OPTS += --enable-bzlib GST_FFMPEG_DEPENDENCIES += bzip2 else GST_FFMPEG_CONF_EXTRA_OPTS += --disable-bzlib endif ifeq ($(BR2_X86_CPU_HAS_MMX),y) GST_FFMPEG_CONF_EXTRA_OPTS += --enable-yasm GST_FFMPEG_DEPENDENCIES += host-yasm else GST_FFMPEG_CONF_EXTRA_OPTS += --disable-yasm GST_FFMPEG_CONF_EXTRA_OPTS += --disable-mmx endif ifeq ($(BR2_X86_CPU_HAS_SSE),y) GST_FFMPEG_CONF_EXTRA_OPTS += --enable-sse else GST_FFMPEG_CONF_EXTRA_OPTS += --disable-sse endif ifeq ($(BR2_X86_CPU_HAS_SSSE3),y) GST_FFMPEG_CONF_EXTRA_OPTS += --enable-ssse3 else GST_FFMPEG_CONF_EXTRA_OPTS += --disable-ssse3 endif # Explicitly disable everything that doesn't match for ARM # FFMPEG "autodetects" by compiling an extended instruction via AS # This works on compilers that aren't built for generic by default ifeq ($(BR2_ARM_CPU_ARMV4),y) GST_FFMPEG_CONF_EXTRA_OPTS += --disable-armv5te endif ifeq ($(BR2_ARM_CPU_ARMV6)$(BR2_ARM_CPU_ARMV7A),y) GST_FFMPEG_CONF_EXTRA_OPTS += --enable-armv6 else GST_FFMPEG_CONF_EXTRA_OPTS += --disable-armv6 --disable-armv6t2 endif ifeq ($(BR2_ARM_CPU_HAS_NEON),y) GST_FFMPEG_CONF_EXTRA_OPTS += --enable-neon endif ifeq ($(BR2_POWERPC_CPU_HAS_ALTIVEC),y) GST_FFMPEG_CONF_EXTRA_OPTS += --enable-altivec else GST_FFMPEG_CONF_EXTRA_OPTS += --disable-altivec endif ifeq ($(BR2_STATIC_LIBS),) GST_FFMPEG_CONF_EXTRA_OPTS += --enable-pic endif GST_FFMPEG_CONF_OPTS += --with-ffmpeg-extra-configure="$(GST_FFMPEG_CONF_EXTRA_OPTS)" $(eval $(autotools-package))
shibajee/buildroot
package/gstreamer/gst-ffmpeg/gst-ffmpeg.mk
mk
mit
2,718
From ed649ccb8ddc724546172d329fca39b23c49b804 Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be> Date: Mon, 17 Dec 2012 17:58:28 +0100 Subject: [PATCH] gplay: add missing include Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> --- tools/gplay/gst_snapshot.c | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/gplay/gst_snapshot.c b/tools/gplay/gst_snapshot.c index 40dbb6f..596f399 100755 --- a/tools/gplay/gst_snapshot.c +++ b/tools/gplay/gst_snapshot.c @@ -22,6 +22,7 @@ #include <gst/gst.h> #include <string.h> +#include <stdio.h> #include "gst_snapshot.h" static void --
shibajee/buildroot
package/gstreamer/gst-fsl-plugins/0001-gplay-add-missing-include.patch
patch
mit
655
From 83b4f84b1c490b9bb816e1ecbc743d80d48cc06d Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be> Date: Tue, 18 Dec 2012 12:05:22 +0100 Subject: [PATCH] Fix bashism in configure script. The configure script uses +=, which is not POSIX. Debians that have the default dash as /bin/sh define a variable ending with + instead of appending to it. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> --- configure.ac | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/configure.ac b/configure.ac index 5968eb6..1a31a06 100755 --- a/configure.ac +++ b/configure.ac @@ -152,7 +152,7 @@ AC_SUBST(GST_PLUGINS_BASE_LIBS) AC_CHECK_HEADERS([vpu_lib.h], [HAVE_VPU_LIB=yes], [HAVE_VPU_LIB=no]) if test "x$HAVE_VPU_LIB" = "xyes"; then VPU_LIBS=`$PKG_CONFIG --libs libfslvpuwrap 2>/dev/null` - VPU_LIBS+=" -lvpu" + VPU_LIBS="$VPU_LIBS -lvpu" fi AC_SUBST(VPU_LIBS) @@ -176,14 +176,14 @@ AC_SUBST(RT_CFLAGS) AC_SUBST(RT_LIBS) FSL_MM_CORE_CFLAGS=`$PKG_CONFIG --cflags libfslaudiocodec 2>/dev/null` -FSL_MM_CORE_CFLAGS+=`$PKG_CONFIG --cflags libfslvideocodec 2>/dev/null` -FSL_MM_CORE_CFLAGS+=`$PKG_CONFIG --cflags libfslparser 2>/dev/null` -FSL_MM_CORE_CFLAGS+=`$PKG_CONFIG --cflags libfslvpuwrap 2>/dev/null` +FSL_MM_CORE_CFLAGS="$FSL_MM_CORE_CFLAGS `$PKG_CONFIG --cflags libfslvideocodec 2>/dev/null`" +FSL_MM_CORE_CFLAGS="$FSL_MM_CORE_CFLAGS `$PKG_CONFIG --cflags libfslparser 2>/dev/null`" +FSL_MM_CORE_CFLAGS="$FSL_MM_CORE_CFLAGS `$PKG_CONFIG --cflags libfslvpuwrap 2>/dev/null`" AC_SUBST(FSL_MM_CORE_CFLAGS) FSL_MM_CORE_LIBS=`$PKG_CONFIG --libs libfslaudiocodec 2>/dev/null` -FSL_MM_CORE_LIBS+=`$PKG_CONFIG --libs libfslvideocodec 2>/dev/null` -FSL_MM_CORE_LIBS+=`$PKG_CONFIG --libs libfslparser 2>/dev/null` +FSL_MM_CORE_LIBS="$FSL_MM_CORE_LIBS `$PKG_CONFIG --libs libfslvideocodec 2>/dev/null`" +FSL_MM_CORE_LIBS="$FSL_MM_CORE_LIBS `$PKG_CONFIG --libs libfslparser 2>/dev/null`" AC_SUBST(FSL_MM_CORE_LIBS) EXTRAPLATFORMCFLAGS="-DARM -D_GNUC_" --
shibajee/buildroot
package/gstreamer/gst-fsl-plugins/0002-Fix-bashism-in-configure-script.patch
patch
mit
2,053
From c58b658a93b1b6d6e94ba0306d58de845012cef6 Mon Sep 17 00:00:00 2001 From: "Arnout Vandecappelle (Essensium/Mind)" <arnout@mind.be> Date: Tue, 18 Dec 2012 12:22:52 +0100 Subject: [PATCH] Use proper objdump If the OBJDUMP environment variable is set, that should be used rather than the objdump in PATH. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 1a31a06..cc7557d 100755 --- a/configure.ac +++ b/configure.ac @@ -17,7 +17,7 @@ AC_DEFUN([FIND_PARSER_SONAME], AC_MSG_CHECKING([for lib_$1_parser_$2_elinux.3.0.so soname]) path=`$PKG_CONFIG --variable=libdir libfslparser` SONAME=$( $CC -print-file-name=$PKG_CONFIG_SYSROOT_DIR$path/lib_$1_parser_$2_elinux.so | \ - while read output; do objdump -p $output | \ + while read output; do $OBJDUMP -p $output | \ grep "SONAME" | \ sed -e 's/ \+SONAME \+//'; done 2> /dev/null ) if [[ -z "$SONAME" ]]; then @@ -36,7 +36,7 @@ AC_DEFUN([FIND_ACODEC_SONAME], AC_MSG_CHECKING([for lib_$1_wrap_$2_elinux.so soname]) path=`$PKG_CONFIG --variable=libdir libfslaudiocodec` SONAME=$( $CC -print-file-name=$PKG_CONFIG_SYSROOT_DIR$path/wrap/lib_$1_wrap_$2_elinux.so | \ - while read output; do objdump -p $output | \ + while read output; do $OBJDUMP -p $output | \ grep "SONAME" | \ sed -e 's/ \+SONAME \+//'; done 2> /dev/null ) if [[ -z "$SONAME" ]]; then --
shibajee/buildroot
package/gstreamer/gst-fsl-plugins/0003-Use-proper-objdump.patch
patch
mit
1,529
From 1ca4251d1284f2cb56e31aaec4d369809e2139c9 Mon Sep 17 00:00:00 2001 From: Peter Seiderer <ps.report@gmx.net> Date: Mon, 24 Feb 2014 16:30:39 +0100 Subject: [PATCH] Fix libgstfsl linkage (add -lrt for shared memory functions). Fixes runtime failure of gst-fsl-plugins, e.g.: (gst-plugin-scanner:1700): GStreamer-WARNING **: Failed to load plugin '/usr/lib/gstreamer-0.10/libmfw_vpu.so': /usr/lib/libgstfsl-0.10.so.0: undefined symbol: shm_open) Signed-off-by: Peter Seiderer <ps.report@gmx.net> --- configure.ac | 3 +++ libs/Makefile.am | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index a5d1655..7b5a7a6 100755 --- a/configure.ac +++ b/configure.ac @@ -170,6 +170,9 @@ AC_CHECK_LIB(ipu, mxc_ipu_lib_task_init, [IPU_LIBS=-lipu], [echo "No libipu arou AC_SUBST(IPU_CFLAGS) AC_SUBST(IPU_LIBS) +AC_SEARCH_LIBS([shm_open], [rt], [SHM_LIBS="-lrt"]) +AC_SUBST(SHM_LIBS) + dnl of the POSIX Real-Time Extensions. AC_CHECK_LIB(rt, clock_gettime) AC_SUBST(RT_CFLAGS) diff --git a/libs/Makefile.am b/libs/Makefile.am index 2f56bba..5b30657 100755 --- a/libs/Makefile.am +++ b/libs/Makefile.am @@ -42,7 +42,7 @@ libgstfsl_@GST_MAJORMINOR@_la_CFLAGS += -DIPULIB endif libgstfsl_@GST_MAJORMINOR@_la_LDFLAGS = -version-info @GSTMXLIBS_VERSION@ -libgstfsl_@GST_MAJORMINOR@_la_LIBADD = $(GST_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ -lgstinterfaces-$(GST_MAJORMINOR) $(IPU_LIBS) $(RT_LIBS) +libgstfsl_@GST_MAJORMINOR@_la_LIBADD = $(GST_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ -lgstinterfaces-$(GST_MAJORMINOR) $(IPU_LIBS) $(RT_LIBS) $(SHM_LIBS) libgstfsl_@GST_MAJORMINOR@includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/imx-mm libgstfsl_@GST_MAJORMINOR@include_HEADERS = \ -- 1.8.1.4
shibajee/buildroot
package/gstreamer/gst-fsl-plugins/0004-Fix-libgstfsl-linkage-add-lrt-for-shared-memory-func.patch
patch
mit
1,756
From ce90794a3458af0aed43b8570cf44cd87900185d Mon Sep 17 00:00:00 2001 From: Gary Bisson <bisson.gary@gmail.com> Date: Fri, 25 Jul 2014 16:44:53 -0700 Subject: [PATCH] Remove use of obsolete VIDIOC_DBG_G_CHIP_IDENT This ioctl should never be used in application as stated in videodev2.h header. Moreover, its use in this plugin was very limited. Signed-off-by: Gary Bisson <bisson.gary@gmail.com> --- src/misc/tvsrc/src/mfw_gst_tvsrc.c | 8 -------- src/misc/v4l_source/src/mfw_gst_v4lsrc.c | 7 ------- 2 files changed, 15 deletions(-) diff --git a/src/misc/tvsrc/src/mfw_gst_tvsrc.c b/src/misc/tvsrc/src/mfw_gst_tvsrc.c index 67e0cd2..f495b6f 100755 --- a/src/misc/tvsrc/src/mfw_gst_tvsrc.c +++ b/src/misc/tvsrc/src/mfw_gst_tvsrc.c @@ -450,7 +450,6 @@ mfw_gst_tvsrc_capture_setup (MFWGstTVSRC * v4l_src) struct v4l2_format fmt; struct v4l2_control ctrl; struct v4l2_streamparm parm; - struct v4l2_dbg_chip_ident chip; gint fd_v4l = 0; struct v4l2_mxc_offset off; gint in_width = 0, in_height = 0; @@ -461,13 +460,6 @@ mfw_gst_tvsrc_capture_setup (MFWGstTVSRC * v4l_src) return 0; } - if (ioctl (fd_v4l, VIDIOC_DBG_G_CHIP_IDENT, &chip)) { - g_print ("VIDIOC_DBG_G_CHIP_IDENT failed.\n"); - } else - g_print ("sensor chip is %s\n", chip.match.name); - - - if (ioctl (fd_v4l, VIDIOC_G_STD, &id) < 0) { g_print ("VIDIOC_G_STD failed\n"); close (fd_v4l); diff --git a/src/misc/v4l_source/src/mfw_gst_v4lsrc.c b/src/misc/v4l_source/src/mfw_gst_v4lsrc.c index 2c2e838..85e7ff0 100755 --- a/src/misc/v4l_source/src/mfw_gst_v4lsrc.c +++ b/src/misc/v4l_source/src/mfw_gst_v4lsrc.c @@ -464,7 +464,6 @@ mfw_gst_v4lsrc_capture_setup (MFWGstV4LSrc * v4l_src) struct v4l2_format fmt = {0}; struct v4l2_control ctrl = {0}; struct v4l2_streamparm parm = {0}; - struct v4l2_dbg_chip_ident chip = {0}; struct v4l2_frmsizeenum fszenum = {0}; gint input; gint fd_v4l = 0; @@ -476,12 +475,6 @@ mfw_gst_v4lsrc_capture_setup (MFWGstV4LSrc * v4l_src) return 0; } - if (ioctl (fd_v4l, VIDIOC_DBG_G_CHIP_IDENT, &chip)) { - GST_ERROR ("VIDIOC_DBG_G_CHIP_IDENT failed."); - } else - GST_INFO ("sensor chip is %s", chip.match.name); - - if (v4l_src->crop_pixel) { in_width = v4l_src->capture_width - (2 * v4l_src->crop_pixel); in_height = v4l_src->capture_height - (2 * v4l_src->crop_pixel); -- 2.0.1
shibajee/buildroot
package/gstreamer/gst-fsl-plugins/0005-Remove-use-of-obsolete-VIDIOC_DBG_G_CHIP_IDENT.patch
patch
mit
2,385
comment "gst-fsl-plugins needs an imx-specific Linux kernel to be built" depends on BR2_arm && !BR2_LINUX_KERNEL comment "gst-fsl-plugins needs a glibc toolchain" depends on BR2_arm depends on !BR2_TOOLCHAIN_USES_GLIBC config BR2_PACKAGE_GST_FSL_PLUGINS bool "gst-fsl-plugins" depends on BR2_LINUX_KERNEL depends on BR2_arm # Only relevant for i.MX depends on BR2_TOOLCHAIN_USES_GLIBC # imx-codec select BR2_PACKAGE_GST_PLUGINS_BASE select BR2_PACKAGE_IMX_VPUWRAP if BR2_PACKAGE_FREESCALE_IMX_HAS_VPU select BR2_PACKAGE_IMX_LIB select BR2_PACKAGE_IMX_PARSER select BR2_PACKAGE_IMX_CODEC select BR2_PACKAGE_FREESCALE_IMX help GStreamer plugins for hardware-accelerated audio and video parsers and codecs on i.MX platforms. It requires a kernel that includes the i.MX specific headers to be built. To use the VPU, its firmware blob must be installed as well. This can be found in the firmware-imx package in the "Hardware handling" menu. This library is provided by Freescale as-is and doesn't have an upstream. Pengutronix maintains gst-fsl-plugins at git://git.pengutronix.de/git/imx/gst-plugins-fsl-vpu.git but it diverges heavily from Freescale's original implementation. if BR2_PACKAGE_GST_FSL_PLUGINS choice prompt "i.MX platform" default BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX25 if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX25_3STACK default BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX27 if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX27ADS default BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX37 if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX37_3STACK default BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX50 if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX50 default BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX51 if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX51 default BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX53 if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX53 default BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX6 if BR2_PACKAGE_FREESCALE_IMX_PLATFORM_IMX6Q config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX233 bool "imx233" config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX25 select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX25_3STACK bool "imx25" config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX27 select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX27ADS bool "imx27" config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX28 bool "imx28" config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX31 bool "imx31" config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX35 bool "imx35" config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX37 select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX37_3STACK bool "imx37" config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX50 select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX50 bool "imx50" config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX51 select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX51 bool "imx51" config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX53 select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX53 bool "imx53" config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX5X select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX5X bool "imx5X" config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX6 select BR2_PACKAGE_IMX_LIB_PLATFORM_IMX6Q bool "imx6" endchoice config BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM string default "MX233" if BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX233 default "MX25" if BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX25 default "MX27" if BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX27 default "MX28" if BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX28 default "MX31" if BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX31 default "MX35" if BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX35 default "MX37" if BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX37 default "MX50" if BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX50 default "MX51" if BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX51 default "MX53" if BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX53 default "MX5X" if BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX5X default "MX6" if BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM_MX6 endif
shibajee/buildroot
package/gstreamer/gst-fsl-plugins/Config.in
in
mit
3,898
# locally computed sha256 568883b2a1d8d32e4004cb3f123790d0b4286c91c1fac38c9dc8e20bd1250764 gst-fsl-plugins-4.0.3.tar.gz
shibajee/buildroot
package/gstreamer/gst-fsl-plugins/gst-fsl-plugins.hash
hash
mit
121
################################################################################ # # gst-fsl-plugins # ################################################################################ GST_FSL_PLUGINS_VERSION = 4.0.3 GST_FSL_PLUGINS_SITE = $(FREESCALE_IMX_SITE) # Most is LGPLv2+, but some sources are copied from upstream and are # LGPLv2.1+, which essentially makes it LGPLv2.1+ GST_FSL_PLUGINS_LICENSE = LGPLv2+, LGPLv2.1+, PROPRIETARY (asf.h) GST_FSL_PLUGINS_LICENSE_FILES = COPYING-LGPL-2.1 COPYING-LGPL-2 GST_FSL_PLUGINS_INSTALL_STAGING = YES GST_FSL_PLUGINS_AUTORECONF = YES GST_FSL_PLUGINS_DEPENDENCIES += host-pkgconf gstreamer gst-plugins-base \ imx-lib imx-parser imx-codec ifeq ($(BR2_PACKAGE_FREESCALE_IMX_HAS_VPU),y) GST_FSL_PLUGINS_DEPENDENCIES += imx-vpuwrap endif GST_FSL_PLUGINS_CONF_ENV = \ PLATFORM=$(BR2_PACKAGE_GST_FSL_PLUGINS_PLATFORM) \ CROSS_ROOT="$(STAGING_DIR)" # needs access to imx-specific kernel headers GST_FSL_PLUGINS_DEPENDENCIES += linux GST_FSL_PLUGINS_CONF_ENV += CPPFLAGS="$(TARGET_CPPFLAGS) -idirafter $(LINUX_DIR)/include/uapi" ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y) GST_FSL_PLUGINS_DEPENDENCIES += xlib_libX11 GST_FSL_PLUGINS_CONF_OPTS += --enable-x11 else GST_FSL_PLUGINS_CONF_OPTS += --disable-x11 endif # Autoreconf requires an m4 directory to exist define GST_FSL_PLUGINS_PATCH_M4 mkdir -p $(@D)/m4 endef GST_FSL_PLUGINS_POST_PATCH_HOOKS += GST_FSL_PLUGINS_PATCH_M4 $(eval $(autotools-package))
shibajee/buildroot
package/gstreamer/gst-fsl-plugins/gst-fsl-plugins.mk
mk
mit
1,451
config BR2_PACKAGE_GST_OMAPFB bool "gst-omapfb" depends on BR2_cortex_a8 help GStreamer plug-in to use OMAP framebuffer. http://github.com/felipec/gst-omapfb
shibajee/buildroot
package/gstreamer/gst-omapfb/Config.in
in
mit
168
# Locally computed: sha256 56c719584d7a7ede5fc2053e8d1060f623b226a60672de0faba46fad646658a4 gst-omapfb-v1.0.tar.gz
shibajee/buildroot
package/gstreamer/gst-omapfb/gst-omapfb.hash
hash
mit
116
################################################################################ # # gst-omapfb # ################################################################################ GST_OMAPFB_VERSION = v1.0 GST_OMAPFB_SITE = $(call github,felipec,gst-omapfb,$(GST_OMAPFB_VERSION)) define GST_OMAPFB_BUILD_CMDS $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) -e endef define GST_OMAPFB_INSTALL_TARGET_CMDS $(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D) -e DESTDIR=$(TARGET_DIR) install endef GST_OMAPFB_DEPENDENCIES = gstreamer $(eval $(generic-package))
shibajee/buildroot
package/gstreamer/gst-omapfb/gst-omapfb.mk
mk
mit
548
The configure script is correctly getting the CFLAGS needed to compile a plugin for gstreamer and storing them in GST_BASE_CFLAGS but the Makefiles are never making use of those. We actually have to use AM_CPPFLAGS as AM_CFLAGS is used everywhere but on the real compiling rule... Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com> --- src/Makefile.am | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Makefile.am b/src/Makefile.am index 8cb51d1..6af5d91 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,6 +5,8 @@ ############################################################################## plugin_LTLIBRARIES = libgstx170.la +AM_CPPFLAGS = @GST_BASE_CFLAGS@ + ############################################################################## # for the next set of variables, rename the prefix if you renamed the .la, # # e.g. libgstplugin_la_SOURCES => libmysomething_la_SOURCES # -- 1.8.1.2
shibajee/buildroot
package/gstreamer/gst-plugin-x170/0001-correct-CFLAGS.patch
patch
mit
960
config BR2_PACKAGE_GST_PLUGIN_X170 bool "gst-plugin-x170" depends on BR2_arm926t # glibc toolchain includes WCHAR and threading for libglib2 depends on BR2_TOOLCHAIN_USES_GLIBC # on2-8170-libs depends on BR2_LINUX_KERNEL # on2-8170-libs select BR2_PACKAGE_ON2_8170_LIBS help GStreamer plug-in to use the Hantro X170 video decoder present on ATMEL AT91SAM9M10 SoC. http://www.at91.com/linux4sam/bin/view/Linux4SAM/SAM9M10Gstreamer comment "gst-plugin-x170 needs a glibc toolchain and a Linux kernel to be built" depends on BR2_arm926t depends on !BR2_LINUX_KERNEL || !BR2_TOOLCHAIN_USES_GLIBC
shibajee/buildroot
package/gstreamer/gst-plugin-x170/Config.in
in
mit
612
# Locally computed: sha256 734ded3618246d946b53c2c8c7ab5a0961287485aaef5fb9bf874f93e3caa342 gst-plugin-x170-1.0.tar.gz
shibajee/buildroot
package/gstreamer/gst-plugin-x170/gst-plugin-x170.hash
hash
mit
120
################################################################################ # # gst-plugin-x170 # ################################################################################ GST_PLUGIN_X170_VERSION = 1.0 GST_PLUGIN_X170_SITE = ftp://ftp.linux4sam.org/pub/demo/linux4sam_1.9/codec GST_PLUGIN_X170_LICENSE = BSD-1c #A license file is included but it is just a placeholder # There is no generated configure script in the tarball. GST_PLUGIN_X170_AUTORECONF = YES GST_PLUGIN_X170_AUTORECONF_OPTS = -Im4/ GST_PLUGIN_X170_DEPENDENCIES = gstreamer libglib2 on2-8170-libs $(eval $(autotools-package))
shibajee/buildroot
package/gstreamer/gst-plugin-x170/gst-plugin-x170.mk
mk
mit
607
From 1725e702a3622cb45c8142622dd419fa0c410ac9 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard <jacmet@sunsite.dk> Date: Wed, 12 Sep 2012 09:10:35 +0200 Subject: [PATCH] gst-plugins-bad: opus + jpegformat: unbreak non-debug build opus + jpegformat plugin builds fail when gstreamer is configured with --disable-gst-debug as they are checking the GST_DISABLE_DEBUG symbol instead of GST_DISABLE_GST_DEBUG. Submitted upstream as https://bugzilla.gnome.org/show_bug.cgi?id=683850 Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> --- ext/opus/gstopusdec.c | 2 +- ext/opus/gstopusenc.c | 4 ++-- gst/jpegformat/gstjpegparse.c | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/ext/opus/gstopusdec.c b/ext/opus/gstopusdec.c index 0e2805c..ab7221d 100644 --- a/ext/opus/gstopusdec.c +++ b/ext/opus/gstopusdec.c @@ -357,7 +357,7 @@ opus_dec_chain_parse_data (GstOpusDec * dec, GstBuffer * buffer) GST_DEBUG_OBJECT (dec, "Creating decoder with %d channels, %d Hz", dec->n_channels, dec->sample_rate); -#ifndef GST_DISABLE_DEBUG +#ifndef GST_DISABLE_GST_DEBUG gst_opus_common_log_channel_mapping_table (GST_ELEMENT (dec), opusdec_debug, "Mapping table", dec->n_channels, dec->channel_mapping); #endif diff --git a/ext/opus/gstopusenc.c b/ext/opus/gstopusenc.c index 240a2cb..d991795 100644 --- a/ext/opus/gstopusenc.c +++ b/ext/opus/gstopusenc.c @@ -589,7 +589,7 @@ gst_opus_enc_setup_channel_mappings (GstOpusEnc * enc, } } -#ifndef GST_DISABLE_DEBUG +#ifndef GST_DISABLE_GST_DEBUG GST_INFO_OBJECT (enc, "Mapping tables built: %d channels, %d stereo streams", enc->n_channels, enc->n_stereo_streams); @@ -654,7 +654,7 @@ gst_opus_enc_setup (GstOpusEnc * enc) { int error = OPUS_OK; -#ifndef GST_DISABLE_DEBUG +#ifndef GST_DISABLE_GST_DEBUG GST_DEBUG_OBJECT (enc, "setup: %d Hz, %d channels, %d stereo streams, family %d", enc->sample_rate, enc->n_channels, enc->n_stereo_streams, diff --git a/gst/jpegformat/gstjpegparse.c b/gst/jpegformat/gstjpegparse.c index f984a52..b4af9ed 100644 --- a/gst/jpegformat/gstjpegparse.c +++ b/gst/jpegformat/gstjpegparse.c @@ -545,7 +545,7 @@ gst_jpeg_parse_skip_marker (GstJpegParse * parse, if (!gst_byte_reader_get_uint16_be (reader, &size)) return FALSE; -#ifndef GST_DISABLE_DEBUG +#ifndef GST_DISABLE_GST_DEBUG /* We'd pry the id of the skipped application segment */ if (marker >= APP0 && marker <= APP15) { const gchar *id_str = NULL; @@ -561,7 +561,7 @@ gst_jpeg_parse_skip_marker (GstJpegParse * parse, #else GST_DEBUG_OBJECT (parse, "unhandled marker %x skiping %u bytes", marker, size); -#endif // GST_DISABLE_DEBUG +#endif // GST_DISABLE_GST_DEBUG if (!gst_byte_reader_skip (reader, size - 2)) return FALSE; -- 1.7.10
shibajee/buildroot
package/gstreamer/gst-plugins-bad/0001-opus-jpegformat-unbreak-non-debug-build.patch
patch
mit
2,843
Fix dfb-example Order of inclusion gives a strange effect on the definition of gst_debug_log. Swapping the include statements solve it. Not upstreamed since there will be no more updates to this version of gst-plugins-bad. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> --- diff -rup gst-plugins-bad-0.10.23/ext/directfb/dfb-example.c gst-plugins-bad-0.10.23.fixed/ext/directfb/dfb-example.c --- gst-plugins-bad-0.10.23/ext/directfb/dfb-example.c 2011-12-11 19:49:11.000000000 +0100 +++ gst-plugins-bad-0.10.23.fixed/ext/directfb/dfb-example.c 2013-05-13 00:32:00.507469138 +0200 @@ -1,7 +1,7 @@ -#include <directfb.h> #include <stdio.h> #include <gst/gst.h> +#include <directfb.h> static IDirectFB *dfb = NULL; static IDirectFBSurface *primary = NULL;
shibajee/buildroot
package/gstreamer/gst-plugins-bad/0002-fix-dfb-example.patch
patch
mit
787
[PATCH] vp8: drop buggy libvpx legacy handling Legacy handling for older libvpx versions were added back in 2010, but this was unfortunately buggy as these symbols are enums and not defines - So they are never defined and the legacy symbols always used. Now that the legacy symbols are completely removed from libvpx from v1.4.0 onwards this breaks. Fix it by simply dropping the legacy handling, nobody should be using libvpx versions from before 2010 (or gstreamer 0.10 for that matter) any more. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> --- ext/vp8/gstvp8utils.h | 17 ----------------- 1 file changed, 17 deletions(-) Index: gst-plugins-bad-0.10.23/ext/vp8/gstvp8utils.h =================================================================== --- gst-plugins-bad-0.10.23.orig/ext/vp8/gstvp8utils.h +++ gst-plugins-bad-0.10.23/ext/vp8/gstvp8utils.h @@ -25,23 +25,6 @@ G_BEGIN_DECLS -/* Some compatibility defines for older libvpx versions */ -#ifndef VPX_IMG_FMT_I420 -#define VPX_IMG_FMT_I420 IMG_FMT_I420 -#endif - -#ifndef VPX_PLANE_Y -#define VPX_PLANE_Y PLANE_Y -#endif - -#ifndef VPX_PLANE_U -#define VPX_PLANE_U PLANE_U -#endif - -#ifndef VPX_PLANE_V -#define VPX_PLANE_V PLANE_V -#endif - const char * gst_vpx_error_name (vpx_codec_err_t status); G_END_DECLS
shibajee/buildroot
package/gstreamer/gst-plugins-bad/0003-drop-buggy-libvpx-legacy-handling.patch
patch
mit
1,295
menuconfig BR2_PACKAGE_GST_PLUGINS_BAD bool "gst-plugins-bad" select BR2_PACKAGE_GST_PLUGINS_BASE help A set of plug-ins for GStreamer that may be of poor quality or lacking some features. http://gstreamer.freedesktop.org/ if BR2_PACKAGE_GST_PLUGINS_BAD comment "dependency-less plugins" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ADPCMDEC bool "adpcmdec" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ADPCMENC bool "adpcmenc" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AIFF bool "aiff" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ASFMUX bool "asfmux" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUTOCONVERT bool "autoconvert" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUDIOVISUALIZERS bool "audiovisualizers" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_BAYER bool "bayer" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CAMERABIN bool "camerabin" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CAMERABIN2 bool "camerabin2" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDXAPARSE bool "cdxaparse" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_COLOREFFECTS bool "coloreffects" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_COLORSPACE bool "colorspace" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DATAURISRC bool "dataurisrc" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DCCP bool "dccp" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DEBUGUTILS bool "debugutils" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DECKLINK depends on BR2_INSTALL_LIBSTDCPP bool "decklink" comment "decklink needs a toolchain w/ C++" depends on !BR2_INSTALL_LIBSTDCPP config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF bool "dtmf" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVBSUBOVERLAY bool "dvdsuboverlay" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVDSPU bool "dvdspu" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FACEOVERLAY bool "faceoverlay" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FESTIVAL bool "festival" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FIELDANALYSIS bool "fieldanalysis" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEVERB bool "freeverb" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEZE bool "freeze" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREI0R bool "frei0r" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_GAUDIEFFECTS bool "gaudieffects" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_GEOMETRICTRANSFORM bool "geometrictransform" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_GSETTINGS bool "gsettings" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_H264PARSE bool "h264parse" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HDVPARSE bool "hdvparse" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HLS bool "hls" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ID3TAG bool "id3tag" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_INTER bool "inter" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_INTERLACE bool "interlace" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_IVFPARSE bool "ivfparse" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_JP2KDECIMATOR bool "jp2kdecimator" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_JPEGFORMAT bool "jpegformat" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LEGACYRESAMPLE bool "legacyresample" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB bool "librfb" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LINSYS bool "linsys" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIVEADDER bool "liveadder" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGDEMUX bool "mpegdemux" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGPSMUX bool "mpegpsmux" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGTSDEMUX bool "mpegtsdemux" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGTSMUX bool "mpegtsmux" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGVIDEOPARSE bool "mpegvideoparse" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MVE bool "mve" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MXF bool "mxf" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NSF bool "nsf" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NUVDEMUX bool "nuvdemux" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PATCHDETECT bool "patchdetect" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PCAPPARSE bool "pcapparse" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PNM bool "pnm" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RAWPARSE bool "rawparse" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_REAL bool "real" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_REMOVESILENCE bool "removesilence" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RTPMUX bool "rtpmux" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RTPVP8 bool "rtpvp8" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SCALETEMPO bool "scaletempo" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDI bool "sdi" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDP bool "sdp" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SEGMENTCLIP bool "segmentclip" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SIREN bool "siren" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SMOOTH bool "smooth" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SPEED bool "speed" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_STEREO bool "stereo" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SUBENC bool "subenc" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_TTA bool "tta" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOFILTERS bool "videofilters" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOMAXRATE bool "videomaxrate" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOMEASURE bool "videomeasure" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOPARSERS bool "videoparsers" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOSIGNAL bool "videosignal" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VMNC bool "vmnc" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_Y4M bool "y4m" comment "plugins with external dependencies (there may be more available)" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK bool "apexsink" select BR2_PACKAGE_OPENSSL config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_BZ2 bool "bz2" select BR2_PACKAGE_BZIP2 config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDAUDIO bool "cdaudio" depends on !BR2_nios2 # libcdaudio select BR2_PACKAGE_LIBCDAUDIO config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CURL bool "curl" select BR2_PACKAGE_LIBCURL config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DIRECTFB bool "directfb" depends on BR2_PACKAGE_DIRECTFB default y config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB bool "dvb" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FBDEV bool "fbdev" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FAAD bool "faad" select BR2_PACKAGE_FAAD2 config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBMMS bool "libmms" depends on BR2_USE_WCHAR # libmms -> libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # libmms -> libglib2 select BR2_PACKAGE_LIBMMS comment "libmms needs a toolchain w/ wchar, threads" depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MUSEPACK bool "musepack" select BR2_PACKAGE_MUSEPACK config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NEON bool "neon" select BR2_PACKAGE_NEON config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_OPUS bool "opus" select BR2_PACKAGE_OPUS config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RSVG bool "rsvg" depends on BR2_INSTALL_LIBSTDCPP # librsvg -> pango depends on BR2_TOOLCHAIN_HAS_SYNC_4 # librsvg -> pango -> harfbuzz select BR2_PACKAGE_LIBRSVG comment "rsvg plugin needs a toolchain w/ C++" depends on !BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_SYNC_4 config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDL bool "sdl" select BR2_PACKAGE_SDL config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SNDFILE bool "sndfile" select BR2_PACKAGE_LIBSNDFILE config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VCD bool "vcd" config BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VP8 bool "vp8" select BR2_PACKAGE_LIBVPX config BR2_PACKAGE_GST_PLUGINS_BAD_ZBAR bool "zbar" depends on BR2_TOOLCHAIN_HAS_THREADS # zbar-> libv4l depends on BR2_USE_MMU # zbar-> libv4l depends on !BR2_STATIC_LIBS # zbar-> libv4l depends on BR2_INSTALL_LIBSTDCPP # zbar-> libv4l depends on BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 # zbar-> libv4l select BR2_PACKAGE_ZBAR comment "zbar plugin needs a toolchain w/ threads, dynamic library, C++ and headers >= 3.0" depends on BR2_USE_MMU depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \ || !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HEADERS_AT_LEAST_3_0 endif
shibajee/buildroot
package/gstreamer/gst-plugins-bad/Config.in
in
mit
8,238
# From http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-0.10.23.tar.xz.md5 md5 e4822fa2cc933768e2998311a1565979 gst-plugins-bad-0.10.23.tar.xz
shibajee/buildroot
package/gstreamer/gst-plugins-bad/gst-plugins-bad.hash
hash
mit
163
################################################################################ # # gst-plugins-bad # ################################################################################ GST_PLUGINS_BAD_VERSION = 0.10.23 GST_PLUGINS_BAD_SOURCE = gst-plugins-bad-$(GST_PLUGINS_BAD_VERSION).tar.xz GST_PLUGINS_BAD_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-bad # COPYING.LIB is in fact v2, but most of the code is v2.1+ GST_PLUGINS_BAD_LICENSE = LGPLv2.1+, GPLv2+ GST_PLUGINS_BAD_LICENSE_FILES = COPYING.LIB COPYING GST_PLUGINS_BAD_CONF_OPTS = \ --disable-examples GST_PLUGINS_BAD_DEPENDENCIES = gst-plugins-base gstreamer ifeq ($(BR2_PACKAGE_ORC),y) GST_PLUGINS_BAD_DEPENDENCIES += orc endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ADPCMDEC),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-adpcmdec else GST_PLUGINS_BAD_CONF_OPTS += --disable-adpcmdec endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ADPCMENC),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-adpcmenc else GST_PLUGINS_BAD_CONF_OPTS += --disable-adpcmenc endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AIFF),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-aiff else GST_PLUGINS_BAD_CONF_OPTS += --disable-aiff endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ASFMUX),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-asfmux else GST_PLUGINS_BAD_CONF_OPTS += --disable-asfmux endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUDIOVISUALIZERS),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-audiovisualizers else GST_PLUGINS_BAD_CONF_OPTS += --disable-audiovisualizers endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_AUTOCONVERT),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-autoconvert else GST_PLUGINS_BAD_CONF_OPTS += --disable-autoconvert endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_BAYER),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-bayer else GST_PLUGINS_BAD_CONF_OPTS += --disable-bayer endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CAMERABIN),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-camerabin else GST_PLUGINS_BAD_CONF_OPTS += --disable-camerabin endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CAMERABIN2),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-camerabin2 else GST_PLUGINS_BAD_CONF_OPTS += --disable-camerabin2 endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDXAPARSE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-cdxaparse else GST_PLUGINS_BAD_CONF_OPTS += --disable-cdxaparse endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_COLOREFFECTS),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-coloreffects else GST_PLUGINS_BAD_CONF_OPTS += --disable-coloreffects endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_COLORSPACE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-colorspace else GST_PLUGINS_BAD_CONF_OPTS += --disable-colorspace endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DATAURISRC),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-dataurisrc else GST_PLUGINS_BAD_CONF_OPTS += --disable-dataurisrc endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DCCP),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-dccp else GST_PLUGINS_BAD_CONF_OPTS += --disable-dccp endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DEBUGUTILS),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-debugutils else GST_PLUGINS_BAD_CONF_OPTS += --disable-debugutils endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DECKLINK),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-decklink else GST_PLUGINS_BAD_CONF_OPTS += --disable-decklink endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DTMF),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-dtmf else GST_PLUGINS_BAD_CONF_OPTS += --disable-dtmf endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVBSUBOVERLAY),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-dvbsuboverlay else GST_PLUGINS_BAD_CONF_OPTS += --disable-dvbsuboverlay endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVDSPU),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-dvdspu else GST_PLUGINS_BAD_CONF_OPTS += --disable-dvdspu endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FACEOVERLAY),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-faceoverlay else GST_PLUGINS_BAD_CONF_OPTS += --disable-faceoverlay endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FESTIVAL),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-festival else GST_PLUGINS_BAD_CONF_OPTS += --disable-festival endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FIELDANALYSIS),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-fieldanalysis else GST_PLUGINS_BAD_CONF_OPTS += --disable-fieldanalysis endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEZE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-freeze else GST_PLUGINS_BAD_CONF_OPTS += --disable-freeze endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREEVERB),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-freeverb else GST_PLUGINS_BAD_CONF_OPTS += --disable-freeverb endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FREI0R),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-frei0r else GST_PLUGINS_BAD_CONF_OPTS += --disable-frei0r endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_GAUDIEFFECTS),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-gaudieffects else GST_PLUGINS_BAD_CONF_OPTS += --disable-gaudieffects endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_GEOMETRICTRANSFORM),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-geometrictransform else GST_PLUGINS_BAD_CONF_OPTS += --disable-geometrictransform endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_GSETTINGS),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-gsettings else GST_PLUGINS_BAD_CONF_OPTS += --disable-gsettings endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_H264PARSE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-h264parse else GST_PLUGINS_BAD_CONF_OPTS += --disable-h264parse endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HDVPARSE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-hdvparse else GST_PLUGINS_BAD_CONF_OPTS += --disable-hdvparse endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_HLS),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-hls else GST_PLUGINS_BAD_CONF_OPTS += --disable-hls endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_ID3TAG),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-id3tag else GST_PLUGINS_BAD_CONF_OPTS += --disable-id3tag endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_INTER),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-inter else GST_PLUGINS_BAD_CONF_OPTS += --disable-inter endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_INTERLACE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-interlace else GST_PLUGINS_BAD_CONF_OPTS += --disable-interlace endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_IVFPARSE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-ivfparse else GST_PLUGINS_BAD_CONF_OPTS += --disable-ivfparse endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_JP2KDECIMATOR),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-jp2kdecimator else GST_PLUGINS_BAD_CONF_OPTS += --disable-jp2kdecimator endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_JPEGFORMAT),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-jpegformat else GST_PLUGINS_BAD_CONF_OPTS += --disable-jpegformat endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LEGACYRESAMPLE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-legacyresample else GST_PLUGINS_BAD_CONF_OPTS += --disable-legacyresample endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBRFB),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-librfb else GST_PLUGINS_BAD_CONF_OPTS += --disable-librfb endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LINSYS),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-linsys else GST_PLUGINS_BAD_CONF_OPTS += --disable-linsys endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIVEADDER),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-liveadder else GST_PLUGINS_BAD_CONF_OPTS += --disable-liveadder endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGDEMUX),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-mpegdemux else GST_PLUGINS_BAD_CONF_OPTS += --disable-mpegdemux endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGPSMUX),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-mpegpsmux else GST_PLUGINS_BAD_CONF_OPTS += --disable-mpegpsmux endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGTSDEMUX),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-mpegtsdemux else GST_PLUGINS_BAD_CONF_OPTS += --disable-mpegtsdemux endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGTSMUX),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-mpegtsmux else GST_PLUGINS_BAD_CONF_OPTS += --disable-mpegtsmux endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MPEGVIDEOPARSE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-mpegvideoparse else GST_PLUGINS_BAD_CONF_OPTS += --disable-mpegvideoparse endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MVE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-mve else GST_PLUGINS_BAD_CONF_OPTS += --disable-mve endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MXF),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-mxf else GST_PLUGINS_BAD_CONF_OPTS += --disable-mxf endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NSF),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-nsf else GST_PLUGINS_BAD_CONF_OPTS += --disable-nsf endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NUVDEMUX),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-nuvdemux else GST_PLUGINS_BAD_CONF_OPTS += --disable-nuvdemux endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PATCHDETECT),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-patchdetect else GST_PLUGINS_BAD_CONF_OPTS += --disable-patchdetect endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PCAPPARSE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-pcapparse else GST_PLUGINS_BAD_CONF_OPTS += --disable-pcapparse endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_PNM),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-pnm else GST_PLUGINS_BAD_CONF_OPTS += --disable-pnm endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RAWPARSE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-rawparse else GST_PLUGINS_BAD_CONF_OPTS += --disable-rawparse endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_REAL),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-real else GST_PLUGINS_BAD_CONF_OPTS += --disable-real endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_REMOVESILENCE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-removesilence else GST_PLUGINS_BAD_CONF_OPTS += --disable-removesilence endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RTPMUX),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-rtpmux else GST_PLUGINS_BAD_CONF_OPTS += --disable-rtpmux endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RTPVP8),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-rtpvp8 else GST_PLUGINS_BAD_CONF_OPTS += --disable-rtpvp8 endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SCALETEMPO),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-scaletempo else GST_PLUGINS_BAD_CONF_OPTS += --disable-scaletempo endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDI),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-sdi else GST_PLUGINS_BAD_CONF_OPTS += --disable-sdi endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDP),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-sdp else GST_PLUGINS_BAD_CONF_OPTS += --disable-sdp endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SEGMENTCLIP),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-segmentclip else GST_PLUGINS_BAD_CONF_OPTS += --disable-segmentclip endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SIREN),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-siren else GST_PLUGINS_BAD_CONF_OPTS += --disable-siren endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SMOOTH),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-smooth else GST_PLUGINS_BAD_CONF_OPTS += --disable-smooth endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SPEED),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-speed else GST_PLUGINS_BAD_CONF_OPTS += --disable-speed endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SUBENC),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-subenc else GST_PLUGINS_BAD_CONF_OPTS += --disable-subenc endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_STEREO),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-stereo else GST_PLUGINS_BAD_CONF_OPTS += --disable-stereo endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_TTA),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-tta else GST_PLUGINS_BAD_CONF_OPTS += --disable-tta endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOFILTERS),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-videofilters else GST_PLUGINS_BAD_CONF_OPTS += --disable-videofilters endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOMAXRATE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-videomaxrate else GST_PLUGINS_BAD_CONF_OPTS += --disable-videomaxrate endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOMEASURE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-videomeasure else GST_PLUGINS_BAD_CONF_OPTS += --disable-videomeasure endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOPARSERS),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-videoparsers else GST_PLUGINS_BAD_CONF_OPTS += --disable-videoparsers endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VIDEOSIGNAL),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-videosignal else GST_PLUGINS_BAD_CONF_OPTS += --disable-videosignal endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VMNC),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-vmnc else GST_PLUGINS_BAD_CONF_OPTS += --disable-vmnc endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_Y4M),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-y4m else GST_PLUGINS_BAD_CONF_OPTS += --disable-y4m endif # plugins with deps ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_APEXSINK),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-apexsink GST_PLUGINS_BAD_DEPENDENCIES += openssl else GST_PLUGINS_BAD_CONF_OPTS += --disable-apexsink endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_BZ2),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-bz2 GST_PLUGINS_BAD_DEPENDENCIES += bzip2 else GST_PLUGINS_BAD_CONF_OPTS += --disable-bz2 endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CDAUDIO),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-cdaudio GST_PLUGINS_BAD_DEPENDENCIES += libcdaudio else GST_PLUGINS_BAD_CONF_OPTS += --disable-cdaudio endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_CURL),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-curl GST_PLUGINS_BAD_DEPENDENCIES += libcurl else GST_PLUGINS_BAD_CONF_OPTS += --disable-curl endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DIRECTFB),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-directfb GST_PLUGINS_BAD_DEPENDENCIES += directfb else GST_PLUGINS_BAD_CONF_OPTS += --disable-directfb endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_DVB),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-dvb else GST_PLUGINS_BAD_CONF_OPTS += --disable-dvb endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FAAD),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-faad GST_PLUGINS_BAD_DEPENDENCIES += faad2 else GST_PLUGINS_BAD_CONF_OPTS += --disable-faad endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_FBDEV),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-fbdev else GST_PLUGINS_BAD_CONF_OPTS += --disable-fbdev endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_LIBMMS),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-libmms GST_PLUGINS_BAD_DEPENDENCIES += libmms else GST_PLUGINS_BAD_CONF_OPTS += --disable-libmms endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_MUSEPACK),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-musepack GST_PLUGINS_BAD_DEPENDENCIES += musepack else GST_PLUGINS_BAD_CONF_OPTS += --disable-musepack endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_NEON),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-neon GST_PLUGINS_BAD_DEPENDENCIES += neon else GST_PLUGINS_BAD_CONF_OPTS += --disable-neon endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_OPUS),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-opus GST_PLUGINS_BAD_DEPENDENCIES += opus else GST_PLUGINS_BAD_CONF_OPTS += --disable-opus endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_RSVG),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-rsvg GST_PLUGINS_BAD_DEPENDENCIES += librsvg else GST_PLUGINS_BAD_CONF_OPTS += --disable-rsvg endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SDL),y) GST_PLUGINS_BAD_CONF_ENV += ac_cv_path_SDL_CONFIG=$(STAGING_DIR)/usr/bin/sdl-config GST_PLUGINS_BAD_CONF_OPTS += --enable-sdl GST_PLUGINS_BAD_DEPENDENCIES += sdl else GST_PLUGINS_BAD_CONF_OPTS += --disable-sdl endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_SNDFILE),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-sndfile GST_PLUGINS_BAD_DEPENDENCIES += libsndfile else GST_PLUGINS_BAD_CONF_OPTS += --disable-sndfile endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VCD),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-vcd else GST_PLUGINS_BAD_CONF_OPTS += --disable-vcd endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_PLUGIN_VP8),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-vp8 GST_PLUGINS_BAD_DEPENDENCIES += libvpx else GST_PLUGINS_BAD_CONF_OPTS += --disable-vp8 endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BAD_ZBAR),y) GST_PLUGINS_BAD_CONF_OPTS += --enable-zbar GST_PLUGINS_BAD_DEPENDENCIES += zbar else GST_PLUGINS_BAD_CONF_OPTS += --disable-zbar endif $(eval $(autotools-package))
shibajee/buildroot
package/gstreamer/gst-plugins-bad/gst-plugins-bad.mk
mk
mit
16,452
From 0088753651350de3060ece22c1be4153b6009515 Mon Sep 17 00:00:00 2001 From: Peter Korsgaard <jacmet@sunsite.dk> Date: Wed, 25 Jan 2012 23:53:04 +0100 Subject: [PATCH] base: vorbisdeclib: support modern Tremor versions Reported upstream as https://bugzilla.gnome.org/show_bug.cgi?id=668726 Tremor changed to use standard libogg rather than its own incompatible copy back in Aug 2010 (r17375), causing gst-plugin-base build to fail. Tremolo so far unfortunately hasn't been updated. Restructure vorbisdeclib.h so the legacy _ogg_packet_wrapper code is only used for Tremolo. Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk> --- ext/vorbis/gstvorbisdeclib.h | 77 ++++++++++++++++++++++------------------- 1 files changed, 41 insertions(+), 36 deletions(-) diff --git a/ext/vorbis/gstvorbisdeclib.h b/ext/vorbis/gstvorbisdeclib.h index ca00af9..e147591 100644 --- a/ext/vorbis/gstvorbisdeclib.h +++ b/ext/vorbis/gstvorbisdeclib.h @@ -29,11 +29,6 @@ #ifndef TREMOR -#include <vorbis/codec.h> - -typedef float vorbis_sample_t; -typedef ogg_packet ogg_packet_wrapper; - #define GST_VORBIS_DEC_DESCRIPTION "decode raw vorbis streams to float audio" #define GST_VORBIS_DEC_SRC_CAPS \ @@ -47,6 +42,42 @@ typedef ogg_packet ogg_packet_wrapper; #define GST_VORBIS_DEC_GLIB_TYPE_NAME GstVorbisDec +#else /* TREMOR */ + +#define GST_VORBIS_DEC_DESCRIPTION "decode raw vorbis streams to integer audio" + +#define GST_VORBIS_DEC_SRC_CAPS \ + GST_STATIC_CAPS ("audio/x-raw-int, " \ + "rate = (int) [ 1, MAX ], " \ + "channels = (int) [ 1, 6 ], " \ + "endianness = (int) BYTE_ORDER, " \ + "width = (int) { 16, 32 }, " \ + "depth = (int) 16, " \ + "signed = (boolean) true") + +#define GST_VORBIS_DEC_DEFAULT_SAMPLE_WIDTH (16) + +/* we need a different type name here */ +#define GST_VORBIS_DEC_GLIB_TYPE_NAME GstIVorbisDec + +/* and still have it compile */ +typedef struct _GstVorbisDec GstIVorbisDec; +typedef struct _GstVorbisDecClass GstIVorbisDecClass; + +#endif /* TREMOR */ + +#ifndef USE_TREMOLO + +#ifdef TREMOR + #include <tremor/ivorbiscodec.h> + typedef ogg_int32_t vorbis_sample_t; +#else + #include <vorbis/codec.h> + typedef float vorbis_sample_t; +#endif + +typedef ogg_packet ogg_packet_wrapper; + static inline guint8 * gst_ogg_packet_data (ogg_packet * p) { @@ -72,17 +103,11 @@ gst_ogg_packet_from_wrapper (ogg_packet_wrapper * packet) return packet; } -#else - -#ifdef USE_TREMOLO - #include <Tremolo/ivorbiscodec.h> - #include <Tremolo/codec_internal.h> - typedef ogg_int16_t vorbis_sample_t; -#else - #include <tremor/ivorbiscodec.h> - typedef ogg_int32_t vorbis_sample_t; -#endif +#else /* USE_TREMOLO */ +#include <Tremolo/ivorbiscodec.h> +#include <Tremolo/codec_internal.h> +typedef ogg_int16_t vorbis_sample_t; typedef struct _ogg_packet_wrapper ogg_packet_wrapper; struct _ogg_packet_wrapper { @@ -91,26 +116,6 @@ struct _ogg_packet_wrapper { ogg_buffer buf; }; -#define GST_VORBIS_DEC_DESCRIPTION "decode raw vorbis streams to integer audio" - -#define GST_VORBIS_DEC_SRC_CAPS \ - GST_STATIC_CAPS ("audio/x-raw-int, " \ - "rate = (int) [ 1, MAX ], " \ - "channels = (int) [ 1, 6 ], " \ - "endianness = (int) BYTE_ORDER, " \ - "width = (int) { 16, 32 }, " \ - "depth = (int) 16, " \ - "signed = (boolean) true") - -#define GST_VORBIS_DEC_DEFAULT_SAMPLE_WIDTH (16) - -/* we need a different type name here */ -#define GST_VORBIS_DEC_GLIB_TYPE_NAME GstIVorbisDec - -/* and still have it compile */ -typedef struct _GstVorbisDec GstIVorbisDec; -typedef struct _GstVorbisDecClass GstIVorbisDecClass; - /* compensate minor variation */ #define vorbis_synthesis(a, b) vorbis_synthesis (a, b, 1) @@ -154,7 +159,7 @@ gst_ogg_packet_from_wrapper (ogg_packet_wrapper * packet) return &(packet->packet); } -#endif +#endif /* USE_TREMOLO */ typedef void (*CopySampleFunc)(vorbis_sample_t *out, vorbis_sample_t **in, guint samples, gint channels, gint width); -- 1.7.8.3
shibajee/buildroot
package/gstreamer/gst-plugins-base/0001-tremor.patch
patch
mit
4,416
From daa194b71ea6f9e8ee522ab02e8c56150b7e62b3 Mon Sep 17 00:00:00 2001 From: Antoine Jacoutot <ajacoutot@gnome.org> Date: Mon, 20 Jan 2014 15:44:09 +0100 Subject: [PATCH] audioresample: Fix build on x86 if emmintrin.h is available but can't be used On i386, EMMINTRIN is defined but not usable without SSE so check for __SSE__ and __SSE2__ as well. https://bugzilla.gnome.org/show_bug.cgi?id=670690 Signed-off-by: Peter Korsgaard <peter@korsgaard.com> --- gst/audioresample/resample.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gst/audioresample/resample.c b/gst/audioresample/resample.c index 98d006c..481fa01 100644 --- a/gst/audioresample/resample.c +++ b/gst/audioresample/resample.c @@ -77,13 +77,13 @@ #define EXPORT G_GNUC_INTERNAL #ifdef _USE_SSE -#ifndef HAVE_XMMINTRIN_H +#if !defined(__SSE__) || !defined(HAVE_XMMINTRIN_H) #undef _USE_SSE #endif #endif #ifdef _USE_SSE2 -#ifndef HAVE_EMMINTRIN_H +#if !defined(__SSE2__) || !defined(HAVE_XMMINTRIN_H) #undef _USE_SSE2 #endif #endif -- 2.1.4
shibajee/buildroot
package/gstreamer/gst-plugins-base/0002-audioresample-Fix-build-on-x86-if-emmintrin.h-is-ava.patch
patch
mit
1,049
From 4e3d101aa854cfee633a9689efeb75e5001baa5e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= <sebastian@centricular.com> Date: Mon, 20 Jan 2014 16:11:04 +0100 Subject: [PATCH] audioresample: It's HAVE_EMMINTRIN_H, not HAVE_XMMINTRIN_H for SSE2 Signed-off-by: Peter Korsgaard <peter@korsgaard.com> --- gst/audioresample/resample.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/audioresample/resample.c b/gst/audioresample/resample.c index 481fa01..4410bdd 100644 --- a/gst/audioresample/resample.c +++ b/gst/audioresample/resample.c @@ -83,7 +83,7 @@ #endif #ifdef _USE_SSE2 -#if !defined(__SSE2__) || !defined(HAVE_XMMINTRIN_H) +#if !defined(__SSE2__) || !defined(HAVE_EMMINTRIN_H) #undef _USE_SSE2 #endif #endif -- 2.1.4
shibajee/buildroot
package/gstreamer/gst-plugins-base/0003-audioresample-It-s-HAVE_EMMINTRIN_H-not-HAVE_XMMINTR.patch
patch
mit
779
menuconfig BR2_PACKAGE_GST_PLUGINS_BASE bool "gst-plugins-base" select BR2_PACKAGE_XLIB_LIBX11 if BR2_PACKAGE_XORG7 select BR2_PACKAGE_XLIB_LIBXEXT if BR2_PACKAGE_XORG7 select BR2_PACKAGE_XLIB_LIBXV if BR2_PACKAGE_XORG7 help A basic set of well-supported plug-ins for GStreamer. http://gstreamer.freedesktop.org/ if BR2_PACKAGE_GST_PLUGINS_BASE comment "dependency-less plugins" config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_ADDER bool "adder" config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_APP bool "app" config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIOCONVERT bool "audioconvert (mandatory for audio playback)" default y config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIORATE bool "audiorate" config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIORESAMPLE bool "audioresample (mandatory for audio playback)" default y config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIOTESTSRC bool "audiotestsrc" config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_ENCODING bool "encoding" config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_FFMPEGCOLORSPACE bool "ffmpegcolorspace (mandatory for video playback)" default y config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_GDP bool "gdp" config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PLAYBACK bool "playback (mandatory)" default y config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_SUBPARSE bool "subparse" config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TCP bool "tcp" config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TYPEFIND bool "typefind (mandatory)" default y config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEOTESTSRC bool "videotestsrc" config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEORATE bool "videorate" config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEOSCALE bool "videoscale (mandatory for video playback)" default y config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VOLUME bool "volume (mandatory for audio playback)" default y comment "plugins with external dependencies (there may be more available)" config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_ALSA bool "alsa (mandatory for audio playback)" select BR2_PACKAGE_ALSA_LIB select BR2_PACKAGE_ALSA_LIB_MIXER select BR2_PACKAGE_ALSA_LIB_PCM config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_OGG bool "ogg (*.ogg audio/video)" select BR2_PACKAGE_LIBOGG config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PANGO bool "pango font renderer" depends on BR2_INSTALL_LIBSTDCPP # pango -> freetype depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pango -> harfbuzz select BR2_PACKAGE_PANGO comment "pango plugin needs a toolchain w/ C++" depends on !BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_SYNC_4 config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_THEORA bool "theora (*.ogg video)" select BR2_PACKAGE_LIBTHEORA config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TREMOR bool "tremor" select BR2_PACKAGE_TREMOR config BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VORBIS bool "vorbis (*.ogg audio)" select BR2_PACKAGE_LIBVORBIS endif
shibajee/buildroot
package/gstreamer/gst-plugins-base/Config.in
in
mit
2,886
# From http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-0.10.36.tar.xz.md5 md5 3d2337841b132fe996e5eb2396ac9438 gst-plugins-base-0.10.36.tar.xz
shibajee/buildroot
package/gstreamer/gst-plugins-base/gst-plugins-base.hash
hash
mit
166
################################################################################ # # gst-plugins-base # ################################################################################ GST_PLUGINS_BASE_VERSION = 0.10.36 GST_PLUGINS_BASE_SOURCE = gst-plugins-base-$(GST_PLUGINS_BASE_VERSION).tar.xz GST_PLUGINS_BASE_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-base GST_PLUGINS_BASE_INSTALL_STAGING = YES GST_PLUGINS_BASE_LICENSE = GPLv2+, LGPLv2+ GST_PLUGINS_BASE_LICENSE_FILES = COPYING COPYING.LIB # freetype is only used by examples, but if it is not found # and the host has a freetype-config script, then the host # include dirs are added to the search path causing trouble GST_PLUGINS_BASE_CONF_ENV = FT2_CONFIG=/bin/false \ ac_cv_header_stdint_t="stdint.h" GST_PLUGINS_BASE_CONF_OPTS = \ --disable-examples \ --disable-oggtest \ --disable-vorbistest \ --disable-freetypetest GST_PLUGINS_BASE_DEPENDENCIES = gstreamer ifeq ($(BR2_PACKAGE_XORG7),y) GST_PLUGINS_BASE_DEPENDENCIES += xlib_libX11 xlib_libXext xlib_libXv GST_PLUGINS_BASE_CONF_OPTS += \ --enable-x \ --enable-xshm \ --enable-xvideo else GST_PLUGINS_BASE_CONF_OPTS += \ --disable-x \ --disable-xshm \ --disable-xvideo endif ifeq ($(BR2_PACKAGE_ORC),y) GST_PLUGINS_BASE_DEPENDENCIES += orc endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_ALSA),y) GST_PLUGINS_BASE_DEPENDENCIES += alsa-lib else GST_PLUGINS_BASE_CONF_OPTS += --disable-alsa endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_ADDER),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-adder else GST_PLUGINS_BASE_CONF_OPTS += --disable-adder endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_APP),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-app else GST_PLUGINS_BASE_CONF_OPTS += --disable-app endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIOCONVERT),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-audioconvert else GST_PLUGINS_BASE_CONF_OPTS += --disable-audioconvert endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIORATE),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-audiorate else GST_PLUGINS_BASE_CONF_OPTS += --disable-audiorate endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIORESAMPLE),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-audioresample else GST_PLUGINS_BASE_CONF_OPTS += --disable-audioresample endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_AUDIOTESTSRC),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-audiotestsrc else GST_PLUGINS_BASE_CONF_OPTS += --disable-audiotestsrc endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_ENCODING),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-encoding else GST_PLUGINS_BASE_CONF_OPTS += --disable-encoding endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_FFMPEGCOLORSPACE),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-ffmpegcolorspace else GST_PLUGINS_BASE_CONF_OPTS += --disable-ffmpegcolorspace endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_GDP),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-gdp else GST_PLUGINS_BASE_CONF_OPTS += --disable-gdp endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PLAYBACK),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-playback else GST_PLUGINS_BASE_CONF_OPTS += --disable-playback endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_SUBPARSE),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-subparse else GST_PLUGINS_BASE_CONF_OPTS += --disable-subparse endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TCP),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-tcp else GST_PLUGINS_BASE_CONF_OPTS += --disable-tcp endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TYPEFIND),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-typefind else GST_PLUGINS_BASE_CONF_OPTS += --disable-typefind endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEOTESTSRC),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-videotestsrc else GST_PLUGINS_BASE_CONF_OPTS += --disable-videotestsrc endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEORATE),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-videorate else GST_PLUGINS_BASE_CONF_OPTS += --disable-videorate endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VIDEOSCALE),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-videoscale else GST_PLUGINS_BASE_CONF_OPTS += --disable-videoscale endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VOLUME),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-volume else GST_PLUGINS_BASE_CONF_OPTS += --disable-volume endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_OGG),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-ogg GST_PLUGINS_BASE_DEPENDENCIES += libogg else GST_PLUGINS_BASE_CONF_OPTS += --disable-ogg endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_PANGO),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-pango GST_PLUGINS_BASE_DEPENDENCIES += pango else GST_PLUGINS_BASE_CONF_OPTS += --disable-pango endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_THEORA),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-theora GST_PLUGINS_BASE_DEPENDENCIES += libtheora else GST_PLUGINS_BASE_CONF_OPTS += --disable-theora endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_TREMOR),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-ivorbis GST_PLUGINS_BASE_DEPENDENCIES += tremor else GST_PLUGINS_BASE_CONF_OPTS += --disable-ivorbis endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_VORBIS),y) GST_PLUGINS_BASE_CONF_OPTS += --enable-vorbis GST_PLUGINS_BASE_DEPENDENCIES += libvorbis else GST_PLUGINS_BASE_CONF_OPTS += --disable-vorbis endif ifeq ($(BR2_PACKAGE_ZLIB),y) GST_PLUGINS_BASE_DEPENDENCIES += zlib else GST_PLUGINS_BASE_CONF_OPTS += --disable-zlib endif $(eval $(autotools-package))
shibajee/buildroot
package/gstreamer/gst-plugins-base/gst-plugins-base.mk
mk
mit
5,443
Fix building with Linux headers 3.6 Signed-off-by: Markos Chandras <markos.chandras@imgtec.com> From bfb1ac952b4c3caaba0297bbe7dc73ea92f9b292 Mon Sep 17 00:00:00 2001 From: Matthias Clasen <mclasen@redhat.com> Date: Thu, 09 Aug 2012 07:35:23 +0000 Subject: v4l2: fix build with recent kernels, the v4l2_buffer input field was removed This was unused apparently and removed in the kernel in commit: From 2b719d7baf490e24ce7d817c6337b7c87fda84c1 Mon Sep 17 00:00:00 2001 From: Sakari Ailus <sakari.ailus@iki.fi> Date: Wed, 2 May 2012 09:40:03 -0300 Subject: [PATCH] [media] v4l: drop v4l2_buffer.input and V4L2_BUF_FLAG_INPUT Remove input field in struct v4l2_buffer and flag V4L2_BUF_FLAG_INPUT which tells the former is valid. The flag is used by no driver currently. https://bugzilla.gnome.org/show_bug.cgi?id=681491 --- (limited to 'sys/v4l2/gstv4l2bufferpool.c') diff --git a/sys/v4l2/gstv4l2bufferpool.c b/sys/v4l2/gstv4l2bufferpool.c index 2e3a563..5aaed5a 100644 --- a/sys/v4l2/gstv4l2bufferpool.c +++ b/sys/v4l2/gstv4l2bufferpool.c @@ -182,7 +182,6 @@ gst_v4l2_buffer_new (GstV4l2BufferPool * pool, guint index, GstCaps * caps) GST_LOG_OBJECT (pool->v4l2elem, " MMAP offset: %u", ret->vbuffer.m.offset); GST_LOG_OBJECT (pool->v4l2elem, " length: %u", ret->vbuffer.length); - GST_LOG_OBJECT (pool->v4l2elem, " input: %u", ret->vbuffer.input); ret->mmap_length = ret->vbuffer.length; data = (guint8 *) v4l2_mmap (0, ret->vbuffer.length, -- cgit v0.9.0.2-2-gbebe
shibajee/buildroot
package/gstreamer/gst-plugins-good/0001-linux36.patch
patch
mit
1,517
From 8e633d2059cb835448021cf79becb487aff10975 Mon Sep 17 00:00:00 2001 From: Bastien Nocera <hadess@hadess.net> Date: Mon, 18 Mar 2013 14:59:35 +0000 Subject: [PATCH] v4l2: fix compilation against newer kernel headers as on FC19 --- sys/v4l2/v4l2_calls.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sys/v4l2/v4l2_calls.c b/sys/v4l2/v4l2_calls.c index 07d390a..4c10f4f 100644 --- a/sys/v4l2/v4l2_calls.c +++ b/sys/v4l2/v4l2_calls.c @@ -291,8 +291,12 @@ gst_v4l2_fill_lists (GstV4l2Object * v4l2object) break; case V4L2_CID_HFLIP: case V4L2_CID_VFLIP: +#ifndef V4L2_CID_PAN_RESET case V4L2_CID_HCENTER: +#endif +#ifndef V4L2_CID_TILT_RESET case V4L2_CID_VCENTER: +#endif #ifdef V4L2_CID_PAN_RESET case V4L2_CID_PAN_RESET: #endif -- 1.7.10.4
shibajee/buildroot
package/gstreamer/gst-plugins-good/0002-v4l2-fix-compilation-against-newer-kernel-headers.patch
patch
mit
805
menuconfig BR2_PACKAGE_GST_PLUGINS_GOOD bool "gst-plugins-good" select BR2_PACKAGE_GST_PLUGINS_BASE help A set of well-supported plug-ins for GStreamer under the preferred license. http://gstreamer.freedesktop.org/ if BR2_PACKAGE_GST_PLUGINS_GOOD config BR2_PACKAGE_GST_PLUGINS_GOOD_JPEG bool "jpeg (JPEG support)" select BR2_PACKAGE_JPEG config BR2_PACKAGE_GST_PLUGINS_GOOD_PNG bool "png (PNG support)" select BR2_PACKAGE_LIBPNG config BR2_PACKAGE_GST_PLUGINS_GOOD_BZ2 bool "bz2 support" depends on BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MATROSKA select BR2_PACKAGE_BZIP2 help Enable bz2 support for the following plugins: matroska config BR2_PACKAGE_GST_PLUGINS_GOOD_ZLIB bool "zlib support" depends on BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ISOMP4 || BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX || BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MATROSKA select BR2_PACKAGE_ZLIB help Enable zlib support for the following plugins: id3demux, isomp4, matroska comment "dependency-less plugins" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ALPHA bool "alpha" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_APETAG bool "apetag" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUDIOFX bool "audiofx" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUDIOPARSERS bool "audioparsers" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUPARSE bool "auparse" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUTODETECT bool "autodetect" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AVI bool "avi (*.avi video)" default y config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_CUTTER bool "cutter" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUGUTILS bool "debugutils" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEINTERLACE bool "deinterlace" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV bool "effectv" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EQUALIZER bool "equalizer" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLV bool "flv" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLX bool "flx" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GOOM bool "goom" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GOOM2K1 bool "goom2k1" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX bool "id3demux (*.mp3 audio)" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ICYDEMUX bool "icydemux" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_IMAGEFREEZE bool "imagefreeze" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_INTERLEAVE bool "interleave" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ISOMP4 bool "isomp4" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_LAW bool "law" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_LEVEL bool "level" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MATROSKA bool "matroska" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MONOSCOPE bool "monoscope" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MULTIFILE bool "multifile" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MULTIPART bool "multipart" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_REPLAYGAIN bool "replaygain" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTP bool "rtp" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTPMANAGER bool "rtpmanager" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP bool "rtsp" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SHAPEWIPE bool "shapewipe" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SMPTE bool "smpte" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SPECTRUM bool "spectrum" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_UDP bool "udp" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOBOX bool "videobox" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOCROP bool "videocrop" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOFILTER bool "videofilter" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOMIXER bool "videomixer" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVENC bool "wavenc" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPARSE bool "wavparse (*.wav audio)" default y config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_Y4M bool "y4m" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_V4L2 bool "v4l2" comment "plugins with external dependencies" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX bool "annodex (XML Library)" select BR2_PACKAGE_LIBXML2 config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_CAIRO bool "cairo" select BR2_PACKAGE_CAIRO select BR2_PACKAGE_CAIRO_PNG config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLAC bool "flac (libFLAC)" depends on BR2_USE_WCHAR # flac select BR2_PACKAGE_FLAC comment "flac needs a toolchain w/ wchar" depends on !BR2_USE_WCHAR config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GDKPIXBUF bool "gdkpixbuf" depends on BR2_USE_WCHAR # gdk-pixbuf -> libglib2 depends on BR2_TOOLCHAIN_HAS_THREADS # gdk-pixbuf -> libglib2 select BR2_PACKAGE_GDK_PIXBUF comment "gdkpixbuf needs a toolchain w/ wchar, threads" depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS bool "ossaudio (OSS audio)" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS4 bool "oss4 (Open Sound System 4)" config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_PULSE depends on BR2_TOOLCHAIN_HAS_THREADS # pulseaudio depends on BR2_USE_MMU # pulseaudio depends on !BR2_STATIC_LIBS # pulseaudio depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pulseaudio -> json-c select BR2_PACKAGE_PULSEAUDIO bool "pulseaudio" comment "pulseaudio support needs a toolchain w/ threads, dynamic library" depends on BR2_USE_MMU depends on BR2_TOOLCHAIN_HAS_SYNC_4 depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC bool "souphttpsrc (http client)" depends on BR2_USE_WCHAR # libsoup -> glib2 depends on BR2_TOOLCHAIN_HAS_THREADS # libsoup -> glib2 select BR2_PACKAGE_LIBSOUP comment "souphttpsrc needs a toolchain w/ wchar, threads" depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SPEEX bool "speex" select BR2_PACKAGE_SPEEX config BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPACK bool "wavpack (*.wv audio)" select BR2_PACKAGE_WAVPACK endif
shibajee/buildroot
package/gstreamer/gst-plugins-good/Config.in
in
mit
6,016
# From http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-0.10.31.tar.xz.md5 md5 555845ceab722e517040bab57f9ace95 gst-plugins-good-0.10.31.tar.xz
shibajee/buildroot
package/gstreamer/gst-plugins-good/gst-plugins-good.hash
hash
mit
166
################################################################################ # # gst-plugins-good # ################################################################################ GST_PLUGINS_GOOD_VERSION = 0.10.31 GST_PLUGINS_GOOD_SOURCE = gst-plugins-good-$(GST_PLUGINS_GOOD_VERSION).tar.xz GST_PLUGINS_GOOD_SITE = http://gstreamer.freedesktop.org/src/gst-plugins-good GST_PLUGINS_GOOD_LICENSE = LGPLv2.1+ GST_PLUGINS_GOOD_LICENSE_FILES = COPYING GST_PLUGINS_GOOD_CONF_OPTS = \ --disable-examples \ --disable-directsound \ --disable-sunaudio \ --disable-osx_audio \ --disable-osx_video \ --disable-aalib \ --disable-aalibtest \ --disable-esd \ --disable-esdtest \ --disable-shout2 GST_PLUGINS_GOOD_DEPENDENCIES = gstreamer gst-plugins-base ifeq ($(BR2_PACKAGE_XORG7),y) GST_PLUGINS_GOOD_DEPENDENCIES += xlib_libX11 xlib_libXext xlib_libXv GST_PLUGINS_GOOD_CONF_OPTS += \ --enable-x \ --enable-xshm \ --enable-xvideo else GST_PLUGINS_GOOD_CONF_OPTS += \ --disable-x \ --disable-xshm \ --disable-xvideo endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_JPEG),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-jpeg GST_PLUGINS_GOOD_DEPENDENCIES += jpeg else GST_PLUGINS_GOOD_CONF_OPTS += --disable-jpeg endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PNG),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-libpng GST_PLUGINS_GOOD_DEPENDENCIES += libpng else GST_PLUGINS_GOOD_CONF_OPTS += --disable-libpng endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_BZ2),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-bz2 GST_PLUGINS_GOOD_DEPENDENCIES += bzip2 else GST_PLUGINS_GOOD_CONF_OPTS += --disable-bz2 endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_ZLIB),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-zlib GST_PLUGINS_GOOD_DEPENDENCIES += zlib else GST_PLUGINS_GOOD_CONF_OPTS += --disable-zlib endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ALPHA),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-alpha else GST_PLUGINS_GOOD_CONF_OPTS += --disable-alpha endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_APETAG),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-apetag else GST_PLUGINS_GOOD_CONF_OPTS += --disable-apetag endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUDIOFX),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-audiofx else GST_PLUGINS_GOOD_CONF_OPTS += --disable-audiofx endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUDIOPARSERS),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-audioparsers else GST_PLUGINS_GOOD_CONF_OPTS += --disable-audioparsers endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUPARSE),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-auparse else GST_PLUGINS_GOOD_CONF_OPTS += --disable-auparse endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AUTODETECT),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-autodetect else GST_PLUGINS_GOOD_CONF_OPTS += --disable-autodetect endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_AVI),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-avi else GST_PLUGINS_GOOD_CONF_OPTS += --disable-avi endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_CUTTER),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-cutter else GST_PLUGINS_GOOD_CONF_OPTS += --disable-cutter endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEBUGUTILS),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-debugutils else GST_PLUGINS_GOOD_CONF_OPTS += --disable-debugutils endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_DEINTERLACE),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-deinterlace else GST_PLUGINS_GOOD_CONF_OPTS += --disable-deinterlace endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EFFECTV),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-effectv else GST_PLUGINS_GOOD_CONF_OPTS += --disable-effectv endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_EQUALIZER),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-equalizer else GST_PLUGINS_GOOD_CONF_OPTS += --disable-equalizer endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLV),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-flv else GST_PLUGINS_GOOD_CONF_OPTS += --disable-flv endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLX),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-flx else GST_PLUGINS_GOOD_CONF_OPTS += --disable-flx endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GOOM),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-goom else GST_PLUGINS_GOOD_CONF_OPTS += --disable-goom endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GOOM2K1),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-goom2k1 else GST_PLUGINS_GOOD_CONF_OPTS += --disable-goom2k1 endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ID3DEMUX),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-id3demux else GST_PLUGINS_GOOD_CONF_OPTS += --disable-id3demux endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ICYDEMUX),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-icydemux else GST_PLUGINS_GOOD_CONF_OPTS += --disable-icydemux endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_IMAGEFREEZE),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-imagefreeze else GST_PLUGINS_GOOD_CONF_OPTS += --disable-imagefreeze endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_INTERLEAVE),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-interleave else GST_PLUGINS_GOOD_CONF_OPTS += --disable-interleave endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ISOMP4),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-isomp4 else GST_PLUGINS_GOOD_CONF_OPTS += --disable-isomp4 endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_LAW),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-law else GST_PLUGINS_GOOD_CONF_OPTS += --disable-law endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_LEVEL),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-level else GST_PLUGINS_GOOD_CONF_OPTS += --disable-level endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MATROSKA),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-matroska else GST_PLUGINS_GOOD_CONF_OPTS += --disable-matroska endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MONOSCOPE),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-monoscope else GST_PLUGINS_GOOD_CONF_OPTS += --disable-monoscope endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MULTIFILE),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-multifile else GST_PLUGINS_GOOD_CONF_OPTS += --disable-multifile endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_MULTIPART),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-multipart else GST_PLUGINS_GOOD_CONF_OPTS += --disable-multipart endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_REPLAYGAIN),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-replaygain else GST_PLUGINS_GOOD_CONF_OPTS += --disable-replaygain endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTP),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-rtp else GST_PLUGINS_GOOD_CONF_OPTS += --disable-rtp endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTPMANAGER),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-rtpmanager else GST_PLUGINS_GOOD_CONF_OPTS += --disable-rtpmanager endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_RTSP),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-rtsp else GST_PLUGINS_GOOD_CONF_OPTS += --disable-rtsp endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SHAPEWIPE),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-shapewipe else GST_PLUGINS_GOOD_CONF_OPTS += --disable-shapewipe endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SMPTE),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-smpte else GST_PLUGINS_GOOD_CONF_OPTS += --disable-smpte endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SPECTRUM),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-spectrum else GST_PLUGINS_GOOD_CONF_OPTS += --disable-spectrum endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_UDP),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-udp else GST_PLUGINS_GOOD_CONF_OPTS += --disable-udp endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOBOX),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-videobox else GST_PLUGINS_GOOD_CONF_OPTS += --disable-videobox endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOCROP),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-videocrop else GST_PLUGINS_GOOD_CONF_OPTS += --disable-videocrop endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOFILTER),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-videofilter else GST_PLUGINS_GOOD_CONF_OPTS += --disable-videofilter endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_VIDEOMIXER),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-videomixer else GST_PLUGINS_GOOD_CONF_OPTS += --disable-videomixer endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVENC),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-wavenc else GST_PLUGINS_GOOD_CONF_OPTS += --disable-wavenc endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPARSE),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-wavparse else GST_PLUGINS_GOOD_CONF_OPTS += --disable-wavparse endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_Y4M),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-y4m else GST_PLUGINS_GOOD_CONF_OPTS += --disable-y4m endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_V4L2),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-gst_v4l2 else GST_PLUGINS_GOOD_CONF_OPTS += --disable-gst_v4l2 endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-annodex GST_PLUGINS_GOOD_DEPENDENCIES += libxml2 else GST_PLUGINS_GOOD_CONF_OPTS += --disable-annodex endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_CAIRO),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-cairo GST_PLUGINS_GOOD_DEPENDENCIES += cairo else GST_PLUGINS_GOOD_CONF_OPTS += --disable-cairo endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_FLAC),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-flac GST_PLUGINS_GOOD_DEPENDENCIES += flac else GST_PLUGINS_GOOD_CONF_OPTS += --disable-flac endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_GDKPIXBUF),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-gdk_pixbuf GST_PLUGINS_GOOD_DEPENDENCIES += gdk-pixbuf else GST_PLUGINS_GOOD_CONF_OPTS += --disable-gdk_pixbuf endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-oss else GST_PLUGINS_GOOD_CONF_OPTS += --disable-oss endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_OSS4),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-oss4 else GST_PLUGINS_GOOD_CONF_OPTS += --disable-oss4 endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_PULSE),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-pulse GST_PLUGINS_GOOD_DEPENDENCIES += pulseaudio else GST_PLUGINS_GOOD_CONF_OPTS += --disable-pulse endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SOUPHTTPSRC),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-soup GST_PLUGINS_GOOD_DEPENDENCIES += libsoup else GST_PLUGINS_GOOD_CONF_OPTS += --disable-soup endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_SPEEX),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-speex GST_PLUGINS_GOOD_DEPENDENCIES += speex else GST_PLUGINS_GOOD_CONF_OPTS += --disable-speex endif ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_WAVPACK),y) GST_PLUGINS_GOOD_CONF_OPTS += --enable-wavpack GST_PLUGINS_GOOD_DEPENDENCIES += wavpack else GST_PLUGINS_GOOD_CONF_OPTS += --disable-wavpack endif $(eval $(autotools-package))
shibajee/buildroot
package/gstreamer/gst-plugins-good/gst-plugins-good.mk
mk
mit
10,757
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
shibajee/buildroot
package/gstreamer/gst-plugins-ugly/Config.in
in
mit
1,314
# 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
shibajee/buildroot
package/gstreamer/gst-plugins-ugly/gst-plugins-ugly.hash
hash
mit
384
################################################################################ # # 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))
shibajee/buildroot
package/gstreamer/gst-plugins-ugly/gst-plugins-ugly.mk
mk
mit
2,790
include package/gstreamer/*/*.mk
shibajee/buildroot
package/gstreamer/gstreamer.mk
mk
mit
33
Fix deprecation from bison 3.0+ From http://comments.gmane.org/gmane.linux.lfs.beyond.devel/24620 Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar> diff -Nura gstreamer-0.10.36.orig/gst/parse/grammar.y gstreamer-0.10.36/gst/parse/grammar.y --- gstreamer-0.10.36.orig/gst/parse/grammar.y 2013-10-04 09:52:21.685282055 -0300 +++ gstreamer-0.10.36/gst/parse/grammar.y 2013-10-04 10:21:54.800211238 -0300 @@ -26,7 +26,6 @@ */ #define YYERROR_VERBOSE 1 -#define YYLEX_PARAM scanner #define YYENABLE_NLS 0 @@ -648,6 +647,7 @@ %right '.' %left '!' '=' +%lex-param { void *scanner } %parse-param { void *scanner } %parse-param { graph_t *graph } %pure-parser
shibajee/buildroot
package/gstreamer/gstreamer/0001-bison3.patch
patch
mit
674
comment "gstreamer 0.10 needs a toolchain w/ wchar, threads" depends on BR2_USE_MMU depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS config BR2_PACKAGE_GSTREAMER bool "gstreamer 0.10" depends on BR2_USE_WCHAR # glib2 depends on BR2_TOOLCHAIN_HAS_THREADS # glib2 depends on BR2_USE_MMU # glib2 select BR2_PACKAGE_LIBGLIB2 help GStreamer is an open source multimedia framework. This 0.10.x version of GStreamer is incompatible with GStreamer 1.X. http://gstreamer.freedesktop.org/ if BR2_PACKAGE_GSTREAMER config BR2_PACKAGE_GSTREAMER_GST_DEBUG bool "enable gst-debug trace support" default y help Enable support for the gst-debug tracing functionality in gstreamer. This has limited CPU overhead, but does increase the rootfs size somewhat. config BR2_PACKAGE_GSTREAMER_PLUGIN_REGISTRY bool "enable plugin registry" default y help Enable support for the GStreamer plugin registry. This may increase the launch-time for a GStreamer application. endif
shibajee/buildroot
package/gstreamer/gstreamer/Config.in
in
mit
1,004
# From http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-0.10.36.tar.xz.md5 md5 15389c73e091b1dda915279c388b9cb2 gstreamer-0.10.36.tar.xz # locally computed sha256 9151aa108c177054387885763fa0e433e76780f7c5655c70a5390f2a6c6871da gstreamer-0.10.36.tar.xz
shibajee/buildroot
package/gstreamer/gstreamer/gstreamer.hash
hash
mit
263
################################################################################ # # gstreamer # ################################################################################ GSTREAMER_VERSION = 0.10.36 GSTREAMER_SOURCE = gstreamer-$(GSTREAMER_VERSION).tar.xz GSTREAMER_SITE = http://gstreamer.freedesktop.org/src/gstreamer GSTREAMER_INSTALL_STAGING = YES # COPYING is in fact v2, but most of the code is v2.1+ GSTREAMER_LICENSE = LGPLv2.1+ GSTREAMER_LICENSE_FILES = COPYING # Checking if unaligned memory access works correctly cannot be done when cross # compiling. For the following architectures there is no information available # in the configure script. ifeq ($(BR2_arc)$(BR2_xtensa)$(BR2_microblaze)$(BR2_nios2),y) GSTREAMER_CONF_ENV = as_cv_unaligned_access=no endif ifeq ($(BR2_aarch64),y) GSTREAMER_CONF_ENV = as_cv_unaligned_access=yes endif GSTREAMER_CONF_OPTS = \ --disable-examples \ --disable-tests \ --disable-failing-tests \ --disable-loadsave \ $(if $(BR2_PACKAGE_GSTREAMER_GST_DEBUG),,--disable-gst-debug) \ $(if $(BR2_PACKAGE_GSTREAMER_PLUGIN_REGISTRY),,--disable-registry) GSTREAMER_DEPENDENCIES = libglib2 host-pkgconf host-bison host-flex \ $(if $(BR2_PACKAGE_LIBXML2),libxml2) $(eval $(autotools-package))
shibajee/buildroot
package/gstreamer/gstreamer/gstreamer.mk
mk
mit
1,246
# Gstreamer 1.x & Plugins source "package/gstreamer1/gstreamer1/Config.in" if BR2_PACKAGE_GSTREAMER1 source "package/gstreamer1/gst1-plugins-base/Config.in" source "package/gstreamer1/gst1-plugins-good/Config.in" source "package/gstreamer1/gst1-plugins-bad/Config.in" source "package/gstreamer1/gst1-plugins-ugly/Config.in" source "package/gstreamer1/gst1-imx/Config.in" source "package/gstreamer1/gst1-libav/Config.in" source "package/gstreamer1/gst1-validate/Config.in" source "package/gstreamer1/gst-omx/Config.in" endif
shibajee/buildroot
package/gstreamer1/Config.in
in
mit
525
config BR2_PACKAGE_GST_OMX bool "gst-omx" depends on BR2_PACKAGE_HAS_LIBOPENMAX select BR2_PACKAGE_GST1_PLUGINS_BASE help GStreamer plug-in to use OpenMAX API. http://cgit.freedesktop.org/gstreamer/gst-omx comment "gst-omx requires a OpenMAX implementation" depends on !BR2_PACKAGE_HAS_LIBOPENMAX
shibajee/buildroot
package/gstreamer1/gst-omx/Config.in
in
mit
310
# locally computed sha256 0b4874961e6488ad9e5808114bd486ea981c540907262caab1419355fd82d745 gst-omx-1.2.0.tar.xz
shibajee/buildroot
package/gstreamer1/gst-omx/gst-omx.hash
hash
mit
114
################################################################################ # # gst-omx # ################################################################################ GST_OMX_VERSION = 1.2.0 GST_OMX_SOURCE = gst-omx-$(GST_OMX_VERSION).tar.xz GST_OMX_SITE = http://gstreamer.freedesktop.org/src/gst-omx GST_OMX_LICENSE = LGPLv2.1 GST_OMX_LICENSE_FILES = COPYING ifeq ($(BR2_PACKAGE_RPI_USERLAND),y) GST_OMX_CONF_OPTS = \ --with-omx-target=rpi GST_OMX_CONF_ENV = \ CFLAGS="$(TARGET_CFLAGS) \ -I$(STAGING_DIR)/usr/include/IL \ -I$(STAGING_DIR)/usr/include/interface/vcos/pthreads \ -I$(STAGING_DIR)/usr/include/interface/vmcs_host/linux" endif ifeq ($(BR2_PACKAGE_BELLAGIO),y) GST_OMX_CONF_OPTS = \ --with-omx-target=bellagio GST_OMX_CONF_ENV = \ CFLAGS="$(TARGET_CFLAGS) \ -DOMX_VERSION_MAJOR=1 \ -DOMX_VERSION_MINOR=1 \ -DOMX_VERSION_REVISION=2 \ -DOMX_VERSION_STEP=0" endif GST_OMX_DEPENDENCIES = gstreamer1 gst1-plugins-base libopenmax # adjust library paths to where buildroot installs them define GST_OMX_FIXUP_CONFIG_PATHS find $(@D)/config -name gstomx.conf | \ xargs $(SED) 's|/usr/local|/usr|g' -e 's|/opt/vc|/usr|g' endef GST_OMX_POST_PATCH_HOOKS += GST_OMX_FIXUP_CONFIG_PATHS $(eval $(autotools-package))
shibajee/buildroot
package/gstreamer1/gst-omx/gst-omx.mk
mk
mit
1,252
From 1ca05ebb7cb63607d14983948105dd1483ea6b65 Mon Sep 17 00:00:00 2001 From: Gary Bisson <gary.bisson@boundarydevices.com> Date: Tue, 9 Aug 2016 10:26:15 +0200 Subject: [PATCH] v4l2src: Add V4L2_PIX_FMT_XRGB555X check Since this format was added in kernel 3.18, any prior version will fail to compile. Issue reported by Buildroot autobuilder with 3.10 kernel headers: http://autobuild.buildroot.net/results/b46/b460a770c8f4e992d29dde8fe37fc23a949937f2/ Signed-off-by: Gary Bisson <gary.bisson@boundarydevices.com> --- src/v4l2src/v4l2src.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/v4l2src/v4l2src.c b/src/v4l2src/v4l2src.c index c77ae49..12b392a 100644 --- a/src/v4l2src/v4l2src.c +++ b/src/v4l2src/v4l2src.c @@ -447,7 +447,9 @@ static GstCaps *gst_imx_v4l2src_caps_for_current_setup(GstImxV4l2VideoSrc *v4l2s case V4L2_PIX_FMT_RGB555: gst_fmt = GST_VIDEO_FORMAT_RGB15; break; +#ifdef V4L2_PIX_FMT_XRGB555X case V4L2_PIX_FMT_XRGB555X: +#endif case V4L2_PIX_FMT_RGB555X: gst_fmt = GST_VIDEO_FORMAT_BGR15; break; -- 2.8.1
shibajee/buildroot
package/gstreamer1/gst1-imx/0001-v4l2src-Add-V4L2_PIX_FMT_XRGB555X-check.patch
patch
mit
1,068
config BR2_PACKAGE_GST1_IMX bool "gst1-imx" depends on BR2_arm # Only relevant for i.MX depends on !BR2_STATIC_LIBS select BR2_PACKAGE_GST1_PLUGINS_BASE help This is a set of GStreamer 1.0 plugins for plugins for Freescale's i.MX platforms, which make use of the i.MX multimedia capabilities. This software supports only the i.MX6 SoC family. The IPU and PXP plugins are built when an imx-specific kernel is enabled. The V4L2 plugin is built when BR2_PACKAGE_GST1_PLUGINS_BAD is enabled. The VPU plugin is built when BR2_PACKAGE_LIBIMXVPUAPI is enabled. The EGL plugin is built when BR2_PACKAGE_IMX_GPU_VIV is enabled. The G2D plugin is built when BR2_PACKAGE_IMX_GPU_VIV_G2D is enabled. The MP3 plugin is built when BR2_PACKAGE_IMX_CODEC is enabled. https://github.com/Freescale/gstreamer-imx comment "gst1-imx needs a toolchain w/ dynamic library" depends on BR2_arm depends on BR2_STATIC_LIBS
shibajee/buildroot
package/gstreamer1/gst1-imx/Config.in
in
mit
940
# locally computed hash sha256 a75f8bc3219fa3c62637f443cef0196c9eafb90aaa5af094847d007124895822 gst1-imx-0.12.2.tar.gz
shibajee/buildroot
package/gstreamer1/gst1-imx/gst1-imx.hash
hash
mit
120
################################################################################ # # gst1-imx # ################################################################################ GST1_IMX_VERSION = 0.12.2 GST1_IMX_SITE = $(call github,Freescale,gstreamer-imx,$(GST1_IMX_VERSION)) GST1_IMX_LICENSE = LGPLv2+ GST1_IMX_LICENSE_FILES = LICENSE GST1_IMX_INSTALL_STAGING = YES GST1_IMX_DEPENDENCIES += \ host-pkgconf \ host-python \ gstreamer1 \ gst1-plugins-base GST1_IMX_CONF_OPTS = --prefix="/usr" ifeq ($(BR2_LINUX_KERNEL),y) # IPU and PXP need access to imx-specific kernel headers GST1_IMX_DEPENDENCIES += linux GST1_IMX_CONF_OPTS += --kernel-headers="$(LINUX_DIR)/include" endif ifeq ($(BR2_PACKAGE_GST1_PLUGINS_BAD),y) GST1_IMX_DEPENDENCIES += gst1-plugins-bad endif ifeq ($(BR2_PACKAGE_IMX_CODEC),y) GST1_IMX_DEPENDENCIES += imx-codec endif ifeq ($(BR2_PACKAGE_LIBIMXVPUAPI),y) GST1_IMX_DEPENDENCIES += libimxvpuapi endif ifeq ($(BR2_PACKAGE_IMX_GPU_VIV),y) GST1_IMX_DEPENDENCIES += imx-gpu-viv ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y) GST1_IMX_DEPENDENCIES += xlib_libX11 GST1_IMX_CONF_OPTS += --egl-platform=x11 else ifeq ($(BR2_PACKAGE_WAYLAND),y) GST1_IMX_DEPENDENCIES += wayland GST1_IMX_CONF_OPTS += --egl-platform=wayland else GST1_IMX_CONF_OPTS += --egl-platform=fb endif endif endif define GST1_IMX_CONFIGURE_CMDS cd $(@D); \ $(TARGET_CONFIGURE_OPTS) \ $(HOST_DIR)/usr/bin/python2 ./waf configure $(GST1_IMX_CONF_OPTS) endef define GST1_IMX_BUILD_CMDS cd $(@D); \ $(HOST_DIR)/usr/bin/python2 ./waf build -j $(PARALLEL_JOBS) endef define GST1_IMX_INSTALL_TARGET_CMDS cd $(@D); \ $(HOST_DIR)/usr/bin/python2 ./waf --destdir=$(TARGET_DIR) \ install endef $(eval $(generic-package))
shibajee/buildroot
package/gstreamer1/gst1-imx/gst1-imx.mk
mk
mit
1,715
config BR2_PACKAGE_GST1_LIBAV bool "gst1-libav" depends on BR2_PACKAGE_FFMPEG_ARCH_SUPPORTS select BR2_PACKAGE_FFMPEG select BR2_PACKAGE_FFMPEG_SWSCALE select BR2_PACKAGE_GST1_PLUGINS_BASE help GStreamer plugin (formerly gst-ffmpeg). This package contains GStreamer plugins based on the libav project. The codecs, muxers, bitstreams and filters to build can be selected in the ffmpeg package. http://gstreamer.freedesktop.org/
shibajee/buildroot
package/gstreamer1/gst1-libav/Config.in
in
mit
454
# From http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.8.2.tar.xz.sha256sum sha256 b5f3c7a27b39b5f5c2f0bfd546b0c655020faf6b38d27b64b346c43e5ebf687a gst-libav-1.8.2.tar.xz
shibajee/buildroot
package/gstreamer1/gst1-libav/gst1-libav.hash
hash
mit
183