1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-31 05:41:08 +00:00
freebsd-ports/graphics/movit/Makefile
Gerald Pfeifer ea8c8ec7da Bump PORTREVISION for ports depending on the canonical version of GCC
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3
to GCC 9.1 under most circumstances now after revision 507371.

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, c11, c++0x, c++11-lang,
   c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib
plus, everything INDEX-11 shows with a dependency on lang/gcc9 now.

PR:		238330
2019-07-26 20:46:53 +00:00

45 lines
962 B
Makefile

# $FreeBSD$
PORTNAME= movit
PORTVERSION= 1.6.2
PORTREVISION= 2
CATEGORIES= graphics
MASTER_SITES= http://${PORTNAME}.sesse.net/
MAINTAINER= ports@FreeBSD.org
COMMENT= High-performance video filters for the GPU
LICENSE= GPLv2+
LIB_DEPENDS= libepoxy.so:graphics/libepoxy \
libfftw3.so:math/fftw3
USES= autoreconf compiler:c++11-lang gmake eigen:3,build,run libtool \
pathfix pkgconfig
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
PORTDOCS= NEWS README
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
post-patch:
@${REINPLACE_CMD} -e '/AC_INIT/ s/git/${PORTVERSION}/' \
${WRKSRC}/configure.ac
@${REINPLACE_CMD} -e '/^all/ s/$$(TESTS)//' \
${WRKSRC}/Makefile.in
@${REINPLACE_CMD} -e '/features\.h/ d' \
${WRKSRC}/demo.cpp
post-install:
.if ${PORT_OPTIONS:MDOCS}
. for f in ${PORTDOCS}
cd ${WRKSRC} && ${COPYTREE_SHARE} ${f} ${STAGEDIR}${DOCSDIR}
. endfor
.endif
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/lib${PORTNAME}.so.*
.include <bsd.port.mk>