707c6bf295
Ports that build out of source now simply can use "USES=cmake" instead of "USES=cmake:outsource". Ports that fail to build out of source now need to specify "USES=cmake:insource". I tried to only set insource where explictely needed. PR: 232038 Exp-run by: antoine
34 lines
895 B
Makefile
34 lines
895 B
Makefile
# Created by: Yuri Victorovich <yuri@rawbw.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= emptyepsilon
|
|
DISTVERSIONPREFIX= EE-
|
|
DISTVERSION= 2018.11.16
|
|
PORTREVISION= 1
|
|
CATEGORIES= games
|
|
|
|
MAINTAINER= yuri@FreeBSD.org
|
|
COMMENT= Spaceship bridge simulator game
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
LIB_DEPENDS= libsfml-system.so:devel/sfml
|
|
|
|
USES= cmake compiler:c++11-lib gl
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= daid
|
|
GH_PROJECT= EmptyEpsilon SeriousProton:sproton
|
|
USE_GL= gl glu
|
|
CMAKE_ARGS= -DSERIOUS_PROTON_DIR="${WRKSRC_sproton}/"
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|basepath + |"${DATADIR}/" + basepath + |' \
|
|
${WRKSRC_sproton}/src/resources.cpp
|
|
@${REINPLACE_CMD} -e 's|loadFromFile("resources/"|loadFromFile("${DATADIR}/resources/"|' \
|
|
${WRKSRC_sproton}/src/postProcessManager.cpp
|
|
|
|
post-install:
|
|
@${MV} ${STAGEDIR}${PREFIX}/bin/EmptyEpsilon ${STAGEDIR}${PREFIX}/bin/emptyepsilon
|
|
|
|
.include <bsd.port.mk>
|