77e6e8af92
to 1.12.0. Major changes from version 1.11.4 include: - Big fixes, of course. - Better compatibility with Civilization II. - Better internationalization. - Prettier graphics/tiles. - More maps. - Players can agree to give shared vision, which means that you automatically see everything the other player sees.
29 lines
822 B
Makefile
29 lines
822 B
Makefile
# $NetBSD: Makefile,v 1.12 2001/08/15 19:50:31 jlam Exp $
|
|
|
|
PKGNAME= ${DISTNAME:S/-/-server-/}
|
|
COMMENT= Freeciv game server
|
|
|
|
DEPENDS+= freeciv-share-${FC_VERS}:../../games/freeciv-share
|
|
|
|
CONFIGURE_ARGS+= --enable-client=no
|
|
CONFIGURE_ARGS+= --disable-make-data
|
|
CONFIGURE_ARGS+= --with-readline
|
|
|
|
USE_BUILDLINK_ONLY= # defined
|
|
USE_GNU_READLINE= # uses callback interface of GNU readline
|
|
LIBS+= -ltermcap
|
|
|
|
# Uses rl_filename_completion_function() which was introduced to the readline
|
|
# API in version 4.2.
|
|
#
|
|
BUILDLINK_DEPENDS.readline= readline>=4.2
|
|
|
|
.include "../freeciv-share/Makefile.common"
|
|
|
|
do-install:
|
|
cd ${WRKSRC}/server; ${SETENV} ${MAKE_ENV} \
|
|
${MAKE_PROGRAM} ${MAKE_FLAGS} ${INSTALL_TARGET}
|
|
|
|
.include "../../devel/readline/buildlink.mk"
|
|
.include "../../devel/zlib/buildlink.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|