forked from Lainports/freebsd-ports
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. 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, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
32 lines
893 B
Makefile
32 lines
893 B
Makefile
# Created by: Yinghong.Liu <relaxbsd@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= speedcrunch
|
|
PORTVERSION= 0.12.0 # XXX: should really be 0.12, change upon next update
|
|
DISTVERSIONSUFFIX= -${BB_COMMIT}
|
|
PORTREVISION= 3
|
|
CATEGORIES= math
|
|
MASTER_SITES= https://bitbucket.org/${BB_ACCOUNT}/${BB_PROJECT}/get/${BB_COMMIT}.tar.gz?dummy=/
|
|
|
|
MAINTAINER= danfe@FreeBSD.org
|
|
COMMENT= Keyboard-oriented desktop scientific calculator
|
|
|
|
LICENSE= GPLv2+
|
|
|
|
BB_ACCOUNT= heldercorreia
|
|
BB_PROJECT= ${PORTNAME}
|
|
BB_COMMIT= c0fc9c68d292
|
|
|
|
USES= cmake compiler:c++11-lang qt:5
|
|
USE_QT= buildtools_build qmake_build core gui help sql widgets
|
|
USE_XORG= x11
|
|
|
|
WRKSRC= ${WRKDIR}/${BB_ACCOUNT}-${BB_PROJECT}-${BB_COMMIT}
|
|
WRKSRC_SUBDIR= src
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|-W[-_[:alnum:]]*|| ; s|metainfo|appdata| \
|
|
; s|master|${PORTVERSION:R}-git-${BB_COMMIT}|' \
|
|
${CMAKE_SOURCE_PATH}/CMakeLists.txt
|
|
|
|
.include <bsd.port.mk>
|