diff options
author | cube <cube@pkgsrc.org> | 2004-03-29 06:47:30 +0000 |
---|---|---|
committer | cube <cube@pkgsrc.org> | 2004-03-29 06:47:30 +0000 |
commit | 511eccffe862c3b1229c9bf261948b9e14dc6bac (patch) | |
tree | 4c153b030b9471daf75d68370896a96f634319d2 /sysutils/gkrellm/Makefile.common | |
parent | 44e183646d508c5cc2f9c8f3552e6ec3d8e6854d (diff) | |
download | pkgsrc-511eccffe862c3b1229c9bf261948b9e14dc6bac.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/Makefile.common')
-rw-r--r-- | sysutils/gkrellm/Makefile.common | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sysutils/gkrellm/Makefile.common b/sysutils/gkrellm/Makefile.common index dd99f45b61a..3f014eac67c 100644 --- a/sysutils/gkrellm/Makefile.common +++ b/sysutils/gkrellm/Makefile.common @@ -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} |