freebsd-ports/games/ceferino/Makefile
Simon Barner f63cee677e - Update to 0.97.5
Submitted by:	Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
                (maintainer)
PR:		ports/92517
2006-02-01 12:08:00 +00:00

72 lines
1.9 KiB
Makefile

# New ports collection makefile for: ceferino
# Date created: 2006-01-11
# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
#
# $FreeBSD$
#
PORTNAME= ceferino
PORTVERSION= 0.97.5
CATEGORIES= games
MASTER_SITES= http://www.losersjuegos.com.ar/juegos/ceferino/descargas/
MAINTAINER= acardenas@bsd.org.pe
COMMENT= Game similar to Super Pang
USE_X_PREFIX= yes
USE_SDL= sdl mixer image
GNU_CONFIGURE= yes
USE_GMAKE= yes
CPPFLAGS+= -I${LOCALBASE}/include -I${X11BASE}/include
LDFLAGS+= -L${LOCALBASE}/lib -L${X11BASE}/lib ${PTHREAD}
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
CEFEDIRS= ima music levels sounds
OPTIONS= NLS "Native Language Support" on
.include <bsd.port.pre.mk>
.if defined(WITHOUT_NLS)
CONFIGURE_ARGS+= --disable-nls
PLIST_SUB+= NLS="@comment "
.else
USE_GETTEXT= yes
PLIST_SUB+= NLS=""
FLAG_NLS= true
.endif
.if ${OSVERSION} < 500000
BROKEN= Does not compile
.endif
post-extract:
@${FIND} -E ${WRKSRC}/src/ -type f -iregex ".*\.(cc|h)" \
-print0 | ${XARGS} -0 ${REINPLACE_CMD} -e 's/<SDL/<SDL11/'
@${REINPLACE_CMD} -e 's/-lSDL /`sdl11-config --libs`/g' ${WRKSRC}/configure
post-configure:
@${REINPLACE_CMD} -e 's/-pthread/-pthread -lintl/g' ${WRKSRC}/src/Makefile
do-install:
@cd ${WRKSRC}/src && \
${INSTALL_PROGRAM} ceferino ceferinoeditor ceferinosetup ${PREFIX}/bin
@cd ${WRKSRC}/data && \
${FIND} ${CEFEDIRS} -type d -exec ${MKDIR} "${DATADIR}/{}" \; && \
${FIND} -E ${CEFEDIRS} -type f -iregex ".*\.(png|jpg|xm|map|wav)" -exec ${INSTALL_DATA} "{}" "${DATADIR}/{}" \;
.if defined(FLAG_NLS)
.for FILE in es ca fr
${MKDIR} ${PREFIX}/share/locale/${FILE}/LC_MESSAGES && \
${INSTALL_DATA} ${WRKSRC}/po/${FILE}.gmo ${PREFIX}/share/locale/${FILE}/LC_MESSAGES/${PORTNAME}.mo
.endfor
.endif
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
@cd ${WRKSRC} && \
${INSTALL_DATA} AUTHORS ChangeLog README ${DOCSDIR}
.endif
.include <bsd.port.post.mk>