mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-23 09:10:43 +00:00
be6c15b5c6
Add USES=xorg and USES=gl to ports in categories starting with 'g'. While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
51 lines
1.5 KiB
Makefile
51 lines
1.5 KiB
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= pouetchess
|
|
PORTVERSION= 0.1.1
|
|
PORTREVISION= 14
|
|
CATEGORIES= games
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/0.11
|
|
DISTNAME= pouetChess_0.11_src
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Open-source 3D chess game
|
|
|
|
LICENSE= GPLv2 # from sourceforge page
|
|
|
|
USES= compiler dos2unix gl gmake sdl
|
|
USE_SDL= sdl image
|
|
USE_GL= gl glu
|
|
DOS2UNIX_GLOB= *.cpp *.h Makefile config.ini
|
|
|
|
CXXFLAGS+= ${CXXFLAGS_${CHOSEN_COMPILER_TYPE}}
|
|
CXXFLAGS_clang= -Wno-reserved-user-defined-literal
|
|
|
|
WRKSRC= ${WRKDIR}/pouetChess_0.11
|
|
|
|
PORTDATA= *
|
|
|
|
DESKTOP_ENTRIES="pouetChess" \
|
|
"Play chess" \
|
|
"${DATADIR}/textures/1.png" \
|
|
"pouetChess" \
|
|
"Game;BoardGame;" \
|
|
false
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|sdl-config|${SDL_CONFIG}|' ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e '/^LIBS/ s|$$| -L${LOCALBASE}/lib|' ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e '/CXX / d' ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e '/CXXFLAGS.*+=/ d' ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e '/^CXXFLAGS/ s|:=|+=|' ${WRKSRC}/Makefile
|
|
@${REINPLACE_CMD} -e '/^CXXFLAGS/ s|$$| -I${LOCALBASE}/include|' ${WRKSRC}/Makefile
|
|
|
|
@${REINPLACE_CMD} -e 's|config\.ini|${PREFIX}/etc/pouetChess.conf|' ${WRKSRC}/src/globalInfos.cpp
|
|
@${REINPLACE_CMD} -e 's|data/|${DATADIR}/|' ${WRKSRC}/src/globalInfos.h
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/pouetChess ${STAGEDIR}${PREFIX}/bin/
|
|
${INSTALL_DATA} ${WRKSRC}/bin/config.ini ${STAGEDIR}${PREFIX}/etc/pouetChess.conf.sample
|
|
@cd ${WRKSRC}/bin/data && ${COPYTREE_SHARE} . ${STAGEDIR}${DATADIR}/
|
|
|
|
.include <bsd.port.mk>
|