60945f0277
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)
64 lines
1.6 KiB
Makefile
64 lines
1.6 KiB
Makefile
# Created by: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= slune
|
|
PORTVERSION= 1.0.15
|
|
PORTREVISION= 7
|
|
CATEGORIES= games python
|
|
MASTER_SITES= http://download.gna.org/slune/
|
|
DISTNAME= Slune-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= 3D game. includes racing, car-crashing, and lots of action
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libcal3d.so:${PORTSDIR}/graphics/cal3d
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}openal>0:${PORTSDIR}/audio/py-openal \
|
|
${PYTHON_PKGNAMEPREFIX}vorbis>0:${PORTSDIR}/audio/py-vorbis \
|
|
${PYTHON_PKGNAMEPREFIX}soya3d>0:${PORTSDIR}/graphics/py-soya3d \
|
|
${PYTHON_PKGNAMEPREFIX}py2play>0:${PORTSDIR}/net-p2p/py-py2play
|
|
|
|
USES= dos2unix gettext python tar:bzip2
|
|
DOS2UNIX_GLOB= *.po *.mo
|
|
USE_GL= glew
|
|
USE_SDL= sdl mixer
|
|
USE_PYTHON= autoplist distutils
|
|
|
|
PYDISTUTILS_PKGNAME= Slune
|
|
PYDISTUTILS_EGGINFODIR= ${PREFIX}/share
|
|
|
|
PORTDOCS= README
|
|
|
|
DESKTOP_ENTRIES= "Slune" \
|
|
"3D racing game" \
|
|
"${DATADIR}/images/slune.48.png" \
|
|
"slune" \
|
|
"Game;ArcadeGame;" \
|
|
false
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-extract:
|
|
.for FILE in slune.po.orig slune.po.rej
|
|
@${RM} ${WRKSRC}/locale/es/LC_MESSAGES/${FILE}
|
|
.endfor
|
|
|
|
.for FILE in slune.po-0 slune.sl.mo slune.sl.po slune2.mo slune2.po
|
|
@${RM} ${WRKSRC}/locale/sl/LC_MESSAGES/${FILE}
|
|
.endfor
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
'/install-purelib/s|=.*|= ${PREFIX}/share| ; \
|
|
/install-scripts/s|=.*|= ${PREFIX}/lib| ; \
|
|
/install-data/s|=.*|= ${PREFIX}/share|' ${WRKSRC}/setup.cfg
|
|
@${REINPLACE_CMD} -e \
|
|
'/LC_MESSAGES/s|".",||' ${WRKSRC}/setup.py
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
|
|
|
|
.include <bsd.port.mk>
|