Update to 2.1.28.

pkgsrc changes:
  o provide GKRELLM_DEBUG to easily build a debug version (should help with
    the spinning gkrellm issue)
  o don't strip binaries in debug mode
  o small gkrellm Makefiles fixes

GKrellM changes (from Changelog):
  o Stephan Kapfinger <s.kapfinger--at--gmx.de> mail.c patch fixes bug
    I introduced into the last release where parsing of the mail reader
    command could fail.
This commit is contained in:
cube 2004-03-29 06:47:30 +00:00
parent 44e183646d
commit 511eccffe8
5 changed files with 19 additions and 10 deletions

View file

@ -1,7 +1,7 @@
# $NetBSD: Makefile,v 1.32 2004/03/26 02:27:54 wiz Exp $
# $NetBSD: Makefile,v 1.33 2004/03/29 06:47:30 cube Exp $
.include "Makefile.common"
PKGREVISION= 2
PKGREVISION= # defined
GKRELLM_PKGBASE= gkrellm
WRKSRC= ${GKRELLM_SRCDIR}

View file

@ -1,4 +1,4 @@
# $NetBSD: Makefile.common,v 1.3 2004/02/28 23:04:43 cube Exp $
# $NetBSD: Makefile.common,v 1.4 2004/03/29 06:47:30 cube Exp $
DISTNAME= ${GKRELLM_DISTBASE}
PKGNAME= ${GKRELLM_PKGBASE}-${GKRELLM_VERSION}
@ -16,7 +16,11 @@ USE_PKGLOCALEDIR= YES
MAKE_ENV+= LOCALEDIR=${PREFIX}/${PKGLOCALEDIR}/locale
GKRELLM_VERSION= 2.1.27
.if defined(GKRELLM_DEBUG)
MAKE_ENV+= DEBUG=yes
.endif
GKRELLM_VERSION= 2.1.28
GKRELLM_DISTBASE= gkrellm-${GKRELLM_VERSION}
GKRELLM_SRCDIR= ${WRKDIR}/${GKRELLM_DISTBASE}

View file

@ -1,4 +1,4 @@
$NetBSD: distinfo,v 1.18 2004/02/28 23:04:43 cube Exp $
$NetBSD: distinfo,v 1.19 2004/03/29 06:47:30 cube Exp $
SHA1 (gkrellm-2.1.27.tar.bz2) = cfffcb9d3045253174d87e4bf99981694a8b3a12
Size (gkrellm-2.1.27.tar.bz2) = 633394 bytes
SHA1 (gkrellm-2.1.28.tar.bz2) = 3c02b156b1218ba6d164ec652b4dec47f33f88b4
Size (gkrellm-2.1.28.tar.bz2) = 633487 bytes

View file

@ -13,7 +13,7 @@ CFLAGS?= -O2
FLAGS = -I.. $(PKG_INCLUDE) $(GTOP_INCLUDE)
FLAGS+= $(PTHREAD_INC)
ifeq ($(debug),yes)
ifeq ($(DEBUG),yes)
FLAGS += -g
endif
@ -74,7 +74,7 @@ install: gkrellm
$(INSTALL_DIR) $(INSTALLDIR)
$(INSTALL_DIR) $(INCLUDEDIR)/gkrellm2
$(INSTALL_DIR) $(MANDIR)
$(INSTALL_BIN) gkrellm $(INSTALLDIR)/$(PACKAGE)
$(INSTALL_BIN) $(STRIP) gkrellm $(INSTALLDIR)/$(PACKAGE)
$(INSTALL_DATA) $(GKRELLM_INCLUDES) $(INCLUDEDIR)/gkrellm2
$(INSTALL_DATA) ../gkrellm.1 $(MANDIR)/$(PACKAGE).1

View file

@ -1,4 +1,4 @@
VERSION= 2.1.27
VERSION= 2.1.28
# Path options
PREFIX?= /usr/local
@ -59,6 +59,11 @@ ifeq ($(profile),yes)
PROFILE= yes
endif
# Don't strip binaries if in DEBUG mode
ifeq ($(DEBUG),yes)
STRIP=
endif
ifeq ($(GTOP),)
# OS-specific overrides
SUPPORTED_OSES= Linux NetBSD FreeBSD OpenBSD Darwin Solaris