ports/91513: [MAINTAINER] net/gkrellmmultiping2: update to 2.0.11
Tobias Roth
ports at fsck.ch
Sun Jan 8 15:10:11 UTC 2006
>Number: 91513
>Category: ports
>Synopsis: [MAINTAINER] net/gkrellmmultiping2: update to 2.0.11
>Confidential: no
>Severity: non-critical
>Priority: low
>Responsible: freebsd-ports-bugs
>State: open
>Quarter:
>Keywords:
>Date-Required:
>Class: maintainer-update
>Submitter-Id: current-users
>Arrival-Date: Sun Jan 08 15:10:07 GMT 2006
>Closed-Date:
>Last-Modified:
>Originator: Tobias Roth
>Release: FreeBSD 6.0-STABLE i386
>Organization:
>Environment:
System: FreeBSD factory.fsck.ch 6.0-STABLE FreeBSD 6.0-STABLE #1: Mon Jan 2 15:47:13 CET
>Description:
- Update to 2.0.11
- No files added or removed
ATTENTION: I also changed the category from net to net-mgmt
Generated with FreeBSD Port Tools 0.63
>How-To-Repeat:
>Fix:
--- gkrellmmultiping-2.0.11.patch begins here ---
Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/net/gkrellmmultiping2/Makefile,v
retrieving revision 1.9
diff -u -r1.9 Makefile
--- Makefile 5 Nov 2005 05:19:14 -0000 1.9
+++ Makefile 6 Jan 2006 23:58:01 -0000
@@ -6,9 +6,8 @@
#
PORTNAME= gkrellmmultiping
-PORTVERSION= 2.0.10
-PORTREVISION= 1
-CATEGORIES= net
+PORTVERSION= 2.0.11
+CATEGORIES= net-mgmt
MASTER_SITES= http://kmlinux.fjfi.cvut.cz/~makovick/gkrellm/ \
http://depot.fsck.ch/mirror/distfiles/
DISTNAME= gkrellm-multiping-${PORTVERSION}
@@ -21,6 +20,7 @@
RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm2
USE_X_PREFIX= yes
+USE_GMAKE= yes
PLIST_FILES= libexec/gkrellm2/plugins/multiping.so libexec/gkrellm2/plugins/pinger
MAKE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \
Index: distinfo
===================================================================
RCS file: /home/ncvs/ports/net/gkrellmmultiping2/distinfo,v
retrieving revision 1.4
diff -u -r1.4 distinfo
--- distinfo 26 Jul 2005 12:24:15 -0000 1.4
+++ distinfo 6 Jan 2006 23:58:01 -0000
@@ -1,2 +1,3 @@
-MD5 (gkrellm-multiping-2.0.10.tgz) = e6f83bc7d91c04792ff967ae56381c75
-SIZE (gkrellm-multiping-2.0.10.tgz) = 15038
+MD5 (gkrellm-multiping-2.0.11.tgz) = e9c31f1a829d8c16c43eb921c430ab77
+SHA256 (gkrellm-multiping-2.0.11.tgz) = 5dd57a4b65397b6aa3d4b56a3ad384be7f5329f12baec9f9d6e0413dee52e581
+SIZE (gkrellm-multiping-2.0.11.tgz) = 16427
Index: pkg-descr
===================================================================
RCS file: /home/ncvs/ports/net/gkrellmmultiping2/pkg-descr,v
retrieving revision 1.2
diff -u -r1.2 pkg-descr
--- pkg-descr 10 Jan 2005 10:44:02 -0000 1.2
+++ pkg-descr 6 Jan 2006 23:58:01 -0000
@@ -1,4 +1,5 @@
This plugin pings several machines and shows the current
round-trip and status.
+Author: Jindrich Makovicka
WWW: http://kmlinux.fjfi.cvut.cz/~makovick/gkrellm/
Index: files/patch-Makefile
===================================================================
RCS file: /home/ncvs/ports/net/gkrellmmultiping2/files/patch-Makefile,v
retrieving revision 1.3
diff -u -r1.3 patch-Makefile
--- files/patch-Makefile 26 Jul 2005 12:24:15 -0000 1.3
+++ files/patch-Makefile 6 Jan 2006 23:58:01 -0000
@@ -1,13 +1,25 @@
---- Makefile.orig Fri Mar 25 12:34:41 2005
-+++ Makefile Tue Jul 26 08:25:26 2005
-@@ -1,28 +1,28 @@
--INSTALLDIR = /usr/local/lib/gkrellm2/plugins
-+INSTALLDIR = ${PREFIX}/libexec/gkrellm2/plugins
- VERSION = 2.0.10
+--- Makefile.orig Sat Dec 17 15:46:48 2005
++++ Makefile Sat Jan 7 00:53:35 2006
+@@ -1,15 +1,11 @@
+ ifeq ($(INSTALLROOT),)
+ INSTALLROOT = /usr/local
+ endif
+-ifeq ($(PLUGINDIR),)
+-PLUGINDIR=$(INSTALLROOT)/lib/gkrellm2/plugins
+-endif
+-ifeq ($(HELPERDIR),)
+-HELPERDIR=$(INSTALLROOT)/lib/gkrellm2/exec
+-endif
++PLUGINDIR=${PREFIX}/libexec/gkrellm2/plugins
++HELPERDIR=$(PLUGINDIR)
+ VERSION = 2.0.11
PKGNAME = gkrellm-multiping
-CC = gcc
+CC ?= gcc
+ DISTFILES = \
+ AUTHORS Makefile multiping.c pinger.c decal_multiping_status.xpm \
+@@ -22,24 +18,23 @@
all: pinger multiping.so
pinger: pinger.c
@@ -16,8 +28,8 @@
multiping.o: multiping.c decal_multiping_status.xpm
- $(CC) -Wall -fPIC -Wall `pkg-config gtk+-2.0 --cflags` $(OPT) \
-+ $(CC) $(CFLAGS) -Wall -fPIC -Wall `pkg-config gtk+-2.0 --cflags` $(OPT) \
- -DINSTALLDIR=\"$(INSTALLDIR)\" -DVERSION=\"$(VERSION)\" -c multiping.c
++ $(CC) $(CFLAGS) -fPIC -Wall `pkg-config gtk+-2.0 --cflags` $(OPT) \
+ -DHELPERDIR=\"$(HELPERDIR)\" -DVERSION=\"$(VERSION)\" -c multiping.c
multiping.so: multiping.o
- $(CC) -shared -Wl -ggdb `pkg-config gtk+-2.0 --libs`-o multiping.so multiping.o
@@ -27,14 +39,15 @@
rm -f *.o *.so pinger core
install: pinger multiping.so
-- install -d $(INSTALLDIR)
-- install -c -s -m 644 multiping.so $(INSTALLDIR)
-- install -c -s -m 4755 pinger $(INSTALLDIR)
+- install -d $(PLUGINDIR)
+- install -d $(HELPERDIR)
+- install -c -s -m 644 multiping.so $(PLUGINDIR)
+- install -c -s -m 4755 pinger $(HELPERDIR)
- echo "pinger helper is installed suid root"
-+ ${MKDIR} ${INSTALLDIR}
-+ ${INSTALL_DATA} multiping.so ${INSTALLDIR}
-+ ${INSTALL_PROGRAM} pinger ${INSTALLDIR}
-+ ${CHMOD} 4755 ${INSTALLDIR}/pinger
++ ${MKDIR} ${PLUGINDIR}
++ ${INSTALL_DATA} multiping.so ${PLUGINDIR}
++ ${INSTALL_PROGRAM} pinger ${PLUGINDIR}
++ ${CHMOD} 4755 ${PLUGINDIR}/pinger
dist:
- rm -rf $(PKGNAME)-$(VERSION)
+ rm -rf $(DISTDIR)
--- gkrellmmultiping-2.0.11.patch ends here ---
>Release-Note:
>Audit-Trail:
>Unformatted:
More information about the freebsd-ports-bugs
mailing list