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,16 @@
Link to libncurses instead of the legacy libcurses.
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
diff -Nura statserial-1.1.orig/Makefile statserial-1.1/Makefile
--- statserial-1.1.orig/Makefile 2014-07-04 12:47:41.279440415 -0300
+++ statserial-1.1/Makefile 2014-07-04 12:47:47.948665740 -0300
@@ -10,7 +10,7 @@
LDFLAGS = -s -N
statserial: statserial.o
- $(LD) $(LDFLAGS) -o statserial statserial.o -lcurses
+ $(LD) $(LDFLAGS) -o statserial statserial.o -lncurses
statserial.o: statserial.c
$(CC) $(CFLAGS) -c statserial.c

View File

@@ -0,0 +1,11 @@
config BR2_PACKAGE_STATSERIAL
bool "statserial"
select BR2_PACKAGE_NCURSES
help
Displays a table of the signals on a standard
9-pin or 25-pin serial port, and indicates the
status of the handshaking lines. It can be
useful for debugging problems with serial
ports or modems.
https://sites.google.com/site/tranter/software

View File

@@ -0,0 +1,2 @@
# Locally calculated
sha256 40cf3bd506852942aa98f468c90ed4ea66dbd343b93efacd40d617b55caf3967 statserial-1.1.tar.gz

View File

@@ -0,0 +1,21 @@
################################################################################
#
# statserial
#
################################################################################
STATSERIAL_VERSION = 1.1
STATSERIAL_SITE = http://www.ibiblio.org/pub/Linux/system/serial
STATSERIAL_DEPENDENCIES = ncurses
STATSERIAL_LICENSE = GPLv2+
STATSERIAL_LICENSE_FILES = COPYING
define STATSERIAL_BUILD_CMDS
$(MAKE) CC="$(TARGET_CC)" LD="$(TARGET_CC)" CFLAGS="$(TARGET_CFLAGS)" LDFLAGS="$(TARGET_LDFLAGS)" -C $(@D)
endef
define STATSERIAL_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/statserial $(TARGET_DIR)/usr/bin/statserial
endef
$(eval $(generic-package))