freebsd-ports/graphics/pixie/Makefile

76 lines
2 KiB
Makefile
Raw Normal View History

# New ports collection makefile for: pixie
# Date created: 29 Jan 2004
# Whom: Igor Pokrovsky <tiamat@comset.net>
#
# $FreeBSD$
#
PORTNAME= pixie
PORTVERSION= 2.2.6
PORTREVISION= 3
CATEGORIES= graphics
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/Pixie%20${PORTVERSION}
DISTNAME= Pixie-src-${PORTVERSION}
EXTRACT_SUFX= .tgz
2008-10-18 05:54:06 +02:00
MAINTAINER= ports@FreeBSD.org
COMMENT= A photorealistic renderer with Pixar's RenderMan-like interface
BUILD_DEPENDS= flex:${PORTSDIR}/textproc/flex
LIB_DEPENDS= IlmImf.6:${PORTSDIR}/graphics/OpenEXR \
tiff.4:${PORTSDIR}/graphics/tiff \
fltk_gl.1:${PORTSDIR}/x11-toolkits/fltk
2008-07-20 09:24:29 +02:00
NOT_FOR_ARCHS= amd64
WRKSRC= ${WRKDIR}/Pixie
USE_GNOME= gnomehack
USE_GL= glu
USE_BISON= build
2010-12-04 08:34:27 +01:00
USE_AUTOTOOLS= libtool
CONFIGURE_ARGS= --includedir=${PREFIX}/include/pixie \
--libdir=${PREFIX}/lib/pixie \
--with-docdir=${DOCSDIR} \
--with-shaderdir=${DATADIR}/shaders \
--with-ribdir=${DATADIR}/ribs \
--with-texturedir=${DATADIR}/textures \
--with-displaysdir=${PREFIX}/lib/pixie/displays \
--with-modulesdir=${PREFIX}/lib/pixie/modules \
--with-openexr-prefix=${LOCALBASE} \
--enable-openexr-threads
USE_LDCONFIG= ${PREFIX}/lib/${PORTNAME}
MAN1= rndr.1 sdrc.1 sdrinfo.1 texmake.1
PORTDOCS= *
CFLAGS+= -fPIC
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
LDFLAGS+= -L${LOCALBASE}/lib ${PTHREAD_LIBS}
.include <bsd.port.pre.mk>
.if ${ARCH} == "sparc64"
BROKEN= Does not compile on sparc64
.endif
post-patch:
@${REINPLACE_CMD} -e '/test/s|==|=|g' ${WRKSRC}/configure
@${REINPLACE_CMD} -e '/^SUBDIRS/s|doc||g ; \
/^install-data-am:/s|install-nobase_docDATA||g' ${WRKSRC}/Makefile.in
.for file in src/ri/Makefile.in src/sdr/Makefile.in
@${REINPLACE_CMD} -e '/^includedir/s|=.*$$|= @includedir@|g' ${WRKSRC}/${file}
.endfor
post-install:
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
.for file in AUTHORS ChangeLog DEVNOTES LICENSE NEWS README
${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
.endfor
@(cd ${WRKSRC}/doc && ${FIND} . ! -name "*Makefile*" | \
${CPIO} -dump -R ${SHAREOWN}:${SHAREGRP} ${DOCSDIR})
.endif
.include <bsd.port.post.mk>