b4d2ac42d7
- Shared lib version and PORTREVISION bumb for all affected ports. While I'm here: - Remove USE_MESA knob where it was (35 ports). It marked as depricated for 2 years. PR: ports/90247 Submitted by: Ermal Lu?i <eri--@albabsd.org>
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
# ex:ts=8
|
|
# Ports collection Makefile for: flounder
|
|
# Date created: Oct 14, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= flounder
|
|
PORTVERSION= 0.40
|
|
PORTREVISION= 3
|
|
CATEGORIES= science
|
|
MASTER_SITES= http://www.enel.ucalgary.ca/~vigmond/flounder/
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A quick way to visualize regularly spaced 4D data
|
|
|
|
LIB_DEPENDS= fltk:${PORTSDIR}/x11-toolkits/fltk \
|
|
ungif:${PORTSDIR}/graphics/libungif \
|
|
png:${PORTSDIR}/graphics/png \
|
|
glut.4:${PORTSDIR}/graphics/libglut
|
|
|
|
USE_AUTOTOOLS= libtool:15
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include -I${X11BASE}/include" \
|
|
LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD_LIBS} -lstdc++"
|
|
USE_GMAKE= yes
|
|
|
|
.if !defined(WITHOUT_AVIFILE)
|
|
LIB_DEPENDS+= aviplay:${PORTSDIR}/multimedia/avifile
|
|
CONFIGURE_ARGS+= --enable-avifile
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_PLOT)
|
|
BUILD_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot
|
|
RUN_DEPENDS+= gnuplot:${PORTSDIR}/math/gnuplot
|
|
CONFIGURE_ARGS+= --enable-gnuplot
|
|
.endif
|
|
|
|
.if !defined(WITHOUT_GRACE)
|
|
BUILD_DEPENDS+= xmgrace:${PORTSDIR}/math/grace
|
|
RUN_DEPENDS+= xmgrace:${PORTSDIR}/math/grace
|
|
CONFIGURE_ARGS+= --enable-grace
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "alpha"
|
|
BROKEN= "Does not compile on alpha"
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|