a9f015d155
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 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, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
39 lines
997 B
Makefile
39 lines
997 B
Makefile
# Created by: Koop Mast <kwm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= argyllcms
|
|
PORTVERSION= 1.9.2
|
|
PORTREVISION= 4
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= http://www.argyllcms.com/
|
|
DISTNAME= Argyll_V${PORTVERSION}_src
|
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
|
COMMENT= ICC compatible color management system
|
|
|
|
LICENSE= AGPLv3
|
|
|
|
BUILD_DEPENDS= jam:devel/jam
|
|
LIB_DEPENDS= libtiff.so:graphics/tiff \
|
|
libpng.so:graphics/png
|
|
|
|
WRKSRC= ${WRKDIR}/Argyll_V${PORTVERSION}
|
|
|
|
USES= compiler:c11 cpe jpeg ssl zip
|
|
USE_XORG= x11 xau xdmcp xext xinerama xrandr xscrnsaver xxf86vm
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} 's:711:755:g' ${WRKSRC}/Jambase
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${MAKE_ENV} jam -dx -q -fJambase -j${MAKE_JOBS_NUMBER}
|
|
|
|
do-install:
|
|
@cd ${WRKSRC} && ${SETENV} DESTDIR=${STAGEDIR} ${MAKE_ENV} \
|
|
REFSUBDIR=share/argyll/ref \
|
|
jam -dx -q -fJambase -j${MAKE_JOBS_NUMBER} install
|
|
${MV} ${STAGEDIR}${PREFIX}/bin/License.txt \
|
|
${STAGEDIR}${PREFIX}/share/argyll/
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/*
|
|
|
|
.include <bsd.port.mk>
|