ea8c8ec7da
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
44 lines
983 B
Makefile
44 lines
983 B
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nvidia-texture-tools
|
|
PORTVERSION= 2.0.8.1 # needed to not bump PORTEPOCH; remove on next update
|
|
PORTREVISION= 13
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Texture Tools with support for DirectX 10 texture formats
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/NVIDIA_Texture_Tools_LICENSE.txt
|
|
|
|
# see src/nvcore/nvcore.h
|
|
ONLY_FOR_ARCHS= amd64 i386 powerpc powerpc64
|
|
|
|
LIB_DEPENDS= libpng.so:graphics/png \
|
|
libtiff.so:graphics/tiff \
|
|
libIlmImf.so:graphics/openexr
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= castano
|
|
GH_TAGNAME= ${PORTVERSION:R}
|
|
|
|
USES= alias cmake compiler:c++11-lang jpeg
|
|
CMAKE_ARGS= -DNVTT_SHARED=TRUE
|
|
|
|
CFLAGS+= -fPIC
|
|
CXXFLAGS+= -fPIC
|
|
|
|
PORTDOCS= NVIDIA_Texture_Tools_README.txt ChangeLog
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_SUB= yes
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
.for f in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${STAGEDIR}${DOCSDIR}
|
|
.endfor
|
|
|
|
.include <bsd.port.mk>
|