diff options
author | bsiegert <bsiegert> | 2015-01-17 15:30:03 +0000 |
---|---|---|
committer | bsiegert <bsiegert> | 2015-01-17 15:30:03 +0000 |
commit | dca1b5fb010168c59f0b5e16dc7732909eddf086 (patch) | |
tree | 81ae28fd2a2901774be3c7efcfeef246e50214cb /comms/kermit | |
parent | 2c05699850463b4f12a759b7d134c46008bc11c5 (diff) | |
download | pkgsrc-dca1b5fb010168c59f0b5e16dc7732909eddf086.tar.gz |
Switch license to modified-bsd. Move socks4 option over to use dante.
Patch provided by Kirk Russell in PR pkg/49546.
Diffstat (limited to 'comms/kermit')
-rw-r--r-- | comms/kermit/Makefile | 9 | ||||
-rw-r--r-- | comms/kermit/options.mk | 8 |
2 files changed, 10 insertions, 7 deletions
diff --git a/comms/kermit/Makefile b/comms/kermit/Makefile index 02376435918..c9308898ec6 100644 --- a/comms/kermit/Makefile +++ b/comms/kermit/Makefile @@ -1,15 +1,18 @@ -# $NetBSD: Makefile,v 1.86 2014/10/05 16:27:25 wiz Exp $ +# $NetBSD: Makefile,v 1.87 2015/01/17 15:30:03 bsiegert Exp $ DISTNAME= cku302 PKGNAME= kermit-9.0.302 -PKGREVISION= 6 +PKGREVISION= 7 CATEGORIES= comms MASTER_SITES= ftp://ftp.kermitproject.org/kermit/archives/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.kermitproject.org/ COMMENT= Network and serial communication, file transfer, and scripting utility -LICENSE= kermit-license + +# UNIX C-Kermit 9.0 has been released with the Revised 3-Clause BSD License. +# http://www.columbia.edu/kermit/licensing.html +LICENSE= modified-bsd .include "../../mk/bsd.prefs.mk" diff --git a/comms/kermit/options.mk b/comms/kermit/options.mk index fbf1f7385a9..2a072550e43 100644 --- a/comms/kermit/options.mk +++ b/comms/kermit/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.4 2011/08/25 14:54:06 hans Exp $ +# $NetBSD: options.mk,v 1.5 2015/01/17 15:30:03 bsiegert Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.kermit PKG_SUPPORTED_OPTIONS= kermit-suid-uucp ssl kerberos @@ -22,9 +22,9 @@ SPECIAL_PERMS+= bin/kermit ${UUCP_USER} ${UUCP_GROUP} 4555 ### SOCKS firewall support. ### .if !empty(PKG_OPTIONS:Msocks4) -KFLAGS+= -DSOCKS -LIBS+= -L${BUILDLINK_PREFIX.socks4}/lib -lsocks4 -.include "../../net/socks4/buildlink3.mk" +KFLAGS+= -DSOCKS -DCK_SOCKS +LIBS+= -L${BUILDLINK_PREFIX.dante}/lib -lsocks +.include "../../net/dante/buildlink3.mk" .elif !empty(PKG_OPTIONS:Msocks5) KFLAGS+= -DSOCKS -DCK_SOCKS5 LIBS+= -L${BUILDLINK_PREFIX.socks5}/lib -lsocks5 |