mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-26 05:02:18 +00:00
ea8c8ec7da
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
39 lines
982 B
Makefile
39 lines
982 B
Makefile
# Created by: Sergey Akifyev <asa@gascom.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= qalculate
|
|
PORTVERSION= 3.0.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= math
|
|
MASTER_SITES= https://github.com/${GH_ACCOUNT}/${GH_PROJECT}/releases/download/v${PORTVERSION}/
|
|
DISTNAME= ${GH_PROJECT}-${PORTVERSION}
|
|
|
|
MAINTAINER= jhale@FreeBSD.org
|
|
COMMENT= Multi-purpose desktop calculator (GTK+3 frontend)
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
LIB_DEPENDS= libqalculate.so:math/libqalculate
|
|
RUN_DEPENDS= gnuplot:math/gnuplot
|
|
|
|
USES= compiler:c++11-lang gettext gmake gnome \
|
|
libtool:build localbase pkgconfig
|
|
USE_GNOME= cairo gdkpixbuf2 gtk30 intltool libxml2
|
|
|
|
# USE_GITHUB= Use MASTER_SITES so that the pre-rolled release is downloaded
|
|
GH_ACCOUNT= Qalculate
|
|
GH_PROJECT= ${PORTNAME}-gtk
|
|
|
|
GNU_CONFIGURE= yes
|
|
DATADIR= share/${GH_PROJECT}
|
|
DOCSDIR= share/doc/${GH_PROJECT}
|
|
|
|
OPTIONS_DEFINE= NLS
|
|
OPTIONS_SUB= yes
|
|
|
|
post-patch-NLS-off:
|
|
@${REINPLACE_CMD} -e '/^SUBDIRS =/s|po ||g' ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|