2005-10-09 00:17:17 +00:00
|
|
|
# New ports collection makefile for: py-soya3d
|
|
|
|
# Date created: 2005-10-04
|
|
|
|
# Whom: Jose Alonso Cardenas Marquez <acardenas@bsd.org.pe>
|
|
|
|
#
|
|
|
|
# $FreeBSD$
|
|
|
|
#
|
|
|
|
|
|
|
|
PORTNAME= soya3d
|
2009-04-27 01:16:35 +00:00
|
|
|
PORTVERSION= 0.14
|
2010-02-05 11:46:55 +00:00
|
|
|
PORTREVISION= 5
|
2008-12-28 10:54:08 +00:00
|
|
|
CATEGORIES= graphics python
|
2005-10-09 00:17:17 +00:00
|
|
|
MASTER_SITES= http://download.gna.org/soya/
|
|
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
DISTNAME= Soya-${PORTVERSION}
|
|
|
|
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}
|
2006-04-15 18:06:00 +00:00
|
|
|
DIST_SUBDIR= python
|
2005-10-09 00:17:17 +00:00
|
|
|
|
2006-07-23 02:45:24 +00:00
|
|
|
MAINTAINER= acm@FreeBSD.org
|
2005-10-10 17:37:16 +00:00
|
|
|
COMMENT= Very high level 3D engine for Python
|
2005-10-09 00:17:17 +00:00
|
|
|
|
2007-08-19 18:58:55 +00:00
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libode.a:${PORTSDIR}/devel/ode \
|
2009-04-27 01:16:35 +00:00
|
|
|
${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging
|
2006-08-21 16:09:18 +00:00
|
|
|
LIB_DEPENDS= cal3d.12:${PORTSDIR}/graphics/cal3d \
|
2005-10-09 00:17:17 +00:00
|
|
|
freetype.9:${PORTSDIR}/print/freetype2
|
|
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/editobj/editor.py:${PORTSDIR}/graphics/py-editobj \
|
2006-06-15 16:04:37 +00:00
|
|
|
${PYTHON_SITELIBDIR}/tofu/client.py:${PORTSDIR}/net/py-tofu \
|
|
|
|
${PYTHON_SITELIBDIR}/cerealizer/__init__.py:${PORTSDIR}/security/py-cerealizer
|
2005-10-09 00:17:17 +00:00
|
|
|
|
|
|
|
USE_BZIP2= yes
|
|
|
|
USE_PYTHON= yes
|
|
|
|
USE_PYDISTUTILS= yes
|
2010-01-25 19:15:18 +00:00
|
|
|
USE_OPENAL= al alut
|
2010-04-27 21:58:27 +00:00
|
|
|
USE_GL= glew
|
2005-10-09 00:17:17 +00:00
|
|
|
USE_GMAKE= yes
|
2009-04-27 01:28:46 +00:00
|
|
|
USE_SDL= sdl
|
2005-10-09 00:17:17 +00:00
|
|
|
|
2007-07-30 09:42:28 +00:00
|
|
|
PYDISTUTILS_PKGNAME= Soya
|
|
|
|
|
2005-10-09 00:17:17 +00:00
|
|
|
MANDIR= ${WRKDIR}/${DISTNAME}/manpage/man1
|
|
|
|
MAN1= soya_editor.1
|
|
|
|
INSTALL_DIR= ${INSTALL} -d -o ${BINOWN} -g ${BINGRP} -m ${BINMODE}
|
2009-04-27 01:16:35 +00:00
|
|
|
SOYATUTVER= 0.14
|
2005-10-09 00:17:17 +00:00
|
|
|
|
2009-04-29 15:27:14 +00:00
|
|
|
.if !defined(NOPORTEXAMPLES)
|
2006-05-07 18:49:33 +00:00
|
|
|
DISTFILES+= SoyaTutorial-${SOYATUTVER}${EXTRACT_SUFX}
|
2005-10-24 02:34:23 +00:00
|
|
|
.endif
|
|
|
|
|
2006-05-17 19:08:23 +00:00
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
|
|
|
|
.if ${ARCH} == "amd64"
|
|
|
|
CFLAGS += -fPIC
|
|
|
|
.endif
|
|
|
|
|
2005-11-06 14:01:12 +00:00
|
|
|
post-patch:
|
2009-06-17 23:21:46 +00:00
|
|
|
@${REINPLACE_CMD} -e \
|
|
|
|
's|%%LOCALBASE%%|${LOCALBASE}|g' -e \
|
2009-06-18 01:07:35 +00:00
|
|
|
's|/usr/include|${LOCALBASE}/include|g' ${WRKSRC}/setup.py
|
2005-11-06 14:01:12 +00:00
|
|
|
|
2005-10-09 00:17:17 +00:00
|
|
|
post-install:
|
2009-04-29 15:27:14 +00:00
|
|
|
.if !defined(NOPORTEXAMPLES)
|
2005-10-09 00:17:17 +00:00
|
|
|
@${INSTALL_DIR} ${EXAMPLESDIR}
|
2006-05-07 18:49:33 +00:00
|
|
|
@${CP} -R ${WRKDIR}/SoyaTutorial-${SOYATUTVER}/tutorial/* ${EXAMPLESDIR}
|
2005-10-09 00:17:17 +00:00
|
|
|
@${FIND} ${EXAMPLESDIR}/* -type f -print0 | \
|
|
|
|
${XARGS} -0 ${CHMOD} ${SHAREMODE}
|
2009-04-29 15:27:14 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.if !defined(NOPORTDOCS)
|
2006-06-15 16:04:37 +00:00
|
|
|
@${INSTALL_DIR} ${DOCSDIR}
|
|
|
|
.for FILE in AUTHORS README
|
|
|
|
@${INSTALL_DATA} ${WRKDIR}/SoyaTutorial-${SOYATUTVER}/${FILE} ${DOCSDIR}
|
2005-10-09 00:17:17 +00:00
|
|
|
.endfor
|
|
|
|
.endif
|
|
|
|
|
2006-06-15 16:04:37 +00:00
|
|
|
.for FILE in ${MAN1}
|
|
|
|
${INSTALL_MAN} ${MANDIR}/${FILE} ${PREFIX}/man/man1
|
|
|
|
.endfor
|
|
|
|
|
2006-05-17 19:08:23 +00:00
|
|
|
.include <bsd.port.post.mk>
|