1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-27 10:03:20 +00:00

Update to 0.4.

PR:		ports/25753
Submitted by:	maintainer (Tobias Reifenberger <treif@mayn.de>)
This commit is contained in:
Hajimu UMEMOTO 2001-03-13 09:21:10 +00:00
parent bc924e455e
commit 3c9f2b791a
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=39724
4 changed files with 5 additions and 25 deletions

View File

@ -6,7 +6,7 @@
#
PORTNAME= gkrellmmailwatch
PORTVERSION= 0.2
PORTVERSION= 0.4
CATEGORIES= mail
MASTER_SITES= http://gkrellm.luon.net/files/
DISTNAME= mailwatch-${PORTVERSION}
@ -16,8 +16,6 @@ MAINTAINER= treif@mayn.de
BUILD_DEPENDS= ${X11BASE}/include/gkrellm/gkrellm.h:${PORTSDIR}/sysutils/gkrellm
RUN_DEPENDS= gkrellm:${PORTSDIR}/sysutils/gkrellm
WRKSRC= ${WRKDIR}/mailwatch
USE_X_PREFIX= yes
USE_IMLIB= yes

View File

@ -1 +1 @@
MD5 (mailwatch-0.2.tar.gz) = bec6b0b305c27e7ee10e6f9bda416c59
MD5 (mailwatch-0.4.tar.gz) = b43dd6c887f993b460e77f6c02420944

View File

@ -1,5 +1,5 @@
--- Makefile.orig Tue Sep 5 16:30:33 2000
+++ Makefile Tue Sep 5 16:26:44 2000
--- Makefile.orig Mon Sep 18 21:40:13 2000
+++ Makefile Tue Mar 13 00:18:02 2001
@@ -1,32 +1,30 @@
# Makefile for the GKrellM mailwatch plugin
@ -21,7 +21,7 @@
LIBS = $(GTK_LIB) $(IMLIB_LIB)
-LFLAGS = -shared -lpthread
-
-CC = gcc -g $(CFLAGS) $(FLAGS)
-CC = gcc $(CFLAGS) $(FLAGS)
+LFLAGS = -shared -pthread
OBJS = mailwatch.o

View File

@ -1,18 +0,0 @@
--- mailwatch.c.orig Wed Aug 23 02:09:36 2000
+++ mailwatch.c Wed Aug 23 02:12:48 2000
@@ -403,13 +403,14 @@
}
else {
for (i=ctabs; i ; i = i->next)
- if (i->is_modified != DELETED)
+ if (i->is_modified != DELETED) {
if (!strcmp(i->name,buf[0]) && i->is_modified != DELETED) {
gkrellm_message_window("Gkrellm mailwatch Error",
"a mailpanel with that name already exits",NULL);
return;
}
else pos++;
+ }
new = create_configtab(ctabs->tabs,buf[0],256,pos);
new->is_modified = NEW;