Index: head/net/gkrellmmultiping2/pkg-plist =================================================================== --- head/net/gkrellmmultiping2/pkg-plist (revision 126037) +++ head/net/gkrellmmultiping2/pkg-plist (nonexistent) @@ -1,2 +0,0 @@ -libexec/gkrellm2/plugins/multiping.so -libexec/gkrellm2/plugins/pinger Property changes on: head/net/gkrellmmultiping2/pkg-plist ___________________________________________________________________ Deleted: cvs2svn:cvs-rev ## -1 +0,0 ## -1.1 \ No newline at end of property Deleted: fbsd:nokeywords ## -1 +0,0 ## -yes \ No newline at end of property Index: head/net/gkrellmmultiping2/Makefile =================================================================== --- head/net/gkrellmmultiping2/Makefile (revision 126037) +++ head/net/gkrellmmultiping2/Makefile (revision 126038) @@ -1,40 +1,41 @@ # New ports collection makefile for: gkrellmmultiping2 # Date Created: 24 Nov 2002 # Whom: Jean-Yves Lefort # # $FreeBSD$ # $Id: Makefile,v 1.1.1.1 2002/11/24 23:19:28 jylefort Exp $ # PORTNAME= gkrellmmultiping -PORTVERSION= 2.0.3 -PORTREVISION= 3 +PORTVERSION= 2.0.8 CATEGORIES= net -MASTER_SITES= http://kmlinux.fjfi.cvut.cz/~makovick/gkrellm/ +MASTER_SITES= http://kmlinux.fjfi.cvut.cz/~makovick/gkrellm/ \ + http://depot.fsck.ch/mirror/distfiles/ DISTNAME= gkrellm-multiping-${PORTVERSION} EXTRACT_SUFX= .tgz -MAINTAINER= ports@FreeBSD.org -COMMENT= GKrellM multiping plugin +MAINTAINER= ports@fsck.ch +COMMENT= GKrellM2 multiping plugin BUILD_DEPENDS= ${X11BASE}/include/gkrellm2/gkrellm.h:${PORTSDIR}/sysutils/gkrellm2 RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm2 USE_X_PREFIX= yes USE_REINPLACE= yes +PLIST_FILES= libexec/gkrellm2/plugins/multiping.so libexec/gkrellm2/plugins/pinger MAKE_ENV+= PTHREAD_CFLAGS="${PTHREAD_CFLAGS}" \ PTHREAD_LIBS="${PTHREAD_LIBS}" \ MKDIR="${MKDIR}" \ CHMOD="${CHMOD}" \ INSTALL_PROGRAM="${INSTALL_PROGRAM}" \ INSTALL_DATA="${INSTALL_DATA}" .include post-patch: ${REINPLACE_CMD} -e \ "s,@COMMAND@,${PREFIX}/libexec/gkrellm2/plugins/pinger," \ ${WRKSRC}/multiping.c .include Property changes on: head/net/gkrellmmultiping2/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.5 \ No newline at end of property +1.6 \ No newline at end of property Index: head/net/gkrellmmultiping2/distinfo =================================================================== --- head/net/gkrellmmultiping2/distinfo (revision 126037) +++ head/net/gkrellmmultiping2/distinfo (revision 126038) @@ -1,2 +1,2 @@ -MD5 (gkrellm-multiping-2.0.3.tgz) = ca50628c1a1ebc94274de9b933b39fa6 -SIZE (gkrellm-multiping-2.0.3.tgz) = 13943 +MD5 (gkrellm-multiping-2.0.8.tgz) = ec70ac9e13b1ed041813868a70045941 +SIZE (gkrellm-multiping-2.0.8.tgz) = 14377 Property changes on: head/net/gkrellmmultiping2/distinfo ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.2 \ No newline at end of property +1.3 \ No newline at end of property Index: head/net/gkrellmmultiping2/files/patch-Makefile =================================================================== --- head/net/gkrellmmultiping2/files/patch-Makefile (revision 126037) +++ head/net/gkrellmmultiping2/files/patch-Makefile (revision 126038) @@ -1,32 +1,40 @@ ---- Makefile.orig Sun Nov 24 23:27:11 2002 -+++ Makefile Sun Nov 24 23:34:49 2002 -@@ -1,4 +1,4 @@ +--- Makefile.orig Sat Jan 8 13:41:09 2005 ++++ Makefile Sat Jan 8 13:55:03 2005 +@@ -1,29 +1,29 @@ -INSTALLDIR = /usr/local/lib/gkrellm2/plugins +INSTALLDIR = ${PREFIX}/libexec/gkrellm2/plugins - VERSION = 2.0.1 + VERSION = 2.0.8 PKGNAME = gkrellm-multiping #OPT = -march=athlon -O2 -@@ -8,7 +8,7 @@ + #CC = gcc-3.0 +-CC = gcc ++CC ?= gcc + all: pinger multiping.so pinger: pinger.c - $(CC) `pkg-config glib-2.0 --cflags` $(OPT) -lpthread `pkg-config glib-2.0 --libs` -Wall -o pinger pinger.c -+ ${CC} `pkg-config glib-2.0 --cflags` ${OPT} ${PTHREAD_CFLAGS} ${PTHREAD_LIBS} `pkg-config glib-2.0 --libs` -Wall -o pinger pinger.c ++ $(CC) `pkg-config glib-2.0 --cflags` $(OPT) ${PTHREAD_CFLAGS} ${PTHREAD_LIBS} `pkg-config glib-2.0 --libs` -Wall -o pinger pinger.c multiping.o: multiping.c decal_multiping_status.xpm $(CC) -Wall -fPIC -Wall `pkg-config gtk+-2.0 --cflags` $(OPT) -DVERSION=\"$(VERSION)\" -c multiping.c -@@ -20,10 +20,10 @@ + + multiping.so: multiping.o +- $(CC) -shared -Wl -ggdb `pkg-config gtk+-2.0 --libs`-o multiping.so multiping.o ++ $(CC) -shared -Wl `pkg-config gtk+-2.0 --libs`-o multiping.so multiping.o + + clean: rm -f *.o *.so core install: pinger multiping.so - install -d $(INSTALLDIR) - install -c -s -m 644 multiping.so $(INSTALLDIR) - install -c -s -m 4755 pinger $(INSTALLDIR) - echo "pinger helper is installed suid root" + ${MKDIR} ${INSTALLDIR} + ${INSTALL_DATA} multiping.so ${INSTALLDIR} + ${INSTALL_PROGRAM} pinger ${INSTALLDIR} + ${CHMOD} 4755 ${INSTALLDIR}/pinger dist: rm -rf $(PKGNAME)-$(VERSION) Property changes on: head/net/gkrellmmultiping2/files/patch-Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property Index: head/net/gkrellmmultiping2/pkg-descr =================================================================== --- head/net/gkrellmmultiping2/pkg-descr (revision 126037) +++ head/net/gkrellmmultiping2/pkg-descr (revision 126038) @@ -1,7 +1,4 @@ This plugin pings several machines and shows the current round-trip and status. WWW: http://kmlinux.fjfi.cvut.cz/~makovick/gkrellm/ - -- Jean-Yves Lefort -jylefort@brutele.be Property changes on: head/net/gkrellmmultiping2/pkg-descr ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.1 \ No newline at end of property +1.2 \ No newline at end of property