diff options
author | Koichiro Iwao <meta@FreeBSD.org> | 2018-10-23 13:48:04 +0000 |
---|---|---|
committer | Koichiro Iwao <meta@FreeBSD.org> | 2018-10-23 13:48:04 +0000 |
commit | 63a33ea2c779544e0660febea938d76998d20015 (patch) | |
tree | ba00115f1fa03b848df4e704dcbb532a5ab211ca | |
parent | b5e37fea970106b22ba2124e4a2757146e359390 (diff) |
net/pbnc: Fix license information
License of this software is declared as 'BSD' in pbnc.readme.
But it is not clear which versions of the BSD license (2, 3 or 4 clause)
it is. No further file in the source archive contains license information.
Committed with minor changes like done in r462831.
PR: 222546
Submitted by: Yasuhiro KIMURA <yasu@utahime.org> (original version)
Approved by: mentors (implicit)
Differential Revision: https://reviews.freebsd.org/D17662
Notes
Notes:
svn path=/head/; revision=482838
-rw-r--r-- | net/pbnc/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/net/pbnc/Makefile b/net/pbnc/Makefile index 866a1cf472e2..d399003ca657 100644 --- a/net/pbnc/Makefile +++ b/net/pbnc/Makefile @@ -10,12 +10,19 @@ DISTNAME= pbnc MAINTAINER= hrs@FreeBSD.org COMMENT= Simple userspace TCP port bouncer -LICENSE= BSD +LICENSE= BSDunclear +LICENSE_NAME= Unclear BSD License +LICENSE_TEXT= License of this software is declared as 'BSD' in pbnc.readme. \ + But it is not clear which versions of the BSD license (2, \ + 3 or 4 clause) it is. No further file in the source archive \ + contains license information. +LICENSE_PERMS= ${_LICENSE_PERMS_DEFAULT} RUN_DEPENDS= p5-Net-Netmask>=0:net-mgmt/p5-Net-Netmask USES= perl5 USE_PERL5= run + NO_BUILD= yes NO_ARCH= yes PLIST_FILES= etc/pbnc.cfg bin/pbnc.pl |