The Caribbean Sea in the late 16th century: The Dutch, French, English and Spanish crown aim to expand their areas of influence. You as an auspiscious young captain are trying to make the best of it, as you may either become a brave merchant soul, a freebooting hero of your crown or a bloodlusty dreaded pirate leader. Freebooters will hopefully become a free clone of the Sid Meier classic Pirates!. It's written in C++ using SDL and licensed under the GNU General Public License. PR: ports/72189 Submitted by: Janos Mohacsi <janos.mohacsi@bsd.hu>
34 lines
900 B
Makefile
34 lines
900 B
Makefile
# New ports collection makefile for: freebooters
|
|
# Date created: 02 July 2004
|
|
# Whom: <janos.mohacsi@bsd.hu>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= freebooters
|
|
PORTVERSION= 0.2.1
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://download.gna.org/freebooters/
|
|
|
|
MAINTAINER= janos.mohacsi@bsd.hu
|
|
COMMENT= Freebooters is a free clone of the classic Pirates!
|
|
|
|
USE_GMAKE= yes
|
|
USE_SDL= mixer image sdl ttf
|
|
USE_REINPLACE= yes
|
|
DOC_FILES= AUTHORS COPYING COPYRIGHT NEWS README \
|
|
README_BUCCANEER TODO manual.tex
|
|
MAN6= freebooters.6 buccaneer.6
|
|
|
|
do-configure:
|
|
${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' ${WRKSRC}/sdl_setup.cc
|
|
${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' ${WRKSRC}/tools.cc
|
|
${REINPLACE_CMD} -e 's,%%PREFIX%%,${PREFIX},g' ${WRKSRC}/data/freebooters.conf
|
|
|
|
post-install:
|
|
.ifndef(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC}/doc/ && ${INSTALL_DATA} ${DOC_FILES} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|