mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
70 lines
1.7 KiB
Makefile
70 lines
1.7 KiB
Makefile
# 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>
|