mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
09f9633cb6
in the ports tree (via Mk/bsd.default-versions.mk and lang/gcc) which has now moved from GCC 6 to GCC 7 by default. This includes ports - featuring USE_GCC=yes or USE_GCC=any, - featuring USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and those - with USES=compiler specifying one of openmp, nestedfct, c11, c++0x, c++11-lib, c++11-lang, c++14-lang, c++17-lang, or gcc-c++11-lib. PR: 222542
42 lines
938 B
Makefile
42 lines
938 B
Makefile
# Created by: Andreas Kohn <andreas@syndrom23.de>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= obby
|
|
PORTVERSION= 0.4.8
|
|
PORTREVISION= 4
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://releases.0x539.de/obby/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Library for synced document buffers
|
|
|
|
LICENSE= GPLv2
|
|
|
|
LIB_DEPENDS= libsigc-2.0.so:devel/libsigc++20 \
|
|
libnet6.so:net/net6
|
|
|
|
BROKEN_armv6= fails to compile: no member named 'name' in 'serialise::type_name<long long>'
|
|
BROKEN_armv7= fails to compile: no member named 'name' in 'serialise::type_name<long long>'
|
|
|
|
USES= pathfix pkgconfig libtool compiler:c++11-lang
|
|
USE_CXXSTD= c++11
|
|
GNU_CONFIGURE= yes
|
|
USE_LDCONFIG= yes
|
|
INSTALL_TARGET= install-strip
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MNLS}
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
USES+= gettext
|
|
PLIST_SUB+= NLS=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-nls
|
|
PLIST_SUB+= NLS="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|