mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-24 00:45:52 +00:00
7e223b8511
Submitted by: Oliver Eikemeier
50 lines
1.4 KiB
Makefile
50 lines
1.4 KiB
Makefile
# New ports collection makefile for: PyOpenGL
|
|
# Date created: Wed Aug 18 18:49:17 EDT 1999
|
|
# Whom: Randall Hopper <aa8vb@ipass.net>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= opengl
|
|
PORTVERSION= 2.0.0.44
|
|
CATEGORIES= graphics python
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= py${PORTNAME}
|
|
PKGNAMEPREFIX= py-
|
|
DISTNAME= PyOpenGL-${PORTVERSION:S/.b/b/}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= An OpenGL (and related library) interface for Python
|
|
|
|
BUILD_DEPENDS= ${PYNUMERIC} \
|
|
${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter \
|
|
${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging \
|
|
swig:${PORTSDIR}/devel/swig11
|
|
RUN_DEPENDS= ${PYNUMERIC} \
|
|
${PYTHON_SITELIBDIR}/_tkinter.so:${PORTSDIR}/x11-toolkits/py-tkinter \
|
|
${PYTHON_SITELIBDIR}/PIL.pth:${PORTSDIR}/graphics/py-imaging
|
|
|
|
USE_PERL5_BUILD=yes
|
|
USE_REINPLACE= yes
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
USE_MESA= yes
|
|
|
|
OSMAJOR!= /usr/bin/uname -r | sed -e 's/\..*//'
|
|
PLIST_SUB+= OSMAJOR=${OSMAJOR} \
|
|
PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR:S|^${LOCALBASE}/||g}
|
|
|
|
pre-patch:
|
|
@${FIND} ${WRKSRC} -name '*.[ch]' | ${XARGS} ${REINPLACE_CMD} -e \
|
|
's|malloc[.]h|stdlib.h|g'
|
|
@${CP} ${WRKSRC}/src/Togl-1.5/tkInt8.3.h ${WRKSRC}/src/Togl-1.5/tkInt8.4.h
|
|
|
|
do-configure:
|
|
@${PERL} -pi -e 's|%%LOCALBASE%%|${LOCALBASE}|g ; s|%%X11BASE%%|${X11BASE}|g' \
|
|
${WRKSRC}/config/freebsd.cfg ${WRKSRC}/Tkinter.py
|
|
|
|
post-install:
|
|
${LOCALBASE}/bin/tclsh8.4 ${WRKSRC}/register.tcl
|
|
|
|
.include <bsd.port.mk>
|