blob: 53025f3ae4b5adedec784b4fc11be4503ed21021 (
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
|
# New ports collection makefile for: Nucleo
# Date created: 30 May 2007
# Whom: Alexey Dokuchaev <danfe@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= nucleo
PORTVERSION= 0.6
CATEGORIES= x11-toolkits
MASTER_SITES= http://insitu.lri.fr/metisse/download/latest/
MAINTAINER= danfe@FreeBSD.org
COMMENT= Toolkit to explore video and human-computer interaction
LIB_DEPENDS= freetype.9:${PORTSDIR}/print/freetype2 \
jpeg.9:${PORTSDIR}/graphics/jpeg \
png.5:${PORTSDIR}/graphics/png
USE_BZIP2= yes
USE_GMAKE= yes
USE_GL= glu
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
USE_LDCONFIG= yes
OPTIONS= EXIF "Build with EXIF support" on \
DNSSD "Build with DNS-SD support" off \
QT4 "Enable Qt4 plugin" off
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_EXIF)
LIB_DEPENDS+= exif.12:${PORTSDIR}/graphics/libexif
.endif
.if defined(WITH_QT4)
LIB_DEPENDS+= QtCore:${PORTSDIR}/devel/qt4-corelib
MAKE_ARGS+= QT4MOC=${LOCALBASE}/bin/moc-qt4
PLIST_SUB+= QT4=""
.else
CONFIGURE_ARGS+= --disable-qt
PLIST_SUB+= QT4="@comment "
.endif
.if exists(${LOCALBASE}/include/avahi-compat-libdns_sd/dns_sd.h)
LIB_DEPENDS+= dns_sd.1:${PORTSDIR}/net/avahi-libdns
.elif defined(WITH_DNSSD)
LIB_DEPENDS+= dns_sd.1:${PORTSDIR}/net/mDNSResponder
.endif
.include <bsd.port.post.mk>
|