From owner-svn-ports-all@freebsd.org Thu Oct 5 06:22:22 2017 Return-Path: Delivered-To: svn-ports-all@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 AF55BE2DDB6; Thu, 5 Oct 2017 06:22:22 +0000 (UTC) (envelope-from cy@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 7CD711C3C; Thu, 5 Oct 2017 06:22:22 +0000 (UTC) (envelope-from cy@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v956MLer086507; Thu, 5 Oct 2017 06:22:21 GMT (envelope-from cy@FreeBSD.org) Received: (from cy@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v956ML9N086505; Thu, 5 Oct 2017 06:22:21 GMT (envelope-from cy@FreeBSD.org) Message-Id: <201710050622.v956ML9N086505@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cy set sender to cy@FreeBSD.org using -f From: Cy Schubert Date: Thu, 5 Oct 2017 06:22:21 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r451268 - in head/sysutils: syslog-ng36 syslog-ng37 X-SVN-Group: ports-head X-SVN-Commit-Author: cy X-SVN-Commit-Paths: in head/sysutils: syslog-ng36 syslog-ng37 X-SVN-Commit-Revision: 451268 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2017 06:22:22 -0000 Author: cy Date: Thu Oct 5 06:22:21 2017 New Revision: 451268 URL: https://svnweb.freebsd.org/changeset/ports/451268 Log: Move PKGNAMESUFFIX determination logic to a more appropriate place in the Makefile. Modified: head/sysutils/syslog-ng36/Makefile (contents, props changed) head/sysutils/syslog-ng37/Makefile (contents, props changed) Modified: head/sysutils/syslog-ng36/Makefile ============================================================================== --- head/sysutils/syslog-ng36/Makefile Thu Oct 5 06:22:17 2017 (r451267) +++ head/sysutils/syslog-ng36/Makefile Thu Oct 5 06:22:21 2017 (r451268) @@ -4,12 +4,13 @@ PORTNAME= syslog-ng DISTVERSION= 3.6.4 PORTREVISION= 1 -.if !defined(MASTERDIR) -PKGNAMESUFFIX= 36 -.endif CATEGORIES= sysutils MASTER_SITES= https://github.com/balabit/${PORTNAME}/releases/download/${PORTNAME}-${DISTVERSION}/ \ http://www.balabit.com/downloads/files/syslog-ng/open-source-edition/${DISTVERSION}/source/ \ + +.if !defined(MASTERDIR) +PKGNAMESUFFIX= 36 +.endif MAINTAINER= cy@FreeBSD.org COMMENT= Powerful syslogd replacement Modified: head/sysutils/syslog-ng37/Makefile ============================================================================== --- head/sysutils/syslog-ng37/Makefile Thu Oct 5 06:22:17 2017 (r451267) +++ head/sysutils/syslog-ng37/Makefile Thu Oct 5 06:22:21 2017 (r451268) @@ -4,13 +4,14 @@ PORTNAME= syslog-ng PORTVERSION= 3.7.3 PORTREVISION= 7 -.if !defined(MASTERDIR) -PKGNAMESUFFIX= 37 -.endif CATEGORIES= sysutils #MASTER_SITES= https://github.com/balabit/syslog-ng/releases/download/syslog-ng-${DISTVERSION}/ DISTNAME= syslog-ng-${DISTVERSION}_with_man MASTER_SITES= http://peter.czanik.hu/freebsd/ + +.if !defined(MASTERDIR) +PKGNAMESUFFIX= 37 +.endif MAINTAINER= cy@FreeBSD.org COMMENT= Powerful syslogd replacement