mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
d4f0d0048a
- Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}.
71 lines
2.0 KiB
Makefile
71 lines
2.0 KiB
Makefile
# New ports collection makefile for: RealTimeBattle
|
|
# Date created: 30 June 2000
|
|
# Whom: Dishanker Rajakulendren <draj@oceanfree.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= RealTimeBattle
|
|
PORTVERSION= 1.0.8
|
|
PORTREVISION= 2
|
|
CATEGORIES= games
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME:L}
|
|
DISTNAME= ${PORTNAME}-${PORTVERSION}-Ext
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Robot programming game for UNIX
|
|
|
|
BUILD_DEPENDS= gsed:${PORTSDIR}/textproc/gsed
|
|
|
|
USE_BZIP2= yes
|
|
USE_X_PREFIX= yes
|
|
USE_GNOME= gnometarget gtk20
|
|
USE_GCC= 3.4+
|
|
USE_PERL5= yes
|
|
USE_GETOPT_LONG= yes
|
|
USE_GMAKE= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
CONFIGURE_ARGS= --with-rtb-dir=${PREFIX}/lib/${PORTNAME}
|
|
|
|
CPPFLAGS= -I${LOCALBASE}/include -DHAVE_DECL_GETOPT
|
|
LDFLAGS= -L${LOCALBASE}/lib
|
|
|
|
post-patch:
|
|
.for file in configure
|
|
@${REINPLACE_CMD} -e '/test/s| == | = |g ; \
|
|
s|INCLUDED_LIBINTL=yes|INCLUDED_LIBINTL=no|g ; \
|
|
s|\\$${top_builddir}/intl/libintl.a|-lintl|g' ${WRKSRC}/${file}
|
|
.endfor
|
|
.for file in Makefile.in
|
|
@${REINPLACE_CMD} -e '/^SUBDIRS/s|Documentation||g' ${WRKSRC}/${file}
|
|
.endfor
|
|
.for file in team-framework/createrobot.sh \
|
|
team-framework/createrobotconf.sh
|
|
@${REINPLACE_CMD} -e 's| sed| gsed|g' ${WRKSRC}/${file}
|
|
.endfor
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in AUTHORS ChangeLog EXTRAROBOTS.README NEWS README TODO \
|
|
Documentation/RealTimeBattle-1.html \
|
|
Documentation/RealTimeBattle-2.html \
|
|
Documentation/RealTimeBattle-3.html \
|
|
Documentation/RealTimeBattle-4.html \
|
|
Documentation/RealTimeBattle-5.html \
|
|
Documentation/RealTimeBattle-6.html \
|
|
Documentation/RealTimeBattle.html \
|
|
Documentation/next.gif Documentation/prev.gif Documentation/toc.gif \
|
|
Documentation/next.png Documentation/prev.png Documentation/toc.png \
|
|
Documentation/RealTimeBattle.dvi \
|
|
Documentation/RealTimeBattle.sgml \
|
|
Documentation/RealTimeBattle.txt \
|
|
Documentation/RTB-Team-Framework-Tutorial.tar.gz
|
|
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|