blob: 3e630e6e7a51961f35356f149783cb4f79186c2a (
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
65
66
67
68
69
|
# Created by: Alexey Dokuchaev <danfe@FreeBSD.org>
# $FreeBSD$
PORTNAME= nucleo
PORTVERSION= 0.7.6
PORTREVISION= 21
CATEGORIES= x11-toolkits
MASTER_SITES= http://insitu.lri.fr/metisse/download/nucleo/
MAINTAINER= ports@FreeBSD.org
COMMENT= Toolkit to explore video and human-computer interaction
LICENSE= LGPL21
LICENSE_FILE= ${WRKSRC}/COPYING.LESSER
LIB_DEPENDS= libexif.so:graphics/libexif \
libpng.so:graphics/png \
libfreetype.so:print/freetype2 \
libexpat.so:textproc/expat2
USES= gmake jpeg libtool localbase:ldflags pathfix pkgconfig python:run shebangfix tar:bzip2
USE_GL= gl glu
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --without-opencv
USE_LDCONFIG= yes
INSTALL_TARGET= install-strip
SHEBANG_FILES= docs/MacOSX/nBundle.in
CXXFLAGS+= -Wno-c++11-narrowing
OPTIONS_DEFINE= FFMPEG GD GNUTLS QT4
OPTIONS_RADIO= DNSSD
OPTIONS_RADIO_DNSSD= AVAHI MDNSRESPONDER
OPTIONS_SUB= yes
DNSSD_DESC= Service discovery
AVAHI_LIB_DEPENDS= libdns_sd.so:net/avahi-libdns
AVAHI_CPPFLAGS= -I${LOCALBASE}/include/avahi-compat-libdns_sd
FFMPEG_DESC= Build FFmpeg plugin
FFMPEG_LIB_DEPENDS= libavformat.so:multimedia/ffmpeg
FFMPEG_CONFIGURE_OFF= --without-ffmpeg
GD_DESC= Build GD plugin
GD_LIB_DEPENDS= libgd.so:graphics/gd
QT4_DESC= Build Qt 4 plugin
GD_CONFIGURE_OFF= --without-gd
GNUTLS_LIB_DEPENDS= libgnutls.so:security/gnutls
GNUTLS_CONFIGURE_OFF= --without-gnutls
MDNSRESPONDER_LIB_DEPENDS= libdns_sd.so:net/mDNSResponder
QT4_USE= QT=moc_build,corelib
QT4_USES= qmake:no_env qt:4
QT4_CONFIGURE_OFF= --without-qt
QT4_MAKE_ARGS= QT4MOC="${MOC}"
.include <bsd.port.options.mk>
.if ! ${PORT_OPTIONS:MAVAHI} && ! ${PORT_OPTIONS:MMDNSRESPONDER}
CONFIGURE_ARGS+= --without-dns-sd
.endif
post-install:
@${MKDIR} ${STAGEDIR}${PREFIX}/lib/nucleo
.include <bsd.port.mk>
|