Commit 1218ab64 authored by Maxime Hadjinlian's avatar Maxime Hadjinlian Committed by Thomas Petazzoni
Browse files

netcat-openbsd: new package



The OpenBSD implementations of netcat.  The main difference from
netcat is the support for IPv6, proxies, and Unix sockets.

[Thomas: use tabs in the command applying Debian patches, add
dependency on Busybox when enabled so that we override the 'nc'
command installed by Busybox.]

Signed-off-by: default avatarMaxime Hadjinlian <maxime.hadjinlian@gmail.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent f25a672f
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -1025,6 +1025,7 @@ endif
	source "package/netatalk/Config.in"
if BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
	source "package/netcat/Config.in"
	source "package/netcat-openbsd/Config.in"
endif
	source "package/netplug/Config.in"
	source "package/netsnmp/Config.in"
+24 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_NETCAT_OPENBSD
	bool "netcat-openbsd"
	select BR2_PACKAGE_LIBBSD
	depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
	depends on BR2_TOOLCHAIN_HAS_THREADS
	depends on BR2_TOOLCHAIN_USES_GLIBC
	help
          A simple Unix utility which reads and writes data across network
          connections using TCP or UDP protocol. It is designed to be a
          reliable "back-end" tool that can be used directly or easily driven
          by other programs and scripts. At the same time it is a feature-rich
          network debugging and exploration tool, since it can create almost
          any kind of connection you would need and has several interesting
          built-in capabilities.

          This package contains the OpenBSD rewrite of netcat, including
          support for IPv6, proxies, and Unix sockets.

          https://packages.debian.org/sid/netcat-openbsd

comment "netcat-openbsd needs an (e)glibc toolchain w/ threads"
    depends on BR2_PACKAGE_LIBBSD_ARCH_SUPPORTS
    depends on !BR2_TOOLCHAIN_HAS_THREADS || !BR2_TOOLCHAIN_USES_GLIBC
~
+35 −0
Original line number Diff line number Diff line
################################################################################
#
# netcat-openbsd
#
################################################################################

NETCAT_OPENBSD_VERSION = debian/1.105-7
NETCAT_OPENBSD_SITE = git://anonscm.debian.org/collab-maint/netcat-openbsd
NETCAT_OPENBSD_LICENSE = BSD-3c
NETCAT_OPENBSD_LICENSE_FILE = debian/copyright
NETCAT_OPENBSD_DEPENDENCIES = host-pkgconf libbsd

# Ensure Busybox gets built/installed before, so that this package
# overrides Busybox nc.
ifeq ($(BR2_PACKAGE_BUSYBOX),y)
NETCAT_OPENBSD_DEPENDENCIES += busybox
endif

define NETCAT_OPENBSD_APPLY_DEBIAN_PATCHES
	if [ -d $(@D)/debian/patches ]; then \
		support/scripts/apply-patches.sh $(@D) $(@D)/debian/patches *.dpatch; \
	fi
endef

NETCAT_OPENBSD_POST_PATCH_HOOKS += NETCAT_OPENBSD_APPLY_DEBIAN_PATCHES

define NETCAT_OPENBSD_BUILD_CMDS
	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef

define NETCAT_OPENBSD_INSTALL_TARGET_CMDS
	$(INSTALL) -m 755 -D $(@D)/nc $(TARGET_DIR)/usr/bin/nc
endef

$(eval $(generic-package))