mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-05 01:55:52 +00:00
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
34 lines
845 B
Makefile
34 lines
845 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= maim
|
|
PORTVERSION= 5.5.2
|
|
DISTVERSIONPREFIX= v
|
|
PORTREVISION= 3
|
|
CATEGORIES= graphics
|
|
|
|
MAINTAINER= neel@neelc.org
|
|
COMMENT= Screenshot utility with performance improvements over scrot
|
|
|
|
LICENSE= GPLv3
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/include/glm/glm.hpp:math/glm
|
|
LIB_DEPENDS= libImlib2.so:graphics/imlib2 \
|
|
libicuuc.so:devel/icu \
|
|
libpng.so:graphics/png \
|
|
libslopy.so:x11/slop
|
|
|
|
USES= cmake compiler:c++11-lang jpeg
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= naelstrof
|
|
USE_GL= gl glut
|
|
USE_XORG= ice sm x11 xcomposite xext xfixes xrandr xrender
|
|
PLIST_FILES= bin/${PORTNAME} man/man1/${PORTNAME}.1.gz
|
|
|
|
CMAKE_ARGS= -DSLOP_LIBRARIES=${LOCALBASE}/lib/libslopy.so
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/bin/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/${PORTNAME}.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|