mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-22 04:17:44 +00:00
e59c88cece
(via Mk/bsd.default-versions.mk and lang/gcc) which has moved from GCC 5.4 to GCC 6.4 under most circumstances. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c++11-lib, c++11-lang, c++14-lang, c++0x, c11, or gcc-c++11-lib. PR: 219275
47 lines
1.1 KiB
Makefile
47 lines
1.1 KiB
Makefile
# Created by: Martin Wilke <miwi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gupnp
|
|
PORTVERSION= 1.0.2
|
|
PORTREVISION= 2
|
|
CATEGORIES= net
|
|
MASTER_SITES= GNOME
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Framework for UPnP devices
|
|
|
|
LICENSE= LGPL20
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= gobject-introspection>=0.6.4:devel/gobject-introspection \
|
|
gssdp>=0.14.13:net/gssdp
|
|
LIB_DEPENDS= libgssdp-1.0.so:net/gssdp \
|
|
libsoup-2.4.so:devel/libsoup \
|
|
libuuid.so:misc/e2fsprogs-libuuid
|
|
|
|
OPTIONS_DEFINE= VALA
|
|
OPTIONS_SUB= yes
|
|
VALA_DESC= Vala binding (requires net/gssdp with VALA enabled)
|
|
|
|
CONFIGURE_ARGS= --enable-introspection=yes
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
USE_CSTD= c11
|
|
USE_GNOME= glib20 introspection:build libxml2
|
|
USE_LDCONFIG= yes
|
|
USES= compiler:c11 gmake gnome libtool pathfix pkgconfig python:run shebangfix tar:xz
|
|
|
|
SHEBANG_FILES= tools/gupnp-binding-tool
|
|
|
|
VALA_BUILD_DEPENDS= vala>=0.20:lang/vala
|
|
VALA_CONFIGURE_ENV= ac_cv_path_VAPIGEN=${LOCALBASE}/bin/vapigen
|
|
VALA_CONFIGURE_ENV_OFF= ac_cv_path_VAPIGEN=""
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${CHOSEN_COMPILER_TYPE} == "clang"
|
|
CPPFLAGS+= -Wno-return-type
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|