bedc094a6b
libstatgrab is a library that provides cross platform access to statistics about the system on which it's run. It's written in C and presents a selection of useful interfaces which can be used to access key system statistics. The current list of statistics includes CPU usage, memory utilisation, disk usage, process counts, network traffic, disk I/O, and more. from William Yodlowsky (MAINTAINER) with tweaks by me
33 lines
721 B
Makefile
33 lines
721 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2007/07/17 23:45:43 simon Exp $
|
|
|
|
COMMENT= system statistics gathering library
|
|
|
|
DISTNAME= libstatgrab-0.15
|
|
CATEGORIES= sysutils
|
|
|
|
HOMEPAGE= http://www.i-scream.org/libstatgrab/
|
|
|
|
MAINTAINER= William Yodlowsky <bsd@openbsd.rutgers.edu>
|
|
|
|
SHARED_LIBS= statgrab 0.0
|
|
|
|
# LGPL/GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= c ncurses
|
|
|
|
MASTER_SITES= ftp://ftp.i-scream.org/pub/i-scream/libstatgrab/ \
|
|
ftp://ftp.uk.i-scream.org/pub/i-scream/libstatgrab/
|
|
|
|
USE_LIBTOOL= Yes
|
|
NO_REGRESS= Yes
|
|
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS+=--disable-setgid-binaries \
|
|
--disable-setuid-binaries \
|
|
--disable-deprecated
|
|
|
|
.include <bsd.port.mk>
|