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
32 lines
823 B
Makefile
32 lines
823 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= portrac
|
|
PORTVERSION= 0.5
|
|
PORTREVISION= 2
|
|
CATEGORIES= ports-mgmt
|
|
MASTER_SITES= http://e-soul.org/distfiles/ \
|
|
http://home.e-soul.org/~mgp/distfiles/
|
|
|
|
MAINTAINER= Mario.G.Pavlov@gmail.com
|
|
COMMENT= Simple GUI tool for tracking port updates
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
PLIST_FILES= bin/portrac \
|
|
share/portrac/portrac.png \
|
|
share/portrac/up-to-date.png \
|
|
share/portrac/updates-available.png
|
|
|
|
# Unhide std::to_string() to fix build with GCC (ports/193528)
|
|
CXXFLAGS= -D_GLIBCXX_USE_C99
|
|
|
|
USES= compiler:c++11-lib qmake tar:bzip2
|
|
USE_CXXSTD= c++11
|
|
USE_QT5= widgets buildtools_build
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKDIR}/${DISTNAME}/portrac ${STAGEDIR}${PREFIX}/bin && \
|
|
${MKDIR} ${STAGEDIR}${DATADIR} && \
|
|
${INSTALL_DATA} ${WRKDIR}/${DISTNAME}/*.png ${STAGEDIR}${DATADIR}
|
|
|
|
.include <bsd.port.mk>
|