e5688543b0
lang/gcc5 will expire in ~1 month. If someone still uses lang/gcc48 they should backport C++11 fix instead. QA on GCC architecuters is currently limited to powerpc64 which uses GCC_DEFAULT. PR: 193528
30 lines
735 B
Makefile
30 lines
735 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= portrac
|
|
PORTVERSION= 0.5
|
|
PORTREVISION= 6
|
|
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
|
|
|
|
USES= compiler:c++11-lib qmake qt:5 tar:bzip2
|
|
USE_CXXSTD= c++11
|
|
USE_QT= 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>
|