freebsd-ports/sysutils/xosview/Makefile
Cheng-Lung Sung ef81a7a91c - The sysutils/xosview port that comes with 6.0 results in a
memory leak that eventually crashes the xosview process.
  The CVS tree doesn't show any activity here more recent than 6.0.
  The attached extra patch to bsd/kernel.cc fixes the problem.
- bump PORTREVISION

PR:		92339
Submitted by:	Tom Pavel <pavel AT alum dot mit dot edu>
2006-01-27 08:17:32 +00:00

53 lines
1.2 KiB
Makefile

# ex:ts=8
# Ports collection makefile for: xosview
# Date created: 19 Nov 1997
# Whom: Brian Handy <handy@physics.montana.edu>
#
# $FreeBSD$
#
PORTNAME= xosview
PORTVERSION= 1.8.2
PORTREVISION= 1
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= clsung@FreeBSD.org
COMMENT= A graphical performance meter
USE_X_PREFIX= yes
GNU_CONFIGURE= yes
USE_REINPLACE= yes
MAN1= xosview.1
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 700000
BROKEN= "Does not compile on FreeBSD >= 7.x"
.endif
post-patch:
@${REINPLACE_CMD} -e 's,iostream.h,iostream,' \
${WRKSRC}/xwin.h \
${WRKSRC}/Host.h \
${WRKSRC}/Xrm.cc \
${WRKSRC}/llist.cc \
${WRKSRC}/timeval.h \
${WRKSRC}/xosview.cc
@${REINPLACE_CMD} -e 's,string.h,string,' \
${WRKSRC}/xwin.h \
${WRKSRC}/Host.cc \
${WRKSRC}/Xrm.cc \
${WRKSRC}/llist.cc \
${WRKSRC}/timeval.h \
${WRKSRC}/xosview.cc
@${REINPLACE_CMD} -e 's,fstream.h,fstream,' \
${WRKSRC}/bitfieldmeter.cc \
${WRKSRC}/fieldmeter.cc \
${WRKSRC}/fieldmeterdecay.cc \
${WRKSRC}/fieldmetergraph.cc
@${REINPLACE_CMD} -e 's,-O4,,' \
${WRKSRC}/configure
.include <bsd.port.post.mk>