77 lines
2.4 KiB
Makefile
77 lines
2.4 KiB
Makefile
# New ports collection makefile for: endgame-singularity
|
|
# Date created: 10 August 2007
|
|
# Whom: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= singularity
|
|
PORTVERSION= 0.30
|
|
PORTREVISION= 3
|
|
CATEGORIES= games
|
|
MASTER_SITES= http://emhsoft.com/singularity/ CENKES
|
|
PKGNAMEPREFIX= endgame-
|
|
EXTRACT_SUFX= -src.tar.gz
|
|
|
|
MAINTAINER= freebsd-ports@sslash.org.ua
|
|
COMMENT= Simulates the life of a true AI
|
|
|
|
RUN_DEPENDS= py*-game>=1.8:${PORTSDIR}/devel/py-game \
|
|
${PYNUMPY}
|
|
|
|
USE_PYDISTUTILS=yes
|
|
USE_PYTHON= yes
|
|
USE_SDL= image mixer
|
|
PORTDOCS= AUTHORS Changelog README.txt TODO
|
|
|
|
OPTIONS= MUSIC "Install original music pack" on
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if !defined(WITHOUT_MUSIC)
|
|
RUN_DEPENDS+= endgame-singularity-music>=006:${PORTSDIR}/games/endgame-singularity-music
|
|
.endif
|
|
|
|
post-extract:
|
|
@${FIND} ${WRKSRC} -name '*.pyc' -delete
|
|
@cd ${WRKSRC}/&&${MV} code ${PORTNAME}
|
|
@${MKDIR} ${WRKSRC}/data/music/
|
|
@${TOUCH} ${WRKSRC}/data/music/.keep_me
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '5,16d;25,31d;\
|
|
/app=/s|app=.*|packages=["singularity","singularity/graphics","singularity/screens"],|;\
|
|
/name=/s|".*"|"singularity"|' \
|
|
${WRKSRC}/setup.py
|
|
@${REINPLACE_CMD} -e '/import cPickle/s|cPickle|pickle as cPickle|' \
|
|
${WRKSRC}/${PORTNAME}/g.py
|
|
@${REINPLACE_CMD} -e '/data_loc = /s|=.*|= "${DATADIR}/"|;\
|
|
/data_loc.*music/s|, ".."||' ${WRKSRC}/${PORTNAME}/g.py
|
|
@${REINPLACE_CMD} -e '/ code\.[a-z]/s|code|singularity|' \
|
|
${WRKSRC}/${PORTNAME}/graphics/button.py \
|
|
${WRKSRC}/${PORTNAME}/graphics/dialog.py \
|
|
${WRKSRC}/${PORTNAME}/graphics/g.py \
|
|
${WRKSRC}/${PORTNAME}/screens/base.py \
|
|
${WRKSRC}/${PORTNAME}/screens/finance.py \
|
|
${WRKSRC}/${PORTNAME}/screens/main_menu.py \
|
|
${WRKSRC}/${PORTNAME}/screens/options.py
|
|
@${REINPLACE_CMD} -e '/ code/s|code|singularity|' \
|
|
${WRKSRC}/${PORTNAME}/screens/knowledge.py \
|
|
${WRKSRC}/${PORTNAME}/screens/location.py \
|
|
${WRKSRC}/${PORTNAME}/screens/research.py
|
|
@${REINPLACE_CMD} -e '/ code[ \.]/s|code|singularity|' \
|
|
${WRKSRC}/${PORTNAME}/screens/map.py
|
|
|
|
post-build:
|
|
@${ECHO_CMD} '#!${PYTHON_CMD}' > ${WRKSRC}/${PORTNAME}.py
|
|
@${ECHO_CMD} 'import ${PORTNAME}.${PORTNAME}' >> ${WRKSRC}/${PORTNAME}.py
|
|
|
|
post-install:
|
|
@cd ${WRKSRC}/data/&&${COPYTREE_SHARE} . ${DATADIR}/
|
|
@${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.py ${PREFIX}/bin/${PORTNAME}
|
|
.ifndef NOPORTDOCS
|
|
@${INSTALL} -d ${DOCSDIR}/
|
|
@cd ${WRKSRC}/&&${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}/
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|