blob: cbb036976aa411e4e00f5e97abb2a1a1f00ecf47 (
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
|
# New ports collection makefile for: OpenEXR
# Date created: 2003/01/26
# Whom: nork@FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= OpenEXR
PORTVERSION= 1.0.4
CATEGORIES= graphics devel
MASTER_SITES= http://savannah.nongnu.org/download/openexr/${PORTNAME}.pkg/${PORTVERSION}/
MAINTAINER= nork@FreeBSD.org
USE_GCC= 3.1
USE_LIBTOOL= YES
GNU_CONFIGURE= YES
#CONFIGURE_ENV+= --program-transform-name=''
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_X11)
.if defined(WITH_FLTK) || defined(WITH_FLTK_XUNICODE)
.if defined(WITH_FLTK_XUNICODE)
BUILD_DEPENDS= fltk-config:${PORTSDIR}/x11-toolkits/fltk-xunicode
.else
BUILD_DEPENDS= fltk-config:${PORTSDIR}/x11-toolkits/fltk
.endif
USE_MESA= YES
RUN_DEPENDS= ${BUILD_DEPENDS}
CONFIGURE_ARGS+=--with-fltk-prefix=${X11BASE}
CFLAGS+= ${PTHREAD_CFLAGS}
LDFLAGS+= ${PTHREAD_LDFLAGS}
PLIST_SUB+= WITH_FLTK=
.if ${OSVERSION} < 500035
pre-everything::
@${ECHO_CMD} Please install x11-toolkits/fltk* with USE_GCC=3.1.
.endif
.else
CONFIGURE_ARGS+=--with-fltk-prefix=DUMMY
PLIST_SUB+= WITH_FLTK=@comment
.endif
.else
CONFIGURE_ARGS+=--without-x --with-fltk-prefix=DUMMY
PLIST_SUB+= WITH_FLTK=@comment
.endif
.include <bsd.port.post.mk>
|