From owner-svn-ports-head@freebsd.org Sat Oct 28 12:17:50 2017 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 F0C73E42185; Sat, 28 Oct 2017 12:17:50 +0000 (UTC) (envelope-from swills@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 BD6C76DDFA; Sat, 28 Oct 2017 12:17:50 +0000 (UTC) (envelope-from swills@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9SCHnEZ041405; Sat, 28 Oct 2017 12:17:49 GMT (envelope-from swills@FreeBSD.org) Received: (from swills@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9SCHnER041401; Sat, 28 Oct 2017 12:17:49 GMT (envelope-from swills@FreeBSD.org) Message-Id: <201710281217.v9SCHnER041401@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: swills set sender to swills@FreeBSD.org using -f From: Steve Wills Date: Sat, 28 Oct 2017 12:17:49 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r453057 - in head/astro: . sunwait X-SVN-Group: ports-head X-SVN-Commit-Author: swills X-SVN-Commit-Paths: in head/astro: . sunwait X-SVN-Commit-Revision: 453057 X-SVN-Commit-Repository: ports 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: Sat, 28 Oct 2017 12:17:51 -0000 Author: swills Date: Sat Oct 28 12:17:49 2017 New Revision: 453057 URL: https://svnweb.freebsd.org/changeset/ports/453057 Log: astro/sunwait: create port Sunwait is a small C program for calculating sunrise and sunset, as well as civil, nautical, and astronomical twilights. It has features that make it useful for home automation tasks. WWW: http://www.risacher.org/sunwait/ Added: head/astro/sunwait/ head/astro/sunwait/Makefile (contents, props changed) head/astro/sunwait/distinfo (contents, props changed) head/astro/sunwait/pkg-descr (contents, props changed) Modified: head/astro/Makefile Modified: head/astro/Makefile ============================================================================== --- head/astro/Makefile Sat Oct 28 11:25:50 2017 (r453056) +++ head/astro/Makefile Sat Oct 28 12:17:49 2017 (r453057) @@ -105,6 +105,7 @@ SUBDIR += stellarium SUBDIR += stellarium-qt4 SUBDIR += sunclock + SUBDIR += sunwait SUBDIR += swe SUBDIR += tclgeomap SUBDIR += tkgeomap Added: head/astro/sunwait/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/sunwait/Makefile Sat Oct 28 12:17:49 2017 (r453057) @@ -0,0 +1,20 @@ +# $FreeBSD$ + +PORTNAME= sunwait +PORTVERSION= 20041208 +CATEGORIES= astro +MASTER_SITES= http://www.risacher.org/sunwait/ + +MAINTAINER= swills@FreeBSD.org +COMMENT= Calculate sunrise and sunset + +LICENSE= GPLv2 +LICENSE_FILE= ${WRKSRC}/COPYING + +ALL_TARGET= ${PORTNAME} +PLIST_FILES= bin/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include Added: head/astro/sunwait/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/sunwait/distinfo Sat Oct 28 12:17:49 2017 (r453057) @@ -0,0 +1,3 @@ +TIMESTAMP = 1509192521 +SHA256 (sunwait-20041208.tar.gz) = 46ecd64142e0c7c2decac8df241b78ccae0d1b323929fb4d61aa1acc16a9ff96 +SIZE (sunwait-20041208.tar.gz) = 15865 Added: head/astro/sunwait/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/astro/sunwait/pkg-descr Sat Oct 28 12:17:49 2017 (r453057) @@ -0,0 +1,5 @@ +Sunwait is a small C program for calculating sunrise and sunset, as well as +civil, nautical, and astronomical twilights. It has features that make it +useful for home automation tasks. + +WWW: http://www.risacher.org/sunwait/