ddae4e92d8
Most USES use a colon for build/run(/test) suffixes. Change kde.mk, qt.mk and pyqt.mk to do the same, and update all ports using that. Document in CHANGES. PR: 266034 Exp-run by: antoine Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D36349
32 lines
898 B
Makefile
32 lines
898 B
Makefile
PORTNAME= acalc
|
|
PORTVERSION= 0.3
|
|
CATEGORIES= math
|
|
|
|
MAINTAINER= andrey.nik.ponomarenko@gmail.com
|
|
COMMENT= Simple and pretty Qt5-based expression calculator
|
|
WWW= https://github.com/anpp/acalc
|
|
|
|
LICENSE= BSD4CLAUSE
|
|
|
|
BROKEN_FreeBSD_12_powerpc64= fails to compile: settings.cpp:8:136: error: no matching function for call to 'Setting::Setting(<brace-enclosed initializer list>)'
|
|
|
|
USES= compiler:c++14-lang qmake qt:5 tar:xz
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= anpp
|
|
|
|
USE_QT= core gui widgets buildtools:build linguisttools:build qmake:build
|
|
|
|
WRKSRC_SUBDIR= aCalc/aCalc
|
|
|
|
PLIST_FILES= bin/acalc share/pixmaps/Calculator-50.png
|
|
|
|
DESKTOP_ENTRIES="acalc" "" "${PREFIX}/share/pixmaps/Calculator-50.png" \
|
|
"${PORTNAME}" "" ""
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/acalc ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_DATA} ${WRKSRC}/Icons/Calculator-50.png \
|
|
${STAGEDIR}${PREFIX}/share/pixmaps
|
|
|
|
.include <bsd.port.mk>
|