41 lines
1.3 KiB
Bash
41 lines
1.3 KiB
Bash
# Template file for 'openbsd-netcat'
|
|
pkgname=openbsd-netcat
|
|
version=1.190
|
|
revision=1
|
|
wrksrc="netcat-openbsd-${version%p*}"
|
|
hostmakedepends="pkg-config"
|
|
makedepends="libbsd-devel"
|
|
short_desc="TCP/IP swiss army knife (OpenBSD/Debian variant)"
|
|
maintainer="Leah Neukirchen <leah@vuxu.org>"
|
|
license="3-clause-BSD,2-clause-BSD"
|
|
homepage="http://packages.debian.org/sid/netcat-openbsd"
|
|
distfiles="
|
|
${DEBIAN_SITE}/main/n/netcat-openbsd/netcat-openbsd_${version%p*}.orig.tar.gz
|
|
${DEBIAN_SITE}/main/n/netcat-openbsd/netcat-openbsd_${version}-1.debian.tar.xz"
|
|
checksum="68ccc448392c05ec51baed0167a72b8c650454f990b895d6e6877d416a38e536
|
|
fb6579ee74b521a858e5b32a20b19ec1f003474bedcb9488fdf0e98262ce8f5e"
|
|
|
|
alternatives="
|
|
nc:nc:/usr/bin/openbsd-nc
|
|
nc:nc.1:/usr/share/man/man1/openbsd-nc.1"
|
|
|
|
do_build() {
|
|
# XXX TODO re-enable TLS
|
|
( cd ../debian/patches; xargs cat <series; ) | patch -p1
|
|
case "$XBPS_TARGET_MACHINE" in
|
|
*-musl) # Add missing b64_ntop() and b64_pton() functions
|
|
cp ${FILESDIR}/base64.c .
|
|
sed -i Makefile -e "/SRCS=/s;\(.*\);& base64.c;"
|
|
;;
|
|
esac
|
|
make ${makejobs} \
|
|
CFLAGS="$CFLAGS -DDEBIAN_VERSION=\"\\\"${version}\\\"\" $(pkg-config libbsd --cflags)" \
|
|
LDFLAGS="$LDFLAGS $(pkg-config libbsd --libs)"
|
|
}
|
|
|
|
do_install() {
|
|
vbin nc openbsd-nc
|
|
vman nc.1 openbsd-nc.1
|
|
vlicense ../debian/copyright LICENSE
|
|
}
|