Move all to deprecated folder.

This commit is contained in:
2016-11-16 21:57:57 +01:00
parent 01738a7684
commit 05de7d6c04
9777 changed files with 0 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
--- udpcast-20120424/console.h 2005-12-22 22:59:18.000000000 +0000
+++ udpcast-20120424.mod/console.h 2013-05-22 22:22:19.835474140 +0100
@@ -6,6 +6,8 @@
#include <winbase.h>
#endif /* __MINGW32__ */
+#include <sys/select.h>
+
#define prepareConsole udpc_prepareConsole
#define getConsoleFd udpc_getConsoleFd
#define restoreConsole udpc_restoreConsole

View File

@@ -0,0 +1,31 @@
comment "udpcast needs a toolchain w/ threads"
depends on BR2_USE_MMU
depends on !BR2_TOOLCHAIN_HAS_THREADS
config BR2_PACKAGE_UDPCAST
bool "udpcast"
depends on BR2_TOOLCHAIN_HAS_THREADS
depends on BR2_USE_MMU # fork()
help
A multicast protocol implementation which happens to
be very handy for imaging drives over the network.
http://www.udpcast.linux.lu/
if BR2_PACKAGE_UDPCAST
menu "udpcast tools selection"
config BR2_PACKAGE_UDPCAST_SENDER
bool "sender"
help
The udpcast transmitter.
config BR2_PACKAGE_UDPCAST_RECEIVER
bool "receiver"
help
The udpcast receiver.
endmenu
endif

View File

@@ -0,0 +1,2 @@
# locally computed hash
sha256 ce9090ef80b6035a744a9b5ac335e61c99baa92c39ff53277266fbfcb836445a udpcast-20120424.tar.gz

View File

@@ -0,0 +1,31 @@
################################################################################
#
# udpcast
#
################################################################################
UDPCAST_VERSION = 20120424
UDPCAST_SITE = http://www.udpcast.linux.lu/download
UDPCAST_DEPENDENCIES = host-m4
UDPCAST_LICENSE = BSD-2c, GPLv2+
UDPCAST_LICENSE_FILES = COPYING
define UDPCAST_REMOVE_UDP_SENDER
rm -f $(TARGET_DIR)/usr/sbin/udp-sender
rm -f $(TARGET_DIR)/usr/sbin/udp-sender.1
endef
ifneq ($(BR2_PACKAGE_UDPCAST_SENDER),y)
UDPCAST_POST_INSTALL_TARGET_HOOKS += UDPCAST_REMOVE_UDP_SENDER
endif
define UDPCAST_REMOVE_UDP_RECEIVER
rm -f $(TARGET_DIR)/usr/sbin/udp-receiver
rm -f $(TARGET_DIR)/usr/sbin/udp-receiver.1
endef
ifneq ($(BR2_PACKAGE_UDPCAST_RECEIVER),y)
UDPCAST_POST_INSTALL_TARGET_HOOKS += UDPCAST_REMOVE_UDP_RECEIVER
endif
$(eval $(autotools-package))