mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-21 00:25:50 +00:00
515db2ed10
GCC 4.2 in FreeBSD 8.X/9.X base is now too old to compile OpenEXR, so GCC-based systems will upgrade to the default ports compiler (GCC 4.7 currently.) Add two patches to OpenEXR to permit building it in a live system with the older OpenEXR version installed. Bug report filed to upstream Github at https://github.com/openexr/openexr/issues/130 Couple OpenEXR more tightly to ilmbase and require its exact .so version. Add UPDATING note, and bump PORTREVISION of all dependent ports. Proto-STAGE hugin-devel, and mark it IGNORE because hugin is newer. Approved by: portmgr (implicit for bumping PORTREVISION on unstaged ports)
27 lines
644 B
Makefile
27 lines
644 B
Makefile
# Created by: James Bowman <jamesb-bsd@excamera.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= openexr
|
|
PORTVERSION= 1.2.0
|
|
PORTREVISION= 5
|
|
CATEGORIES= graphics python
|
|
MASTER_SITES= http://excamera.com/files/ \
|
|
CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= OpenEXR-${PORTVERSION}
|
|
|
|
MAINTAINER= jamesb-bsd@excamera.com
|
|
COMMENT= Python module for ILM's OpenEXR image format and library
|
|
|
|
LIB_DEPENDS= libIlmImf.so:${PORTSDIR}/graphics/OpenEXR
|
|
|
|
post-extract:
|
|
${REINPLACE_CMD} -e 's#/usr/local#${LOCALBASE}#g' ${WRKSRC}/setup.py
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
MASTER_SITE_SUBDIR=source/O/OpenEXR
|
|
|
|
.include <bsd.port.mk>
|