Add port astro/weatherget:

A command line based weather reporting tool written in python. View
current weather conditions, extended day forecasts, and station id
lookups as reported from weather.com. Customize output via weathergetrc
configuration file. Platform independent.

WWW: http://developer.berlios.de/projects/weatherget/
Author: Tyler Gates <TGates81@gmail.com>
This commit is contained in:
Andrew Pantyukhin 2007-01-31 00:00:24 +00:00
parent 73f1b69767
commit ab4bff65b8
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=183745
4 changed files with 47 additions and 0 deletions

View File

@ -67,6 +67,7 @@
SUBDIR += sunclock
SUBDIR += tclgeomap
SUBDIR += tkgeomap
SUBDIR += weatherget
SUBDIR += weatherspect
SUBDIR += wmglobe
SUBDIR += wmjupiter

36
astro/weatherget/Makefile Normal file
View File

@ -0,0 +1,36 @@
# New ports collection makefile for: weatherget
# Date created: 31 January 2007
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= weatherget
PORTVERSION= 0.3
CATEGORIES= astro
MASTER_SITES= BERLIOS
MAINTAINER= infofarmer@FreeBSD.org
COMMENT= Command-line weather reporting tool
USE_BZIP2= yes
USE_PYTHON= yes
#USE_PYDISTUTILS=yes
NO_BUILD= yes
WRKSRC= ${WRKDIR}/${PORTNAME}
PORTDOCS= AUTHORS CHANGELOG README
PLIST_FILES= bin/${PORTNAME}
MAN1= ${PORTNAME}.1
post-patch:
@${REINPLACE_CMD} -e '/^#!/s|!.*|!${PYTHON_CMD}|' ${WRKSRC}/${PORTNAME}
do-install:
@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin/
@${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MAN1PREFIX}/man/man1/
.ifndef NOPORTDOCS
@${INSTALL} -d ${DOCSDIR}/
@${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${DOCSDIR}/
.endif
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (weatherget-0.3.tar.bz2) = 2296d6dc9eeae92972a37063f0be0305
SHA256 (weatherget-0.3.tar.bz2) = 1444193b9c8cc09779c7b86ed2d2871fbb7dec823ce8f3324179b23c6ec75d3f
SIZE (weatherget-0.3.tar.bz2) = 13363

View File

@ -0,0 +1,7 @@
A command line based weather reporting tool written in python. View
current weather conditions, extended day forecasts, and station id
lookups as reported from weather.com. Customize output via weathergetrc
configuration file. Platform independent.
WWW: http://developer.berlios.de/projects/weatherget/
Author: Tyler Gates <TGates81@gmail.com>