Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Dec 2014 13:57:54 +0000 (UTC)
From:      Rodrigo Osorio <rodrigo@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r375622 - in head/deskutils: . countdown countdown/files
Message-ID:  <201412261357.sBQDvsbG018908@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: rodrigo
Date: Fri Dec 26 13:57:53 2014
New Revision: 375622
URL: https://svnweb.freebsd.org/changeset/ports/375622
QAT: https://qat.redports.org/buildarchive/r375622/

Log:
  Add new port : countdown, who counts down a specific delay, beep,
  and exit.
  
  PR:		ports/193978
  Submitted by:	neel@neelc.org

Added:
  head/deskutils/countdown/
  head/deskutils/countdown/Makefile   (contents, props changed)
  head/deskutils/countdown/distinfo   (contents, props changed)
  head/deskutils/countdown/files/
  head/deskutils/countdown/files/patch-Makefile   (contents, props changed)
  head/deskutils/countdown/pkg-descr   (contents, props changed)
Modified:
  head/deskutils/Makefile

Modified: head/deskutils/Makefile
==============================================================================
--- head/deskutils/Makefile	Fri Dec 26 12:43:44 2014	(r375621)
+++ head/deskutils/Makefile	Fri Dec 26 13:57:53 2014	(r375622)
@@ -29,6 +29,7 @@
     SUBDIR += conduit
     SUBDIR += conkyemail
     SUBDIR += conkyforecast
+    SUBDIR += countdown
     SUBDIR += cycle
     SUBDIR += dailystrips
     SUBDIR += deforaos-todo

Added: head/deskutils/countdown/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/countdown/Makefile	Fri Dec 26 13:57:53 2014	(r375622)
@@ -0,0 +1,24 @@
+# $FreeBSD$
+
+PORTNAME=	countdown
+PORTVERSION=	20140814
+CATEGORIES=	deskutils
+MASTER_SITES=	http://acme.com/software/countdown/
+DISTNAME=	${PORTNAME}_14Aug2014
+
+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 <bsd.port.mk>

Added: head/deskutils/countdown/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/countdown/distinfo	Fri Dec 26 13:57:53 2014	(r375622)
@@ -0,0 +1,2 @@
+SHA256 (countdown_14Aug2014.tar.gz) = 2815b38bca4411faaf3ec73412efd9b7e92d3fdf0e727e863d00db785ea60f3b
+SIZE (countdown_14Aug2014.tar.gz) = 2215

Added: head/deskutils/countdown/files/patch-Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/countdown/files/patch-Makefile	Fri Dec 26 13:57:53 2014	(r375622)
@@ -0,0 +1,23 @@
+--- Makefile.orig	2014-08-11 15:16:15.000000000 -0400
++++ Makefile	2014-09-29 11:58:53.471412866 -0400
+@@ -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

Added: head/deskutils/countdown/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/deskutils/countdown/pkg-descr	Fri Dec 26 13:57:53 2014	(r375622)
@@ -0,0 +1,3 @@
+This program counts down a specified time interval, then beeps and exits.
+
+WWW: http://www.acme.com/software/countdown/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201412261357.sBQDvsbG018908>