From owner-svn-ports-all@FreeBSD.ORG Sun Sep 2 13:08:59 2012 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61F49106564A; Sun, 2 Sep 2012 13:08:59 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 4B68C8FC15; Sun, 2 Sep 2012 13:08:59 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q82D8x7H006569; Sun, 2 Sep 2012 13:08:59 GMT (envelope-from cs@svn.freebsd.org) Received: (from cs@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q82D8x85006563; Sun, 2 Sep 2012 13:08:59 GMT (envelope-from cs@svn.freebsd.org) Message-Id: <201209021308.q82D8x85006563@svn.freebsd.org> From: Carlo Strub Date: Sun, 2 Sep 2012 13:08:59 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r303547 - in head/sysutils: . tai64nfrac tai64nfrac/files X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.5 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: Sun, 02 Sep 2012 13:08:59 -0000 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 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/