Move all to deprecated folder.
This commit is contained in:
17
deprecated/firmware/buildroot/package/mjpegtools/Config.in
Normal file
17
deprecated/firmware/buildroot/package/mjpegtools/Config.in
Normal file
@@ -0,0 +1,17 @@
|
||||
config BR2_PACKAGE_MJPEGTOOLS
|
||||
bool "mjpegtools"
|
||||
select BR2_PACKAGE_JPEG
|
||||
depends on BR2_USE_MMU # fork
|
||||
depends on BR2_INSTALL_LIBSTDCPP
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
help
|
||||
The mjpegtools programs are a set of tools
|
||||
that can do recording of videos and playback,
|
||||
simple cut-and-paste editing and the MPEG
|
||||
compression of audio and video under Linux.
|
||||
|
||||
http://mjpeg.sourceforge.net
|
||||
|
||||
comment "mjpegtools needs a toolchain w/ C++, threads"
|
||||
depends on BR2_USE_MMU
|
||||
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
@@ -0,0 +1,3 @@
|
||||
# From http://sourceforge.net/projects/mjpeg/files/mjpegtools/2.1.0/
|
||||
md5 57bf5dd78976ca9bac972a6511b236f3 mjpegtools-2.1.0.tar.gz
|
||||
sha1 b9effa86280e23d67369e842e5cb645948583097 mjpegtools-2.1.0.tar.gz
|
||||
@@ -0,0 +1,56 @@
|
||||
################################################################################
|
||||
#
|
||||
# mjpegtools
|
||||
#
|
||||
################################################################################
|
||||
|
||||
MJPEGTOOLS_VERSION = 2.1.0
|
||||
MJPEGTOOLS_SITE = http://sourceforge.net/projects/mjpeg/files/mjpegtools/$(MJPEGTOOLS_VERSION)
|
||||
MJPEGTOOLS_DEPENDENCIES = host-pkgconf jpeg
|
||||
MJPEGTOOLS_LICENSE = GPLv2+
|
||||
MJPEGTOOLS_LICENSE_FILES = COPYING
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBPNG),y)
|
||||
MJPEGTOOLS_CONF_OPTS += --with-libpng
|
||||
MJPEGTOOLS_DEPENDENCIES += libpng
|
||||
else
|
||||
MJPEGTOOLS_CONF_OPTS += --without-libpng
|
||||
endif
|
||||
|
||||
# expects X11 backend in sdl
|
||||
ifeq ($(BR2_PACKAGE_SDL_X11),y)
|
||||
MJPEGTOOLS_CONF_OPTS += --with-libsdl
|
||||
MJPEGTOOLS_DEPENDENCIES += sdl
|
||||
else
|
||||
MJPEGTOOLS_CONF_OPTS += --without-libsdl
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SDL_GFX),y)
|
||||
MJPEGTOOLS_CONF_OPTS += --with-sdlgfx
|
||||
MJPEGTOOLS_DEPENDENCIES += sdl_gfx
|
||||
else
|
||||
MJPEGTOOLS_CONF_OPTS += --without-sdlgfx
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBX11),y)
|
||||
MJPEGTOOLS_CONF_OPTS += --with-x
|
||||
MJPEGTOOLS_DEPENDENCIES += xlib_libX11
|
||||
else
|
||||
MJPEGTOOLS_CONF_OPTS += --without-x
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_XLIB_LIBXXF86DGA),y)
|
||||
MJPEGTOOLS_CONF_OPTS += --with-dga
|
||||
MJPEGTOOLS_DEPENDENCIES += xlib_libXxf86dga
|
||||
else
|
||||
MJPEGTOOLS_CONF_OPTS += --without-dga
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBGTK2),y)
|
||||
MJPEGTOOLS_CONF_OPTS += --with-gtk
|
||||
MJPEGTOOLS_DEPENDENCIES += libgtk2
|
||||
else
|
||||
MJPEGTOOLS_CONF_OPTS += --without-gtk
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user