diff options
author | danfe <danfe@FreeBSD.org> | 2016-11-14 10:45:26 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2016-11-14 10:45:26 +0800 |
commit | e0adfccd0c89c0a6d6ad0322d4954c41de491d70 (patch) | |
tree | 6ed52ac64152460f468ac0403f5203c66165d7f5 /net/miniupnpd | |
parent | 7d149e93d34e181fefe02d5b4d3da156227df66f (diff) | |
download | freebsd-ports-gnome-e0adfccd0c89c0a6d6ad0322d4954c41de491d70.tar.gz freebsd-ports-gnome-e0adfccd0c89c0a6d6ad0322d4954c41de491d70.tar.zst freebsd-ports-gnome-e0adfccd0c89c0a6d6ad0322d4954c41de491d70.zip |
Ensure that option selection dialog is readable (fits the window):
- Rename PF_ENABLE_FILTER_RULES -> PF_FILTER_RULES
- Reword UPNP_STRICT_DESC text to make it shorter and clearer
- Drop IPV6_DESC which is already in standard descriptions pool
Diffstat (limited to 'net/miniupnpd')
-rw-r--r-- | net/miniupnpd/Makefile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/net/miniupnpd/Makefile b/net/miniupnpd/Makefile index 0e2faa0a6f72..40dba2c92255 100644 --- a/net/miniupnpd/Makefile +++ b/net/miniupnpd/Makefile @@ -23,15 +23,14 @@ USE_RC_SUBR= miniupnpd CFLAGS+= -I${OPENSSLINC} LDFLAGS+= -L${OPENSSLLIB} -OPTIONS_DEFINE= PF_ENABLE_FILTER_RULES CHECK_PORTINUSE IPV6 UPNP_IGDV2 UPNP_STRICT LEASEFILE -PF_ENABLE_FILTER_RULES_DESC= Enable pf generation of filter rules +OPTIONS_DEFINE= PF_FILTER_RULES CHECK_PORTINUSE IPV6 UPNP_IGDV2 UPNP_STRICT LEASEFILE +PF_FILTER_RULES_DESC= Enable pf generation of filter rules CHECK_PORTINUSE_DESC= Check if ports are in use -IPV6_DESC= Enable IPv6 UPNP_IGDV2_DESC= Build an IGDv2 instead of an IGDv1 -UPNP_STRICT_DESC= Be more strict regarding compliance with UPnP specifications +UPNP_STRICT_DESC= More strict UPnP specification compliance LEASEFILE_DESC= Enable lease file -PF_ENABLE_FILTER_RULES_EXTRA_PATCHES= ${PATCHDIR}/pf_enable_filter_rules.patch +PF_FILTER_RULES_EXTRA_PATCHES= ${PATCHDIR}/pf_enable_filter_rules.patch CHECK_PORTINUSE_EXTRA_PATCHES= ${PATCHDIR}/enable_check_portinuse.patch IPV6_EXTRA_PATCHES= ${PATCHDIR}/enable_ipv6.patch UPNP_IGDV2_EXTRA_PATCHES= ${PATCHDIR}/enable_igdv2.patch |