the 32 ports that still use it. Bump PORTREVISION on their dependent ports except the ones that depend on these: audio/libogg audio/libvorbis devel/pcre ftp/curl graphics/jpeg graphics/libart_lgpl graphics/tiff textproc/expat2 textproc/libxslt In these cases the same trick as in the recent gettext update is used. The ports install a symlink with the old library version. When enough of their dependent ports have had regular updates the remaining ones can get a PORTREVISION bump and the links can be removed. Also remove the devel/pcre dependency from USE_GNOME=glib20. It causes over 2200 packages to depend on devel/pcre while less than 200 actually link with it. The glib20 package still depends on devel/pcre so this should not make a difference for ports with USE_GNOME=glib20. Also, libdata/pkgconfig/glib-2.0.pc lists pcre as a private library so USE_GNOME=glib20 should not propagate it. PR: 195724 Exp-run by: antoine Approved by: portmgr (antoine)
69 lines
2.3 KiB
Makefile
69 lines
2.3 KiB
Makefile
# Created by: Andrew Pantyukhin <infofarmer@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= singularity
|
|
PORTVERSION= 0.30c
|
|
PORTREVISION= 4
|
|
CATEGORIES= games
|
|
MASTER_SITES= GOOGLE_CODE
|
|
PKGNAMEPREFIX= endgame-
|
|
EXTRACT_SUFX= -src.tar.gz
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Simulates the life of a true AI
|
|
|
|
RUN_DEPENDS= py*-game>=1.8:${PORTSDIR}/devel/py-game \
|
|
${PYNUMPY}
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils
|
|
USE_SDL= image mixer
|
|
PORTDOCS= AUTHORS Changelog README.txt TODO
|
|
PROJECTHOST= ${PKGNAMEPREFIX}${PORTNAME}
|
|
|
|
OPTIONS_DEFINE= MUSIC DOCS
|
|
OPTIONS_DEFAULT= MUSIC
|
|
MUSIC_DESC= Install original music pack
|
|
MUSIC_RUN_DEPENDS= endgame-singularity-music>=006:${PORTSDIR}/games/endgame-singularity-music
|
|
|
|
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} . ${STAGEDIR}${DATADIR})
|
|
${INSTALL_SCRIPT} ${WRKSRC}/${PORTNAME}.py ${STAGEDIR}${PREFIX}/bin/${PORTNAME}
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|