340b57f8be
- Bump PORTREVISION for all ports depending on libglut since the shlib version number went from 4 to 3. - Bump PORTREVISION for all ports depending on libXaw as libXaw.so.8 isn't installed anymore. - Couple of ports fixes (mostly missing xorg components added to USE_XORG).
33 lines
740 B
Makefile
33 lines
740 B
Makefile
# New ports collection makefile for: glload
|
|
# Date created: 04 Dec 1998
|
|
# Whom: Vanilla I. Shu <vanilla@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= glload
|
|
PORTVERSION= 0.4.2
|
|
PORTREVISION= 3
|
|
CATEGORIES= sysutils
|
|
MASTER_SITES= http://reality.exsgi.org/eile/misc/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Gl base load monitor
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}
|
|
|
|
USE_GL= glut
|
|
MAKEFILE= Makefile.FreeBSD
|
|
MAKE_ARGS= CC="${CC}" \
|
|
CFLAGS="${CFLAGS} -I${LOCALBASE}/include -DFreeBSD ${PTHREAD_CFLAGS}" \
|
|
LDFLAGS="-L${LOCALBASE}/lib ${PTHREAD_LIBS}" \
|
|
OBJS="get_load.o trackball.o glload.o texture.o screenShot.o"
|
|
ALL_TARGET= glload
|
|
|
|
PLIST_FILES= bin/glload
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/glload ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|