summaryrefslogtreecommitdiff
path: root/net/slurm/Makefile
diff options
context:
space:
mode:
authorcube <cube@pkgsrc.org>2003-10-16 12:54:14 +0000
committercube <cube@pkgsrc.org>2003-10-16 12:54:14 +0000
commit4319e868a2847c75bfb34c20f05914c996510d10 (patch)
tree5ba73f682bfd618d9ae1bca600fbb4d5e48ab292 /net/slurm/Makefile
parent866185ef0e8ca92d67f635351889ffbae8cb958c (diff)
downloadpkgsrc-4319e868a2847c75bfb34c20f05914c996510d10.tar.gz
Update to 0.3.1. Closes PR pkg/23084.
Changes for 0.3.1: * fix 32Bit signed/unsigned bug * improve Linux /proc/net/dev parsing * disable LED (set -DWITH_LED to enable them) * make slurm Gbit-safe (tests with >100MByte/s will be done soon :)) * make -Wall happy on all systems * calculate traffic correctly when using -d option * add Mac OS X support (thanks Jan-Eric Kolbe for providing access!) * print usage information if no interface was given at startup Changes for 0.3.0: * did some profiling and lowered cpu usage of sleep stuff * misc small fixes and documentation updates Changes for 0.3.0-pre1: * theme support * misc small typo fixes and internal changes Changes for 0.2.3: * Solaris interface speed detection code * fix visual overflows in the display when running for long time * prevent the missing 'E' from being overwritten Changes for 0.2.2: * Solaris auto* support * -z option to virtualy reset displayed counters * fix padding problems which lead to speeds like 123.45KB/s/s/s/s
Diffstat (limited to 'net/slurm/Makefile')
-rw-r--r--net/slurm/Makefile15
1 files changed, 10 insertions, 5 deletions
diff --git a/net/slurm/Makefile b/net/slurm/Makefile
index 54bf529a006..78794b5181e 100644
--- a/net/slurm/Makefile
+++ b/net/slurm/Makefile
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.4 2003/09/28 09:13:58 jlam Exp $
+# $NetBSD: Makefile,v 1.5 2003/10/16 12:54:14 cube Exp $
#
-DISTNAME= slurm-0.2.1
-PKGREVISION= 1
+DISTNAME= slurm-0.3.1
CATEGORIES= net
MASTER_SITES= http://www.raisdorf.net/files/code/
@@ -11,13 +10,19 @@ HOMEPAGE= http://www.raisdorf.net/projects/slurm/
COMMENT= Realtime traffic statistics
USE_BUILDLINK2= YES
-NO_CONFIGURE= YES
+GNU_CONFIGURE= YES
-USE_NCURSES= # use_default_colors
+post-patch:
+ ${SED} -e s,@PREFIX@,${PREFIX}, ${WRKSRC}/theme.c > ${WRKSRC}/theme.c.sed
+ ${MV} ${WRKSRC}/theme.c.sed ${WRKSRC}/theme.c
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/slurm ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/slurm.1 ${PREFIX}/man/man1
+ ${INSTALL_DATA_DIR} ${PREFIX}/share/slurm
+ for theme in blue cyan foo; do \
+ ${INSTALL_DATA} ${WRKSRC}/themes/$${theme}.theme ${PREFIX}/share/slurm ; \
+ done
.include "../../devel/ncurses/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"