2001-02-17 21:51:31 +00:00
|
|
|
# New ports collection makefile for: asc
|
|
|
|
# Date created: 16 February 2000
|
|
|
|
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= asc
|
2003-06-01 13:25:00 +00:00
|
|
|
PORTVERSION= 1.13.5.1
|
2001-02-17 21:51:31 +00:00
|
|
|
CATEGORIES= games
|
2001-10-22 13:37:55 +00:00
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
|
|
MASTER_SITE_SUBDIR= asc-hq
|
|
|
|
DISTNAME= ${PORTNAME}-source-${PORTVERSION}
|
2001-02-17 21:51:31 +00:00
|
|
|
|
2003-06-12 19:43:08 +00:00
|
|
|
MAINTAINER= yinjieh@csie.nctu.edu.tw
|
2003-03-07 06:14:21 +00:00
|
|
|
COMMENT= A turn based, multiplayer strategic game with very nice graphics
|
2001-02-17 21:51:31 +00:00
|
|
|
|
2003-01-02 15:06:10 +00:00
|
|
|
LIB_DEPENDS= SDL-1.1.5:${PORTSDIR}/devel/sdl12 \
|
2001-02-17 21:51:31 +00:00
|
|
|
SDL_image.10:${PORTSDIR}/graphics/sdl_image \
|
2001-09-14 08:42:27 +00:00
|
|
|
SDLmm.8:${PORTSDIR}/devel/sdlmm \
|
2002-10-18 16:36:22 +00:00
|
|
|
SDL_mixer.2:${PORTSDIR}/audio/sdl_mixer \
|
|
|
|
paragui.3:${PORTSDIR}/x11-toolkits/paragui
|
2001-08-15 20:33:16 +00:00
|
|
|
.if !exists(/usr/bin/bzip2)
|
|
|
|
LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2
|
|
|
|
.endif
|
2001-02-17 21:51:31 +00:00
|
|
|
|
2001-10-22 13:37:55 +00:00
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
|
2001-02-17 21:51:31 +00:00
|
|
|
|
|
|
|
SDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config
|
|
|
|
|
|
|
|
USE_GMAKE= yes
|
2002-10-18 16:53:52 +00:00
|
|
|
USE_REINPLACE= yes
|
2003-06-01 13:25:00 +00:00
|
|
|
USE_LIBTOOL= yes
|
2003-06-12 19:43:08 +00:00
|
|
|
USE_GETOPT_LONG= yes
|
2001-02-17 21:51:31 +00:00
|
|
|
CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" \
|
|
|
|
CPPFLAGS="`${SDL_CONFIG} --cflags`" \
|
2001-05-23 05:46:56 +00:00
|
|
|
LIBS="`${SDL_CONFIG} --libs` -lgnugetopt -lm"
|
2001-02-17 21:51:31 +00:00
|
|
|
|
2003-06-12 19:43:08 +00:00
|
|
|
CONFIGURE_ARGS= --disable-paraguitest
|
|
|
|
|
2001-02-17 21:51:31 +00:00
|
|
|
pre-patch:
|
2002-10-18 16:53:52 +00:00
|
|
|
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure
|
2001-02-17 21:51:31 +00:00
|
|
|
@find ${WRKSRC} \( -name "*.cpp" -or -name "*.h" \) | xargs \
|
2002-10-18 16:53:52 +00:00
|
|
|
${REINPLACE_CMD} -e 's|malloc[.]h|stdlib.h|g'
|
2003-06-01 13:25:00 +00:00
|
|
|
@find ${WRKSRC} -type f -name Makefile.in | xargs \
|
|
|
|
${REINPLACE_CMD} -e 's|[(]datadir[)]/games|(datadir)|g'
|
2001-02-17 21:51:31 +00:00
|
|
|
|
|
|
|
pre-configure:
|
|
|
|
@${RM} -f ${WRKSRC}/config.cache
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|