- Update to version 2.0.8

- Add LICENSE
- Support staging
- Update homepage

PR:		ports/181066
Submitted by:	KATO Tsuguru <tkato432@yahoo.com>
This commit is contained in:
Pawel Pekala 2013-11-02 12:58:52 +00:00
parent 2e282743a2
commit 76c0ae5696
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=332478
6 changed files with 31 additions and 45 deletions

View file

@ -2,36 +2,33 @@
# $FreeBSD$ # $FreeBSD$
PORTNAME= gkrellweather PORTNAME= gkrellweather
PORTVERSION= 2.0.7 PORTVERSION= 2.0.8
PORTREVISION= 9
CATEGORIES= misc geography CATEGORIES= misc geography
MASTER_SITES= http://makovick.googlepages.com/ MASTER_SITES= https://sites.google.com/site/makovick/projects/
EXTRACT_SUFX= .tgz EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org MAINTAINER= ports@FreeBSD.org
COMMENT= GKrellWeather is a weather plugin for GKrellM COMMENT= Weather plugin for GKrellM
LICENSE= GPLv2 # (or later)
BUILD_DEPENDS= ${LOCALBASE}/include/gkrellm2/gkrellm.h:${PORTSDIR}/sysutils/gkrellm2 BUILD_DEPENDS= ${LOCALBASE}/include/gkrellm2/gkrellm.h:${PORTSDIR}/sysutils/gkrellm2
RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm2 RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm2
USES= gmake pkgconfig FETCH_ARGS= -Fpr
USES= gettext gmake pkgconfig
MAKE_ENV= enable_nls=1
ALL_TARGET= gkrellweather.so ALL_TARGET= gkrellweather.so
MAKE_ENV= enable_nls=1 PTHREAD_LIBS=${PTHREAD_LIBS}
NO_STAGE= yes
.include <bsd.port.pre.mk>
# uses C99 builtin lrintf
.if ${ARCH} != "amd64"
EXTRA_PATCHES= ${FILESDIR}/extra-patch-lrintf
.endif
do-install: do-install:
${MKDIR} ${PREFIX}/libexec/gkrellm2/plugins (cd ${WRKSRC} && ${INSTALL_SCRIPT} GrabWeather \
${INSTALL_DATA} ${WRKSRC}/gkrellweather.so ${PREFIX}/libexec/gkrellm2/plugins ${STAGEDIR}${PREFIX}/bin)
${MKDIR} ${PREFIX}/share/locale/ru/ @${MKDIR} ${STAGEDIR}${PREFIX}/libexec/gkrellm2/plugins
${INSTALL_DATA} ${WRKSRC}/po/ru.mo ${PREFIX}/share/locale/ru/LC_MESSAGES/gkrellweather.mo (cd ${WRKSRC} && ${INSTALL_DATA} gkrellweather.so \
${INSTALL_SCRIPT} ${WRKSRC}/GrabWeather ${PREFIX}/bin ${STAGEDIR}${PREFIX}/libexec/gkrellm2/plugins)
@${MKDIR} ${STAGEDIR}${PREFIX}/share/locale/ru
(cd ${WRKSRC}/po && ${INSTALL_DATA} ru.mo \
${STAGEDIR}${PREFIX}/share/locale/ru/LC_MESSAGES/gkrellweather.mo)
.include <bsd.port.post.mk> .include <bsd.port.mk>

View file

@ -1,2 +1,2 @@
SHA256 (gkrellweather-2.0.7.tgz) = ad902acd0ffb8adb1f0d838e57545d1f52a31ae33711b73d28929c2786a740ca SHA256 (gkrellweather-2.0.8.tgz) = 06236ad489151019e71bab4ba63b4b8b06d58c58890caed8b1a28fdd05cde16d
SIZE (gkrellweather-2.0.7.tgz) = 19968 SIZE (gkrellweather-2.0.8.tgz) = 20227

View file

@ -1,11 +0,0 @@
--- gkrellweather.c.orig Wed Mar 2 00:23:34 2005
+++ gkrellweather.c Wed Mar 2 00:28:58 2005
@@ -7,6 +7,8 @@
#include <gkrellm2/gkrellm.h>
#include <math.h>
+#define lrintf(x) (int)rintf(x)
+
#define DEFAULT_STATION_ID "YSSY"
#define STYLE_NAME "weather"

View file

@ -24,7 +24,7 @@
gkrellweather.so: $(OBJS) gkrellweather.so: $(OBJS)
(cd po && ${MAKE} all ) (cd po && ${MAKE} all )
- $(CC) $(OBJS) -DVERSION=\"$(VERSION)\" -o gkrellweather.so $(LFLAGS) $(LIBS) -lpthread - $(CC) $(OBJS) -DVERSION=\"$(VERSION)\" -o gkrellweather.so $(LFLAGS) $(LIBS) -lpthread
+ $(CC) $(OBJS) -DVERSION=\"$(VERSION)\" -o gkrellweather.so $(LFLAGS) $(LIBS) ${PTHREAD_LIBS} + $(CC) $(OBJS) -DVERSION=\"$(VERSION)\" -o gkrellweather.so $(LFLAGS) $(LIBS) -pthread
clean: clean:
(cd po && ${MAKE} clean ) (cd po && ${MAKE} clean )

View file

@ -1,19 +1,19 @@
--- gkrellweather.c.orig Mon Mar 31 13:12:57 2003 --- gkrellweather.c.orig Mon Mar 31 13:12:57 2003
+++ gkrellweather.c Sun Jul 13 14:30:14 2003 +++ gkrellweather.c Sun Jul 13 14:30:14 2003
@@ -983,7 +983,7 @@ @@ -986,7 +986,7 @@
options.windspeed_unit = 1; options.windspeed_unit = 1;
options.pressure_unit = 1; options.pressure_unit = 1;
strcpy(options.station, DEFAULT_STATION_ID); strcpy(options.station, DEFAULT_STATION_ID);
- sprintf(options.command, "/usr/share/gkrellm/GrabWeather %s", options.station); - snprintf(options.command, 512, "/usr/share/gkrellm/GrabWeather %s", options.station);
+ sprintf(options.command, "GrabWeather %s", options.station); + snprintf(options.command, 512, "GrabWeather %s", options.station);
sprintf(options.filename, "%s/.wmWeatherReports/%s.dat", options.command[511] = 0;
getenv("HOME"), options.station); snprintf(options.filename, 512, "%s/.wmWeatherReports/%s.dat",
} getenv("HOME"), options.station);
@@ -993,6 +993,7 @@ @@ -998,6 +998,7 @@
gkrellm_init_plugin(void) gkrellm_init_plugin(void)
{ {
#ifdef ENABLE_NLS #ifdef ENABLE_NLS
+ bindtextdomain(PACKAGE, LOCALEDIR); + bindtextdomain(PACKAGE, LOCALEDIR);
bind_textdomain_codeset(PACKAGE, "UTF-8"); bind_textdomain_codeset(PACKAGE, "UTF-8");
#endif /* ENABLE_NLS */ #endif /* ENABLE_NLS */
style_id = gkrellm_add_meter_style(&air_mon, STYLE_NAME); style_id = gkrellm_add_meter_style(&air_mon, STYLE_NAME);

View file

@ -11,6 +11,6 @@ Features
- Display using metric units (degrees Celsius, millimeters of - Display using metric units (degrees Celsius, millimeters of
Mercury, kilometers per hour) Mercury, kilometers per hour)
- Display pressure in kPa, hPa and mmHg - Display pressure in kPa, hPa and mmHg
- Display wind speeds in kmph, mps and beaufort scale - Display wind speeds in kmph, mps and Beaufort scale
WWW: http://makovick.googlepages.com/gkrellmplugins WWW: https://sites.google.com/site/makovick/gkrellm-plugins