summaryrefslogtreecommitdiff
path: root/misc/gkrellweather
diff options
context:
space:
mode:
Diffstat (limited to 'misc/gkrellweather')
-rw-r--r--misc/gkrellweather/Makefile44
-rw-r--r--misc/gkrellweather/distinfo2
-rw-r--r--misc/gkrellweather/files/patch-Makefile31
-rw-r--r--misc/gkrellweather/files/patch-gkrellweather.c29
-rw-r--r--misc/gkrellweather/pkg-descr20
5 files changed, 0 insertions, 126 deletions
diff --git a/misc/gkrellweather/Makefile b/misc/gkrellweather/Makefile
deleted file mode 100644
index 506682b83275..000000000000
--- a/misc/gkrellweather/Makefile
+++ /dev/null
@@ -1,44 +0,0 @@
-# New ports collection makefile for: gkrellweather
-# Date Created: Thu Jun 28 01:54:57 EDT 2001
-# Whom: Patrick Li <pat@databits.net>
-# With help from: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
-#
-# $FreeBSD$
-#
-
-PORTNAME= gkrellweather
-PORTVERSION= 0.2.7
-PORTREVISION= 2
-CATEGORIES= misc
-MASTER_SITES= http://critical.ch/distfiles/
-
-MAINTAINER= pat@FreeBSD.org
-COMMENT= GKrellWeather is a weather plugin for GKrellM
-
-BROKEN= "dependency GrabWeather does not exist anymore"
-DEPRECATED= ${BROKEN}
-EXPIRATION_DATE= 2005-12-11
-
-BUILD_DEPENDS= ${X11BASE}/include/gkrellm/gkrellm.h:${PORTSDIR}/sysutils/gkrellm
-RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm \
- ${X11BASE}/bin/GrabWeather:${PORTSDIR}/misc/wmweather
-
-NO_LATEST_LINK= yes
-
-USE_X_PREFIX= yes
-USE_GNOME= imlib
-MAKE_ENV= PTHREAD_LIBS="${PTHREAD_LIBS}" \
- PTHREAD_CFLAGS="${PTHREAD_CFLAGS}"
-ALL_TARGET= ${PORTNAME}.so
-
-PKGMESSAGE= ${DESCR}
-PLIST_FILES= libexec/gkrellm/plugins/gkrellweather.so
-
-do-install:
- @${INSTALL_DATA} ${WRKSRC}/${PORTNAME}.so \
- ${PREFIX}/libexec/gkrellm/plugins
-
-post-install:
- @${CAT} ${PKGMESSAGE}
-
-.include <bsd.port.mk>
diff --git a/misc/gkrellweather/distinfo b/misc/gkrellweather/distinfo
deleted file mode 100644
index bb1aaf00ff2c..000000000000
--- a/misc/gkrellweather/distinfo
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 (gkrellweather-0.2.7.tar.gz) = 2e69ff084063bbfba57fdeb42ad628c1
-SIZE (gkrellweather-0.2.7.tar.gz) = 17188
diff --git a/misc/gkrellweather/files/patch-Makefile b/misc/gkrellweather/files/patch-Makefile
deleted file mode 100644
index 4c27c59d2a19..000000000000
--- a/misc/gkrellweather/files/patch-Makefile
+++ /dev/null
@@ -1,31 +0,0 @@
---- Makefile.orig Sat Apr 14 12:49:15 2001
-+++ Makefile Tue Jul 3 01:47:05 2001
-@@ -1,20 +1,20 @@
--GTK_INCLUDE = `gtk-config --cflags`
--GTK_LIB = `gtk-config --libs`
-+GTK_INCLUDE = `$(GTK_CONFIG) --cflags`
-+GTK_LIB = `$(GTK_CONFIG) --libs`
-
--IMLIB_INCLUDE = `imlib-config --cflags-gdk`
--IMLIB_LIB = `imlib-config --libs-gdk`
-+IMLIB_INCLUDE = `$(IMLIB_CONFIG) --cflags-gdk`
-+IMLIB_LIB = `$(IMLIB_CONFIG) --libs-gdk`
-
-
--FLAGS = -O2 -Wall -fPIC $(GTK_INCLUDE) $(IMLIB_INCLUDE)
--LIBS = $(GTK_LIB) $(IMLIB_LIB)
-+FLAGS = -Wall -fPIC $(GTK_INCLUDE) $(IMLIB_INCLUDE) ${PTHREAD_CFLAGS}
-+LIBS = $(GTK_LIB) $(IMLIB_LIB) ${PTHREAD_LIBS}
- LFLAGS = -shared
-
--CC = gcc $(CFLAGS) $(FLAGS)
-+CC += $(CFLAGS) $(FLAGS)
-
- OBJS = gkrellweather.o
-
- gkrellweather.so: $(OBJS)
-- $(CC) $(OBJS) -o gkrellweather.so $(LFLAGS) $(LIBS) -lpthread
-+ $(CC) $(OBJS) -o gkrellweather.so $(LFLAGS) $(LIBS)
-
- clean:
- rm -f *.o core *.so* *.bak *~
diff --git a/misc/gkrellweather/files/patch-gkrellweather.c b/misc/gkrellweather/files/patch-gkrellweather.c
deleted file mode 100644
index 0ca4ad3aafe1..000000000000
--- a/misc/gkrellweather/files/patch-gkrellweather.c
+++ /dev/null
@@ -1,29 +0,0 @@
---- gkrellweather.c.orig Sun May 20 03:04:50 2001
-+++ gkrellweather.c Mon Aug 20 05:21:41 2001
-@@ -243,7 +243,7 @@
- decal_unit2->w;
- decal_temperature->x = (gkrellm_chart_width() - w + 1) / 2 + 1;
- decal_unit1->x = decal_temperature->x + decal_temperature->w - 1;
-- decal_humidity->x = decal_unit1->x + decal_unit1->w + 1;
-+ decal_humidity->x = decal_unit1->x + decal_unit1->w;
- decal_unit2->x = decal_humidity->x + decal_humidity->w - 1;
- break;
- }
-@@ -500,7 +500,7 @@
- ext_unit1.ts = *gkrellm_meter_textstyle(cal_style_id);
- string_extents("C", &ext_unit1);
- ext_humidity.ts = *gkrellm_meter_alt_textstyle(clock_style_id);
-- string_extents("88", &ext_humidity);
-+ string_extents("888", &ext_humidity);
- ext_unit2.ts = *gkrellm_meter_textstyle(cal_style_id);
- string_extents("%", &ext_unit2);
- ext_dew_point.ts = *gkrellm_meter_alt_textstyle(clock_style_id);
-@@ -522,7 +522,7 @@
- &ext_temperature.ts, style, 0, 3, ext_temperature.width + 2);
- decal_unit1 = gkrellm_create_decal_text(panel, "C", &ext_unit1.ts,
- style, 0, 3, ext_unit1.width + 2);
-- decal_humidity = gkrellm_create_decal_text(panel, "88", &ext_humidity.ts,
-+ decal_humidity = gkrellm_create_decal_text(panel, "888", &ext_humidity.ts,
- style, 0, 3, ext_humidity.width + 2);
- decal_unit2 = gkrellm_create_decal_text(panel, "%", &ext_unit2.ts,
- style, 0, 3, ext_unit2.width + 2);
diff --git a/misc/gkrellweather/pkg-descr b/misc/gkrellweather/pkg-descr
deleted file mode 100644
index c873f48f3269..000000000000
--- a/misc/gkrellweather/pkg-descr
+++ /dev/null
@@ -1,20 +0,0 @@
-GKrellM plugin which shows weather info from the US National Weather
-Service
-
-Features
-- Choose the location nearest to you by 4-letter METAR station
- identifier code. (http://www.nws.noaa.gov/oso/siteloc.shtml)
-- Monitor temperature, dew point, pressure, relative humidity, sky
- condition, wind direction and speed
-- Display using imperial units (degrees Fareheight, inches of
- Mercury, miles per hour)
-- Display using metric units (degrees Celsius, millimeters of
- Mercury, kilometers per hour)
-- Display pressure in kPa, hPa and mmHg
-- Display wind speeds in kmph, mps and beaufort scale
-
-WWW: http://www.cse.unsw.edu.au/~flam/programs/gkrellweather.html
-Author: Franky Lam <franky@frankylam.com>
-
-- Peter van Heusden <pvh@egenetics.com>
-- Patrick Li <pat@FreeBSD.org>