From owner-svn-ports-head@freebsd.org Mon Nov 14 02:45:28 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 06E6EC40A2A; Mon, 14 Nov 2016 02:45:28 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id CC8011699; Mon, 14 Nov 2016 02:45:27 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uAE2jRMq036244; Mon, 14 Nov 2016 02:45:27 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uAE2jRp7036243; Mon, 14 Nov 2016 02:45:27 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201611140245.uAE2jRp7036243@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Mon, 14 Nov 2016 02:45:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426078 - head/net/miniupnpd X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Nov 2016 02:45:28 -0000 Author: danfe Date: Mon Nov 14 02:45:26 2016 New Revision: 426078 URL: https://svnweb.freebsd.org/changeset/ports/426078 Log: 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 Modified: head/net/miniupnpd/Makefile Modified: head/net/miniupnpd/Makefile ============================================================================== --- head/net/miniupnpd/Makefile Mon Nov 14 02:05:29 2016 (r426077) +++ head/net/miniupnpd/Makefile Mon Nov 14 02:45:26 2016 (r426078) @@ -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