2012-05-06 14:30:38 +00:00
|
|
|
# New Ports collection makefile for: founts
|
|
|
|
# Date created: 2012-05-01
|
|
|
|
# Whom: nemysis@gmx.ch
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= founts
|
|
|
|
PORTVERSION= 12
|
|
|
|
CATEGORIES= graphics games
|
|
|
|
MASTER_SITES= http://www.linuxmotors.com/founts/downloads/
|
|
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
|
|
|
|
MAINTAINER= nemysis@gmx.ch
|
|
|
|
COMMENT= A demo/program inspired by Erics cascade
|
|
|
|
|
|
|
|
LICENSE= GPLv2
|
|
|
|
|
|
|
|
USE_SDL= sdl
|
|
|
|
|
2012-08-25 06:08:48 +00:00
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
2012-05-06 14:30:38 +00:00
|
|
|
|
|
|
|
PORTDOCS= Changelog README
|
|
|
|
|
2012-08-25 06:08:48 +00:00
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
|
2012-05-06 14:30:38 +00:00
|
|
|
do-build:
|
|
|
|
cd ${WRKSRC} && ${CC} -o ${PORTNAME} ${CFLAGS} \
|
|
|
|
-lm `${SDL_CONFIG} --cflags --libs` founts.c
|
|
|
|
|
|
|
|
do-install:
|
|
|
|
# Executable
|
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
2012-08-25 06:08:48 +00:00
|
|
|
|
2012-05-06 14:30:38 +00:00
|
|
|
# Documentation
|
2012-08-25 06:08:48 +00:00
|
|
|
.if ${PORT_OPTIONS:MDOCS}
|
2012-05-06 14:30:38 +00:00
|
|
|
${MKDIR} ${DOCSDIR}
|
|
|
|
. for f in ${PORTDOCS}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
|
|
. endfor
|
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|