summaryrefslogtreecommitdiff
path: root/math/cantor/Makefile
blob: b47ff3c696d6408e8a67e4e12cb4943cd4c3a6e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
# $FreeBSD$

PORTNAME=	cantor
PORTVERSION=	${KDE4_VERSION}
CATEGORIES=	math kde
MASTER_SITES=	${MASTER_SITE_KDE}
MASTER_SITE_SUBDIR=	${KDE4_BRANCH}/${PORTVERSION}/src
DIST_SUBDIR=	KDE/${PORTVERSION}

MAINTAINER=	kde@FreeBSD.org
COMMENT=	KDE 4 frontend to mathematical software

LIB_DEPENDS=	spectre.1:${PORTSDIR}/print/libspectre \
		qalculate.5:${PORTSDIR}/math/libqalculate \
		analitza.5:${PORTSDIR}/math/analitza

CONFLICTS=	kdeedu-4.[0-6].*

USE_KDE4=	kdehier kdelibs kdeprefix automoc4
USES=		cmake:outsource
USE_QT4=	corelib qtestlib_build xml xmlpatterns \
		moc_build qmake_build rcc_build uic_build
USE_XZ=		yes
USE_LDCONFIG=	yes

OPTIONS_DEFINE=	MAXIMA OCTAVE R
MAXIMA_DESC=	Maxima backend
OCTAVE_DESC=	Octave backend
R_DESC=		R backend

.include <bsd.port.options.mk>

.if ${PORT_OPTIONS:MMAXIMA}
RUN_DEPENDS+=	maxima:${PORTSDIR}/math/maxima
.endif

.if ${PORT_OPTIONS:MOCTAVE}
RUN_DEPENDS+=	octave:${PORTSDIR}/math/octave
.endif

.if ${PORT_OPTIONS:MR}
BUILD_DEPENDS+=	R:${PORTSDIR}/math/R
RUN_DEPENDS+=	R:${PORTSDIR}/math/R
# Required to set CFLAGS for -lgfortran.
USE_FORTRAN=	yes
PLIST_SUB+=	R=""
.else
CMAKE_ARGS+=	-DWITH_R:BOOL=FALSE
PLIST_SUB+=	R="@comment "
.endif

.include <bsd.port.mk>