0d2725682b
structure (i.e. include/SDL for includes and sdl-config for configuration binary) - Update graphics/sdl_ttf to version 2.0.8 - Update graphics/sdl_image to version 1.2.5 - Update audio/sdl_mixer to version 1.2.7 - Update net/sdl_net to version 1.2.6 - Update Mk/bsd.sdl.mk accordingly - Fix dependent ports to fit the new directory structure and avoid several API breakages - Bump up portrevisions for all dependent ports to allow them to be upgraded by portupgrade/portmaster etc tools Approved by: kris (portmgr), sem (mentor)
100 lines
2.7 KiB
Makefile
100 lines
2.7 KiB
Makefile
# New ports collection makefile for: py-soya3d
|
|
# Date created: 2005-10-04
|
|
# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= soya3d
|
|
PORTVERSION= 0.12
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://download.gna.org/soya/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= Soya-${PORTVERSION}
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
|
DIST_SUBDIR= python
|
|
|
|
MAINTAINER= acm@FreeBSD.org
|
|
COMMENT= Very high level 3D engine for Python
|
|
|
|
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging \
|
|
${PYTHON_SITELIBDIR}/_openal.so:${PORTSDIR}/audio/py-openal \
|
|
${PYTHON_SITELIBDIR}/pysdl_mixer/sdl_mixer.so:${PORTSDIR}/audio/py-sdl_mixer \
|
|
pyrexc:${PORTSDIR}/devel/pyrex
|
|
LIB_DEPENDS= cal3d.12:${PORTSDIR}/graphics/cal3d \
|
|
GLEW.1:${PORTSDIR}/graphics/glew \
|
|
freetype.9:${PORTSDIR}/print/freetype2
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/editobj/editor.py:${PORTSDIR}/graphics/py-editobj \
|
|
${PYTHON_SITELIBDIR}/tofu/client.py:${PORTSDIR}/net/py-tofu \
|
|
${PYTHON_SITELIBDIR}/cerealizer/__init__.py:${PORTSDIR}/security/py-cerealizer
|
|
|
|
USE_BZIP2= yes
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
USE_GL= yes
|
|
USE_GMAKE= yes
|
|
|
|
MANDIR= ${WRKDIR}/${DISTNAME}/manpage/man1
|
|
MAN1= soya_editor.1
|
|
INSTALL_DIR= ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}
|
|
SOYATUTVER= 0.12
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
DISTFILES+= SoyaTutorial-${SOYATUTVER}${EXTRACT_SUFX}
|
|
.endif
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} == "amd64"
|
|
CFLAGS += -fPIC
|
|
.endif
|
|
|
|
.if ${OSVERSION} < 500000
|
|
STDINTFLAG= true
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|g' \
|
|
-e 's|%%X11BASE%%|${X11BASE}|g' ${WRKSRC}/setup.py
|
|
@${REINPLACE_CMD} -e \
|
|
's|malloc.h|stdlib.h|g' \
|
|
${WRKSRC}/ode-0.5/configurator.c
|
|
@${REINPLACE_CMD} -e \
|
|
's|g++|${CXX}|; \
|
|
s|-Wall||g; \
|
|
s|-L/usr/X11/lib|-lXext|; \
|
|
s|-L/usr/lib/X11R6||; \
|
|
s|-L/usr/lib/X11||; \
|
|
s|-L/usr/X11R6/lib|-L${X11BASE}/lib|; \
|
|
s|-fno-rtti||; \
|
|
s|-ffast-math|${CXXFLAGS} -I${X11BASE}/include|' \
|
|
${WRKSRC}/ode-0.5/config/makefile.unix-gcc
|
|
@${REINPLACE_CMD} -e \
|
|
's|^BUILD=debug|#BUILD=debug|; \
|
|
s|^#BUILD=release|BUILD=release|' \
|
|
${WRKSRC}/ode-0.5/config/user-settings
|
|
.if defined(STDINTFLAG)
|
|
@cd ${WRKSRC} && \
|
|
${FIND} * -type f -exec ${REINPLACE_CMD} -i "" -e 's|stdint.h|inttypes.h|g' "{}" \;
|
|
.endif
|
|
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${INSTALL_DIR} ${EXAMPLESDIR}
|
|
@${CP} -R ${WRKDIR}/SoyaTutorial-${SOYATUTVER}/tutorial/* ${EXAMPLESDIR}
|
|
@${FIND} ${EXAMPLESDIR}/* -type f -print0 | \
|
|
${XARGS} -0 ${CHMOD} ${SHAREMODE}
|
|
@${INSTALL_DIR} ${DOCSDIR}
|
|
.for FILE in AUTHORS README
|
|
@${INSTALL_DATA} ${WRKDIR}/SoyaTutorial-${SOYATUTVER}/${FILE} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.for FILE in ${MAN1}
|
|
${INSTALL_MAN} ${MANDIR}/${FILE} ${PREFIX}/man/man1
|
|
.endfor
|
|
|
|
.include <bsd.port.post.mk>
|