Date: Fri, 6 Apr 2018 20:50:15 +0000 (UTC) From: Yuri Victorovich <yuri@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r466690 - in head/net/mosquitto: . files Message-ID: <201804062050.w36KoF6Y069676@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: yuri Date: Fri Apr 6 20:50:15 2018 New Revision: 466690 URL: https://svnweb.freebsd.org/changeset/ports/466690 Log: net/mosquitto: Unbreak the rc script; Fix the license The rc script had the 'pidfile' token, when the code references 'pid_file'. While here, fixed the license. It is actually EPL, not BSD. Reported by: David BOYER <david.boyer59@gmail.com> (the pidfile issue in a private communication) Approved by: portmgr blanket Modified: head/net/mosquitto/Makefile head/net/mosquitto/files/mosquitto.in Modified: head/net/mosquitto/Makefile ============================================================================== --- head/net/mosquitto/Makefile Fri Apr 6 20:37:04 2018 (r466689) +++ head/net/mosquitto/Makefile Fri Apr 6 20:50:15 2018 (r466690) @@ -3,14 +3,14 @@ PORTNAME= mosquitto PORTVERSION= 1.4.14 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= net MASTER_SITES= http://mosquitto.org/files/source/ MAINTAINER= joe@thrallingpenguin.com COMMENT= Open-Source MQTT Broker -LICENSE= BSD3CLAUSE +LICENSE= EPL LIB_DEPENDS= libcares.so:dns/c-ares \ libuuid.so:misc/e2fsprogs-libuuid Modified: head/net/mosquitto/files/mosquitto.in ============================================================================== --- head/net/mosquitto/files/mosquitto.in Fri Apr 6 20:37:04 2018 (r466689) +++ head/net/mosquitto/files/mosquitto.in Fri Apr 6 20:50:15 2018 (r466690) @@ -27,7 +27,7 @@ mosquitto_config=${mosquitto_config:="%%PREFIX%%/etc/m command=%%PREFIX%%/sbin/mosquitto command_args="-c ${mosquitto_config} -d" -pidfile=$(grep pidfile ${mosquitto_config} | awk '{print($2)}') +pidfile=$(grep pid_file ${mosquitto_config} | awk '{print($2)}') required_files=${mosquitto_config} extra_commands="reload"
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201804062050.w36KoF6Y069676>