blob: 54150719c3baec01ea69ba2a0f5f40f204f29299 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
# New ports collection makefile for: LuxRender
# Date created: 16 March 2010
# Whom: Alexey Dokuchaev <danfe@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= luxrender
PORTVERSION= 0.7.1
CATEGORIES= graphics
MASTER_SITES= http://src.luxrender.net/lux/archive/ \
http://freebsd.nsu.ru/distfiles/luxrender/
DISTNAME= ${HG_NODEID}
DIST_SUBDIR= ${PORTNAME}
MAINTAINER= danfe@FreeBSD.org
COMMENT= A physically based and unbiased rendering system
LICENSE= GPLv3
BUILD_DEPENDS= ${LOCALBASE}/lib/libfreeimage.a:${PORTSDIR}/graphics/freeimage
LIB_DEPENDS= boost_thread.4:${PORTSDIR}/devel/boost-libs \
png.6:${PORTSDIR}/graphics/png \
IlmImf.6:${PORTSDIR}/graphics/OpenEXR \
HG_NODEID= 9206b3ba7011
USE_BZIP2= yes
USE_BISON= build
USE_CMAKE= yes
CMAKE_VERBOSE= yes
WRKSRC= ${WRKDIR}/lux-${HG_NODEID}
MAKE_JOBS_SAFE= yes
DESKTOP_ENTRIES="LuxRender" "${COMMENT}" "${PORTNAME}" "${PORTNAME}" \
"Application;Graphics;3DGraphics;" ${FALSE}
OPTIONS= QT4 "Build Qt4 GUI executable" on \
WX "Build wxWidgets GUI executable" off
.include <bsd.port.options.mk>
.if defined(WITH_QT4)
USE_QT_VER= 4
QT_COMPONENTS= moc_build qmake_build rcc_build uic_build corelib gui
PLIST_FILES+= bin/luxrender
.endif
.if defined(WITH_WX)
USE_WX= 2.8+
PLIST_FILES+= bin/luxrenderwx
.endif
post-patch:
# Prevent appending `64' suffix to `lib' directory on amd64, do not install
# vendor .desktop file, disable build of Python extension for now
@${REINPLACE_CMD} -e '/LIB_SUFFIX 64/d ; /luxrender\.desktop/d ; \
89,95d ; 803,837d' ${WRKSRC}/CMakeLists.txt
# Adjust for libpng 1.4 new API
@${REINPLACE_CMD} -e \
's|png_set_gray_1_2_4_to_8|png_set_expand_gray_1_2_4_to_8|' \
-e 's|int_p_NULL|NULL|g' ${WRKSRC}/core/external/cimg.h
.include <bsd.port.mk>
|