Update to 1.0.7; from maintainer Joshua Stein <jcs@rt.fm>.
Changes: - Updated ja.po. - Add man page. - POP3/IMAP connections can be on non-standard port numbers if you enter server:port instead of just the server in the config. - IMAP checking could not handle untagged responses to LOGIN. - Meminfo label initialization and mua_is_launched fixes.
This commit is contained in:
parent
8d81b5d1d9
commit
db5d4e0164
@ -1,6 +1,6 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2001/02/15 21:37:41 naddy Exp $
|
||||
# $OpenBSD: Makefile,v 1.2 2001/03/17 18:25:42 naddy Exp $
|
||||
|
||||
DISTNAME= gkrellm-1.0.6
|
||||
DISTNAME= gkrellm-1.0.7
|
||||
HOMEPAGE= http://web.wt.net/~billw/gkrellm/gkrellm.html
|
||||
|
||||
CATEGORIES= sysutils
|
||||
|
@ -1,3 +1,3 @@
|
||||
MD5 (gkrellm-1.0.6.tar.gz) = f937ba51f0d661f8994d5c2440db9065
|
||||
RMD160 (gkrellm-1.0.6.tar.gz) = 22f5756a3a71c781d81889779fdb9896ecee0727
|
||||
SHA1 (gkrellm-1.0.6.tar.gz) = d303ef3da749137efdaffaa1547cff41ce4e0ff9
|
||||
MD5 (gkrellm-1.0.7.tar.gz) = a72acffc0c110522cf4d39a01b53e7b7
|
||||
RMD160 (gkrellm-1.0.7.tar.gz) = e629bc1f1be586531084b61345fe4ce874c1e4b1
|
||||
SHA1 (gkrellm-1.0.7.tar.gz) = 467d99fc88c6ffa9e380df06effe5755ed048c07
|
||||
|
@ -1,13 +1,17 @@
|
||||
$OpenBSD: patch-Makefile_top,v 1.1.1.1 2001/02/15 21:37:42 naddy Exp $
|
||||
--- Makefile.top.orig Sat Jan 6 17:08:34 2001
|
||||
+++ Makefile.top Thu Feb 15 18:56:45 2001
|
||||
@@ -65,18 +65,18 @@ GTOP_INCLUDE = -I$(GTOP_PREFIX)/include
|
||||
$OpenBSD: patch-Makefile_top,v 1.2 2001/03/17 18:25:44 naddy Exp $
|
||||
--- Makefile.top.orig Wed Mar 14 13:43:13 2001
|
||||
+++ Makefile.top Sat Mar 17 18:41:24 2001
|
||||
@@ -65,22 +65,22 @@ GTOP_INCLUDE = -I$(GTOP_PREFIX)/include
|
||||
GTOP_LIBS = -L$(GTOP_PREFIX)/lib -lgtop -lgtop_common -lgtop_sysdeps -lXau
|
||||
|
||||
|
||||
-INSTALLDIR=/usr/local/bin
|
||||
-INCLUDEDIR=/usr/local/include
|
||||
-MANDIR=/usr/local/share/man/man1
|
||||
+INSTALLDIR=${PREFIX}/bin
|
||||
+MANDIR=${PREFIX}/man/man1
|
||||
MANMODE = 644
|
||||
MANDIRMODE = 755
|
||||
-INCLUDEDIR=/usr/local/include
|
||||
+INCLUDEDIR=${PREFIX}/include
|
||||
INCLUDEMODE = 644
|
||||
INCLUDEDIRMODE = 755
|
||||
@ -17,6 +21,7 @@ $OpenBSD: patch-Makefile_top,v 1.1.1.1 2001/02/15 21:37:42 naddy Exp $
|
||||
|
||||
export GTK_CONFIG GTOP_INCLUDE GTOP_LIBS SYS_LIBS BINMODE
|
||||
export INSTALLDIR INCLUDEDIR INCLUDEMODE INCLUDEDIRMODE LOCALEDIR
|
||||
export MANDIR MANDIRMODE MANMODE
|
||||
|
||||
-#enable_nls=1
|
||||
-#export enable_nls
|
||||
@ -25,7 +30,7 @@ $OpenBSD: patch-Makefile_top,v 1.1.1.1 2001/02/15 21:37:42 naddy Exp $
|
||||
|
||||
all gkrellm:
|
||||
(cd locale && ${MAKE} all)
|
||||
@@ -116,7 +116,7 @@ netbsd:
|
||||
@@ -120,7 +120,7 @@ netbsd:
|
||||
openbsd:
|
||||
(cd locale && ${MAKE} all)
|
||||
(cd src && ${MAKE} GTK_CONFIG=gtk-config GTOP_LIBS= GTOP_INCLUDE= \
|
||||
|
@ -1,6 +1,6 @@
|
||||
$OpenBSD: patch-locale_Makefile,v 1.1.1.1 2001/02/15 21:37:42 naddy Exp $
|
||||
$OpenBSD: patch-locale_Makefile,v 1.2 2001/03/17 18:25:44 naddy Exp $
|
||||
--- locale/Makefile.orig Sat Jun 17 17:55:04 2000
|
||||
+++ locale/Makefile Thu Feb 15 18:08:13 2001
|
||||
+++ locale/Makefile Sat Mar 17 18:41:24 2001
|
||||
@@ -6,7 +6,7 @@ SUB_DIRS =
|
||||
FILES_PO:=$(wildcard *.po)
|
||||
FILES_MO:=$(FILES_PO:.po=.mo)
|
||||
|
@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-src_Makefile_src,v 1.1.1.1 2001/02/15 21:37:42 naddy Exp $
|
||||
--- src/Makefile.src.orig Sun Jan 14 21:18:32 2001
|
||||
+++ src/Makefile.src Thu Feb 15 18:36:17 2001
|
||||
@@ -1,7 +1,7 @@
|
||||
$OpenBSD: patch-src_Makefile_src,v 1.2 2001/03/17 18:25:45 naddy Exp $
|
||||
--- src/Makefile.src.orig Wed Mar 14 13:43:35 2001
|
||||
+++ src/Makefile.src Sat Mar 17 18:53:56 2001
|
||||
@@ -1,10 +1,10 @@
|
||||
GTK_CONFIG ?= gtk-config
|
||||
BINMODE ?= 755
|
||||
-INSTALLDIR ?= /usr/local/bin
|
||||
@ -10,8 +10,12 @@ $OpenBSD: patch-src_Makefile_src,v 1.1.1.1 2001/02/15 21:37:42 naddy Exp $
|
||||
+INCLUDEDIR ?= ${PREFIX}/include
|
||||
INCLUDEMODE ?= 644
|
||||
INCLUDEDIRMODE ?= 755
|
||||
-MANDIR ?= /usr/local/share/man/man1
|
||||
+MANDIR ?= ${PREFIX}/man/man1
|
||||
MANMODE ?= 644
|
||||
MANDIRMODE ?= 755
|
||||
|
||||
@@ -13,7 +13,7 @@ IMLIB_INCLUDE = `imlib-config --cflags-g
|
||||
@@ -16,7 +16,7 @@ IMLIB_INCLUDE = `imlib-config --cflags-g
|
||||
GTK_LIB = `$(GTK_CONFIG) --libs gthread`
|
||||
IMLIB_LIB = `imlib-config --libs-gdk`
|
||||
|
||||
@ -20,10 +24,11 @@ $OpenBSD: patch-src_Makefile_src,v 1.1.1.1 2001/02/15 21:37:42 naddy Exp $
|
||||
FLAGS+= $(PTHREAD_INC)
|
||||
|
||||
LIBS = $(GTK_LIB) $(IMLIB_LIB) $(GTOP_LIBS) $(SYS_LIBS)
|
||||
@@ -31,7 +31,7 @@ ifeq ($(HAVE_GETADDRINFO),1)
|
||||
@@ -33,8 +33,7 @@ ifeq ($(HAVE_GETADDRINFO),1)
|
||||
FLAGS += -DHAVE_GETADDRINFO
|
||||
endif
|
||||
|
||||
|
||||
-
|
||||
-CC = gcc -Wall $(FLAGS) $(CFLAGS)
|
||||
+CFLAGS += $(FLAGS)
|
||||
|
||||
|
@ -1,13 +0,0 @@
|
||||
$OpenBSD: patch-src_apm_c,v 1.1.1.1 2001/02/15 21:37:42 naddy Exp $
|
||||
--- src/apm.c.orig Fri Jan 19 15:10:38 2001
|
||||
+++ src/apm.c Thu Feb 15 18:08:13 2001
|
||||
@@ -142,9 +142,6 @@ read_netbsd_apm_data()
|
||||
int f, r;
|
||||
struct apm_power_info info;
|
||||
|
||||
- if (!GK.second_tick) /* No need to reap apm more often */
|
||||
- return;
|
||||
-
|
||||
if ((f = open(APMDEV, O_RDONLY)) == -1) return;
|
||||
r = ioctl(f, APM_IOC_GETPOWER, &info);
|
||||
close(f);
|
@ -1,17 +0,0 @@
|
||||
$OpenBSD: patch-src_inet_c,v 1.1.1.1 2001/02/15 21:37:42 naddy Exp $
|
||||
--- src/inet.c.orig Thu Feb 15 19:15:34 2001
|
||||
+++ src/inet.c Thu Feb 15 19:16:15 2001
|
||||
@@ -33,12 +33,12 @@
|
||||
#include "gkrellm_private_proto.h"
|
||||
#include "gkrellm_threads.h"
|
||||
|
||||
-#include <arpa/inet.h>
|
||||
#include <netdb.h>
|
||||
|
||||
#if !defined(__FreeBSD__)
|
||||
#include <netinet/in.h>
|
||||
#endif
|
||||
+#include <arpa/inet.h>
|
||||
|
||||
/* Conditionals for INET6 and u_int32_t from
|
||||
| Hideaki YOSHIFUJI <yoshfuji@ecei.tohoku.ac.jp>
|
@ -1,7 +1,8 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2001/02/15 21:37:42 naddy Exp $
|
||||
@comment $OpenBSD: PLIST,v 1.2 2001/03/17 18:25:47 naddy Exp $
|
||||
bin/gkrellm
|
||||
include/gkrellm/gkrellm.h
|
||||
include/gkrellm/gkrellm_public_proto.h
|
||||
man/man1/gkrellm.1
|
||||
share/locale/de/LC_MESSAGES/gkrellm.mo
|
||||
share/locale/es/LC_MESSAGES/gkrellm.mo
|
||||
share/locale/fr/LC_MESSAGES/gkrellm.mo
|
||||
|
Loading…
Reference in New Issue
Block a user