1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-02 06:03:50 +00:00
freebsd-ports/games/burrtools/Makefile
Greg Larkin 7ea3656093 - Updated to 0.6.1
Changes: http://burrtools.sourceforge.net/repos/head/NEWS
- Added to MASTER_SITES

PR:		ports/154733
Submitted by:	C-S <c-s@c-s.li> (maintainer)
2011-02-17 15:04:27 +00:00

56 lines
1.2 KiB
Makefile

# ex:ts=8
# Ports collection makefile for: burrtools
# Date created: Mar 23, 2007
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= burrtools
PORTVERSION= 0.6.1
CATEGORIES= games
MASTER_SITES= SF \
http://www.c-s.li/ports/
MAINTAINER= c-s@c-s.li
COMMENT= A puzzle solver
LIB_DEPENDS= png.6:${PORTSDIR}/graphics/png \
xmlwrapp.5:${PORTSDIR}/textproc/xmlwrapp \
fltk.1:${PORTSDIR}/x11-toolkits/fltk \
boost_thread:${PORTSDIR}/devel/boost-libs
USE_XORG= x11 xt xext xmu xi
USE_GL= glu
USE_GMAKE= yes
USE_GCC= 4.2+
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="`fltk-config --cxxflags`" \
LDFLAGS="`fltk-config --ldflags`"
MAKE_JOBS_SAFE= yes
LICENSE= GPLv3
PORTDOCS= *
PORTEXAMPLES= *
PLIST_FILES= bin/burrTxt bin/burrTxt2 bin/burrGui
.include <bsd.port.pre.mk>
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/src/burrTxt ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/src/burrTxt2 ${PREFIX}/bin
${INSTALL_PROGRAM} ${WRKSRC}/src/gui/burrGui ${PREFIX}/bin
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in burricons.ico AUTHORS ChangeLog NEWS README
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
.endif
.if !defined(NOPORTEXAMPLES)
@${MKDIR} ${EXAMPLESDIR}
@(cd ${WRKSRC}/examples; ${COPYTREE_SHARE} . ${EXAMPLESDIR})
.endif
.include <bsd.port.post.mk>