From owner-svn-ports-head@freebsd.org Wed Nov 23 14:45:56 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 1F50DC5150B; Wed, 23 Nov 2016 14:45:56 +0000 (UTC) (envelope-from amdmi3@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 D3BE0ABB; Wed, 23 Nov 2016 14:45:55 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uANEjt9x084941; Wed, 23 Nov 2016 14:45:55 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uANEjsZM084939; Wed, 23 Nov 2016 14:45:54 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201611231445.uANEjsZM084939@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 23 Nov 2016 14:45:54 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426930 - in head/sysutils/isc-cron: . files 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: Wed, 23 Nov 2016 14:45:56 -0000 Author: amdmi3 Date: Wed Nov 23 14:45:54 2016 New Revision: 426930 URL: https://svnweb.freebsd.org/changeset/ports/426930 Log: - Add LICENSE - Cosmetic fixes - handle SUID bit properly - Respect CC and CFLAGS Modified: head/sysutils/isc-cron/Makefile head/sysutils/isc-cron/files/patch-Makefile Modified: head/sysutils/isc-cron/Makefile ============================================================================== --- head/sysutils/isc-cron/Makefile Wed Nov 23 14:43:09 2016 (r426929) +++ head/sysutils/isc-cron/Makefile Wed Nov 23 14:45:54 2016 (r426930) @@ -3,29 +3,32 @@ PORTNAME= isc-cron PORTVERSION= 4.1 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= sysutils MASTER_SITES= ISC/cron DISTNAME= cron_${PORTVERSION}.shar -EXTRACT_SUFX= +EXTRACT_SUFX= # none MAINTAINER= ports@FreeBSD.org COMMENT= ISC Cron, former Vixie Cron +LICENSE= ISCL + WRKSRC= ${WRKDIR} SUB_FILES= pkg-message -PLIST_FILES= sbin/cron bin/crontab man/man1/crontab.1.gz \ - man/man5/crontab.5.gz man/man8/cron.8.gz -PKGMESSAGE= ${WRKDIR}/pkg-message +PLIST_FILES= sbin/cron \ + "@(root,wheel,4755) bin/crontab" \ + man/man1/crontab.1.gz \ + man/man5/crontab.5.gz \ + man/man8/cron.8.gz do-extract: - ${MKDIR} ${WRKSRC} + @${MKDIR} ${WRKSRC} cd ${WRKSRC} && ${SH} ${DISTDIR}/${DISTNAME} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/cron ${STAGEDIR}${PREFIX}/sbin ${INSTALL_PROGRAM} ${WRKSRC}/crontab ${STAGEDIR}${PREFIX}/bin - ${CHMOD} 4555 ${STAGEDIR}${PREFIX}/bin/crontab ${INSTALL_MAN} ${WRKSRC}/crontab.1 ${STAGEDIR}${MANPREFIX}/man/man1 ${INSTALL_MAN} ${WRKSRC}/crontab.5 ${STAGEDIR}${MANPREFIX}/man/man5 ${INSTALL_MAN} ${WRKSRC}/cron.8 ${STAGEDIR}${MANPREFIX}/man/man8 Modified: head/sysutils/isc-cron/files/patch-Makefile ============================================================================== --- head/sysutils/isc-cron/files/patch-Makefile Wed Nov 23 14:43:09 2016 (r426929) +++ head/sysutils/isc-cron/files/patch-Makefile Wed Nov 23 14:45:54 2016 (r426930) @@ -1,11 +1,20 @@ ---- Makefile.orig 2013-10-18 04:21:17.000000000 +1100 -+++ Makefile 2013-10-18 04:21:22.000000000 +1100 -@@ -66,7 +66,7 @@ +--- Makefile.orig 2016-11-23 12:27:46 UTC ++++ Makefile +@@ -66,7 +66,7 @@ CDEBUG = -g #<> LINTFLAGS = -hbxa $(INCLUDE) $(DEBUGGING) #<> -CC = gcc -Wall -Wno-unused -Wno-comment -+CC = cc -Wall -Wno-unused -Wno-comment ++CC += -Wall -Wno-unused -Wno-comment #<> DEFS = #(SGI IRIX systems need this) +@@ -79,7 +79,7 @@ LDFLAGS = + #################################### end configurable stuff + + SHELL = /bin/sh +-CFLAGS = $(CDEBUG) $(INCLUDE) $(DEFS) ++CFLAGS += $(INCLUDE) $(DEFS) + + INFOS = README CHANGES FEATURES INSTALL CONVERSION THANKS MAIL + MANPAGES = bitstring.3 crontab.5 crontab.1 cron.8 putman.sh