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
36 lines
900 B
Makefile
36 lines
900 B
Makefile
# Created by: Edward Tomasz Napierala <trasz@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= flowcanvas
|
|
PORTVERSION= 0.7.1
|
|
PORTREVISION= 9
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= http://download.drobilla.net/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Interactive Gtkmm/Gnomecanvasmm widget
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libboost_date_time.so:devel/boost-libs \
|
|
libgvc.so:graphics/graphviz \
|
|
libgnomecanvasmm-2.6.so:graphics/libgnomecanvasmm26 \
|
|
libgtkmm-2.4.so:x11-toolkits/gtkmm24
|
|
|
|
USES= compiler:c++11-lang pkgconfig tar:bzip2 waf
|
|
USE_CXXSTD= c++11
|
|
USE_LDCONFIG= yes
|
|
|
|
CFLAGS+= -I${LOCALBASE}/include
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
"s|$$[{]LIBDIRNAME[}]/pkgconfig|libdata/pkgconfig| ; \
|
|
s|-fshow-column'|-fshow-column ${CXXFLAGS}'|" \
|
|
${WRKSRC}/autowaf/autowaf.py
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so
|
|
|
|
.include <bsd.port.mk>
|