WMMemFree shows system memory usage. It runs as a dockapp for window manager like WindowMaker or some other which supports dockapps. On the top side you have your physical memory usage and on the bottom there is your swap space usage. Submitted by: Alexey Dokuchaev
32 lines
769 B
Makefile
32 lines
769 B
Makefile
# New ports collection makefile for: wmmemfree
|
|
# Date created: 29 Mar 2003
|
|
# Whom: Alexey Dokuchaev <danfe@regency.nsu.ru>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= wmmemfree
|
|
PORTVERSION= 0.7
|
|
CATEGORIES= sysutils windowmaker
|
|
MASTER_SITES= http://ibiblio.org/pub/linux/X11/xutils/ \
|
|
ftp://ftp.ibiblio.org/pub/linux/X11/xutils/
|
|
|
|
MAINTAINER= danfe@regency.nsu.ru
|
|
COMMENT= Memory and swap monitoring dockapp
|
|
|
|
USE_BZIP2= yes
|
|
USE_X_PREFIX= yes
|
|
USE_XPM= yes
|
|
|
|
MAN1= ${PORTNAME}.1
|
|
|
|
post-patch:
|
|
@${CP} ${FILESDIR}/mem_freebsd.* ${WRKSRC}
|
|
|
|
do-install:
|
|
@${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
@${CHMOD} g+s ${PREFIX}/bin/${PORTNAME}
|
|
@${CHOWN} root:kmem ${PREFIX}/bin/${PORTNAME}
|
|
@${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|