Index: head/deskutils/countdown/Makefile =================================================================== --- head/deskutils/countdown/Makefile (revision 418340) +++ head/deskutils/countdown/Makefile (revision 418341) @@ -1,24 +1,24 @@ # $FreeBSD$ PORTNAME= countdown -PORTVERSION= 20140814 +PORTVERSION= 20150606 CATEGORIES= deskutils MASTER_SITES= http://acme.com/software/countdown/ -DISTNAME= ${PORTNAME}_14Aug2014 +DISTNAME= ${PORTNAME}_06jun2015 MAINTAINER= neel@neelc.org COMMENT= Counts down a specified time interval, beeps, then exits LICENSE= BSD2CLAUSE WRKSRC= ${WRKDIR}/${PORTNAME} PLIST_FILES= bin/countdown man/man1/countdown.1.gz MAKEFILE= /dev/null ALL_TARGET= ${PORTNAME} do-install: ${INSTALL_PROGRAM} ${WRKSRC}/countdown ${STAGEDIR}${PREFIX}/bin ${INSTALL_MAN} ${WRKSRC}/countdown.1 ${STAGEDIR}${MAN1PREFIX}/man/man1/countdown.1 .include Index: head/deskutils/countdown/distinfo =================================================================== --- head/deskutils/countdown/distinfo (revision 418340) +++ head/deskutils/countdown/distinfo (revision 418341) @@ -1,2 +1,3 @@ -SHA256 (countdown_14Aug2014.tar.gz) = 2815b38bca4411faaf3ec73412efd9b7e92d3fdf0e727e863d00db785ea60f3b -SIZE (countdown_14Aug2014.tar.gz) = 2215 +TIMESTAMP = 1467714617 +SHA256 (countdown_06jun2015.tar.gz) = cbc6e5d9738d76b90ffd4224f5ec6ee75affe6df0fe2b9635b9d145435ed74c2 +SIZE (countdown_06jun2015.tar.gz) = 3135 Index: head/deskutils/countdown/files/patch-Makefile =================================================================== --- head/deskutils/countdown/files/patch-Makefile (revision 418340) +++ head/deskutils/countdown/files/patch-Makefile (revision 418341) @@ -1,23 +1,23 @@ ---- Makefile.orig 2014-08-11 15:16:15.000000000 -0400 -+++ Makefile 2014-09-29 11:58:53.471412866 -0400 +--- Makefile.orig 2014-08-11 19:16:15 UTC ++++ Makefile @@ -1,15 +1,14 @@ # Makefile for countdown -BINDIR = /usr/local/bin -MANDIR = /usr/local/man/man1 -CC = cc -CFLAGS = -O -ansi -pedantic -U__STRICT_ANSI__ -Wall -Wpointer-arith -Wshadow -Wcast-qual -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wno-long-long -LDFLAGS = -s +BINDIR= /usr/local/bin +MANDIR= /usr/local/man/man1 +CC?= cc +CFLAGS+= -ansi -pedantic -U__STRICT_ANSI__ -Wall -Wpointer-arith -Wshadow -Wcast-qual -Wcast-align -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls -Wno-long-long all: countdown countdown: countdown.c - $(CC) $(CFLAGS) countdown.c $(LDFLAGS) -o countdown + $(CC) $(CFLAGS) countdown.c -o countdown install: all