1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-17 03:25:46 +00:00
freebsd-ports/games/asc/Makefile

52 lines
1.4 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: asc
# Date created: 16 February 2000
# Whom: Maxim Sobolev <sobomax@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= asc
PORTVERSION= 1.13.5.1
CATEGORIES= games
2001-10-22 13:37:55 +00:00
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= asc-hq
DISTNAME= ${PORTNAME}-source-${PORTVERSION}
MAINTAINER= yinjieh@csie.nctu.edu.tw
COMMENT= A turn based, multiplayer strategic game with very nice graphics
LIB_DEPENDS= SDL-1.1.5:${PORTSDIR}/devel/sdl12 \
SDL_image.10:${PORTSDIR}/graphics/sdl_image \
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-10-22 13:37:55 +00:00
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
SDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config
USE_GMAKE= yes
USE_REINPLACE= yes
USE_LIBTOOL= yes
USE_GETOPT_LONG= yes
CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" \
CPPFLAGS="`${SDL_CONFIG} --cflags`" \
2001-05-23 05:46:56 +00:00
LIBS="`${SDL_CONFIG} --libs` -lgnugetopt -lm"
CONFIGURE_ARGS= --disable-paraguitest
pre-patch:
@${REINPLACE_CMD} -e 's|-lpthread|${PTHREAD_LIBS}|g' ${WRKSRC}/configure
@find ${WRKSRC} \( -name "*.cpp" -or -name "*.h" \) | xargs \
${REINPLACE_CMD} -e 's|malloc[.]h|stdlib.h|g'
@find ${WRKSRC} -type f -name Makefile.in | xargs \
${REINPLACE_CMD} -e 's|[(]datadir[)]/games|(datadir)|g'
pre-configure:
@${RM} -f ${WRKSRC}/config.cache
.include <bsd.port.mk>