- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}.
- Bump PORTREVISION for ports intalling files in ${X11BASE}.
51 lines
1.1 KiB
Makefile
51 lines
1.1 KiB
Makefile
# Ports collection makefile for: ffff
|
|
# Date created: Sep 20, 2006
|
|
# Whom: rossiya@gmail.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ffff
|
|
PORTVERSION= 323
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_EXTENDED}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= FFFF${PORTVERSION}-src
|
|
|
|
MAINTAINER= rossiya@gmail.com
|
|
COMMENT= A fast mandelbrot fractal generator
|
|
|
|
LIB_DEPENDS= glut.4:${PORTSDIR}/graphics/libglut
|
|
|
|
USE_DOS2UNIX= yes
|
|
USE_GCC= 3.2+
|
|
USE_GL= yes
|
|
USE_XLIB= yes
|
|
USE_ZIP= yes
|
|
|
|
SOURCE= FFFF3 FragmentProgram FragmentProgramARB10 GPUProgram \
|
|
PixelBuffer VertexProgram VertexProgramATI VertexProgramNV \
|
|
extensions vpext
|
|
|
|
CXXFLAGS+= -I${X11BASE}/include -I${X11BASE}/include/GL ${PTHREAD_CFLAGS} \
|
|
-D__linux__
|
|
LDFLAGS+= -L${X11BASE}/lib ${PTHREAD_LIBS} -lglut -lGL -lXext -lX11 -lXmu \
|
|
-lGLU -lm
|
|
|
|
PLIST_FILES= bin/ffff
|
|
|
|
# contains x86 assembler
|
|
ONLY_FOR_ARCHS= i386
|
|
|
|
do-build:
|
|
.for f in ${SOURCE}
|
|
${CXX} ${CXXFLAGS} -c ${WRKSRC}/${f}.cpp -o ${WRKSRC}/${f}.obj
|
|
.endfor
|
|
${CXX} ${LDFLAGS} ${SOURCE:C/(.*)/${WRKSRC}\/\1.obj/} -o ${WRKSRC}/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|