summaryrefslogtreecommitdiff
path: root/sysutils/gkrellm/files
diff options
context:
space:
mode:
authorcube <cube>2004-03-29 06:47:30 +0000
committercube <cube>2004-03-29 06:47:30 +0000
commit37da8ea4e26652627d23d1f96bb98099abedf73a (patch)
tree4c153b030b9471daf75d68370896a96f634319d2 /sysutils/gkrellm/files
parentf34954159db4c96146e9143401bb66a04d317699 (diff)
downloadpkgsrc-37da8ea4e26652627d23d1f96bb98099abedf73a.tar.gz
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.
Diffstat (limited to 'sysutils/gkrellm/files')
-rw-r--r--sysutils/gkrellm/files/src.Makefile4
-rw-r--r--sysutils/gkrellm/files/top.Makefile.inc7
2 files changed, 8 insertions, 3 deletions
diff --git a/sysutils/gkrellm/files/src.Makefile b/sysutils/gkrellm/files/src.Makefile
index 43c754af5f5..2cf8a5822d1 100644
--- a/sysutils/gkrellm/files/src.Makefile
+++ b/sysutils/gkrellm/files/src.Makefile
@@ -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
diff --git a/sysutils/gkrellm/files/top.Makefile.inc b/sysutils/gkrellm/files/top.Makefile.inc
index 087b5374822..0aa5e12e87d 100644
--- a/sysutils/gkrellm/files/top.Makefile.inc
+++ b/sysutils/gkrellm/files/top.Makefile.inc
@@ -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