1cfb9c8af0
-- LibGTop is a library for obtaining information about processes and the system. This includes information about the following areas: * General System Information * SYS V IPC Limits: * Network: * Process List: * Process information: * Process maps: * File system usage: From marcm for gnome2
40 lines
909 B
Makefile
40 lines
909 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/01/31 18:35:57 todd Exp $
|
|
|
|
COMMENT= "portable library for obtaining system information"
|
|
|
|
V= 2.0.0
|
|
DISTNAME= libgtop-${V}
|
|
PKGNAME= libgtop2-${V}
|
|
CATEGORIES= devel
|
|
|
|
HOMEPAGE= http://www.gnome.org
|
|
MAINTAINER= Marc Matteo <marcm@openbsd.org>
|
|
|
|
SYSDEPS= openbsd-libgtop-020830
|
|
DISTFILES= ${DISTNAME}.tar.bz2 \
|
|
${SYSDEPS}.tar.gz:0
|
|
|
|
MASTER_SITES= ${MASTER_SITE_GNOME:=sources/libgtop/2.0/}
|
|
MASTER_SITES0= http://nforced.com/openbsd/distfiles/
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MODULES=
|
|
LIB_DEPENDS=
|
|
|
|
SEPARATE_BUILD= concurrent
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE= autoconf
|
|
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib"
|
|
|
|
post-extract:
|
|
@mv ${WRKDIR}/${SYSDEPS} ${WRKSRC}/sysdeps/openbsd
|
|
|
|
.include <bsd.port.mk>
|