diff options
author | Nuno Teixeira <eduardo@FreeBSD.org> | 2023-04-10 07:32:29 +0100 |
---|---|---|
committer | Nuno Teixeira <eduardo@FreeBSD.org> | 2023-04-10 07:53:00 +0100 |
commit | cc30d8daf3e83995620de6696b23dc437daec8dc (patch) | |
tree | 0840ffbfef971adb80b202385fed41fa7a7ec509 /ftp | |
parent | security/vuxml: document 20 py*-* vulnerabilities (diff) |
ftp/tnftp: Add license
[1]
tnftp contains a mix of BSD2CLAUSE (mostly the NetBSD
derived code) and BSD3CLAUSE (inherited from the orignal UCB BSD code).
tnftp was previously BSD4CLAUSE but that was fixed in the upstream code
a while ago so I changed the COPYING to reflect that. It's no more
restrictive than BSD3CLAUSE now.
Suggested by: [1] Luke Mewburn <lukem@NetBSD.org>
Suggested by: rodrigo, salvadore
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/tnftp/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/ftp/tnftp/Makefile b/ftp/tnftp/Makefile index d768c9e3ebb5..35d3c83aff84 100644 --- a/ftp/tnftp/Makefile +++ b/ftp/tnftp/Makefile @@ -6,9 +6,14 @@ MASTER_SITES= ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/ MAINTAINER= eduardo@FreeBSD.org COMMENT= Enhanced FTP client from NetBSD +LICENSE= BSD2CLAUSE BSD3CLAUSE +LICENSE_COMB= multi +LICENSE_FILE= ${WRKSRC}/COPYING + USES= libedit ncurses ssl GNU_CONFIGURE= yes -PLIST_FILES= bin/tnftp man/man1/tnftp.1.gz +PLIST_FILES= bin/tnftp \ + man/man1/tnftp.1.gz .include <bsd.port.mk> |