Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 2 Sep 2012 13:08:59 +0000 (UTC)
From:      Carlo Strub <cs@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r303547 - in head/sysutils: . tai64nfrac tai64nfrac/files
Message-ID:  <201209021308.q82D8x85006563@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cs
Date: Sun Sep  2 13:08:58 2012
New Revision: 303547
URL: http://svn.freebsd.org/changeset/ports/303547

Log:
  The TAI64N format is a format for time stamps in log files, invented by Dan
  Bernstein and used by some of his software, most notably the multilog component
  of daemontools. That package comes with a program (tai64nlocal) to convert those
  time stamps to a human-readable date.
  
  WWW: http://www.eyrie.org/~eagle/software/tai64nfrac/
  
  PR:		ports/169891
  Submitted by:	paulo@nlink.com.br

Added:
  head/sysutils/tai64nfrac/
  head/sysutils/tai64nfrac/Makefile   (contents, props changed)
  head/sysutils/tai64nfrac/distinfo   (contents, props changed)
  head/sysutils/tai64nfrac/files/
  head/sysutils/tai64nfrac/files/patch-makefile   (contents, props changed)
  head/sysutils/tai64nfrac/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Sun Sep  2 12:03:45 2012	(r303546)
+++ head/sysutils/Makefile	Sun Sep  2 13:08:58 2012	(r303547)
@@ -902,6 +902,7 @@
     SUBDIR += sysrc
     SUBDIR += system-tools-backends
     SUBDIR += sysupdate
+    SUBDIR += tai64nfrac
     SUBDIR += tarsnap
     SUBDIR += tbku
     SUBDIR += tclsyslog

Added: head/sysutils/tai64nfrac/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/tai64nfrac/Makefile	Sun Sep  2 13:08:58 2012	(r303547)
@@ -0,0 +1,15 @@
+# $FreeBSD$
+
+PORTNAME=	tai64nfrac
+PORTVERSION=	1.4
+CATEGORIES=	sysutils
+MASTER_SITES=	http://archives.eyrie.org/software/system/ \
+		http://linux4u.jinr.ru/pub/OpenAFS/eyrie/software/system/
+
+MAINTAINER=	paulo@nlink.com.br
+COMMENT=	Convert tai64n format invented by Dan Bernstein
+
+MAN1=		tai64nfrac.1
+PLIST_FILES=	bin/tai64nfrac
+
+.include <bsd.port.mk>

Added: head/sysutils/tai64nfrac/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/tai64nfrac/distinfo	Sun Sep  2 13:08:58 2012	(r303547)
@@ -0,0 +1,2 @@
+SHA256 (tai64nfrac-1.4.tar.gz) = 7d42596eb0878a588dae6885640ecaa157c0bec12fda1fa3fb5c1cb99c2b50ad
+SIZE (tai64nfrac-1.4.tar.gz) = 4517

Added: head/sysutils/tai64nfrac/files/patch-makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/tai64nfrac/files/patch-makefile	Sun Sep  2 13:08:58 2012	(r303547)
@@ -0,0 +1,28 @@
+--- Makefile	2003-03-10 03:33:41.000000000 +0100
++++ Makefile.new	2012-09-02 14:58:41.920363626 +0200
+@@ -4,10 +4,9 @@
+ prefix		= /usr/local
+ exec_prefix	= /usr/local
+ bindir		= $(prefix)/bin
+-mandir		= $(prefix)/man
+-man1dir		= $(mandir)/man1
++mandir		= $(prefix)/man/man1
+ 
+-CC		= gcc
++CC		?= gcc
+ CFLAGS		= -g -O
+ LDFLAGS		=
+ LIBS		=
+@@ -25,10 +24,8 @@
+ 	    --section=1 $< > $@
+ 
+ install: tai64nfrac tai64nfrac.1
+-	mkdir -p $(bindir)
+-	cp tai64nfrac $(bindir)
+-	mkdir -p $(man1dir)
+-	cp tai64nfrac.1 $(man1dir)
++	install -c -g 0 -o 0 -m 0555 tai64nfrac $(bindir)
++	install -c -g 0 -o 0 -m 0444 tai64nfrac.1 $(mandir)
+ 
+ clean:
+ 	rm -f *.o tai64nfrac

Added: head/sysutils/tai64nfrac/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/tai64nfrac/pkg-descr	Sun Sep  2 13:08:58 2012	(r303547)
@@ -0,0 +1,6 @@
+The TAI64N format is a format for time stamps in log files, invented by Dan
+Bernstein and used by some of his software, most notably the multilog component
+of daemontools. That package comes with a program (tai64nlocal) to convert those
+time stamps to a human-readable date. 
+
+WWW: http://www.eyrie.org/~eagle/software/tai64nfrac/



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