summaryrefslogtreecommitdiff
path: root/math/yacas/Makefile
blob: fe6263c8c94b4b5932afb37a635aaadcbd100547 (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
53
54
55
56
57
58
59
60
61
62
63
64
65
# ex:ts=8
# New ports collection makefile for:	yacas
# Date created:			Jun 21, 2001
# Whom:				ijliao
#
# $FreeBSD$
#

PORTNAME=	yacas
PORTVERSION=	1.0.61
PORTREVISION=	2
CATEGORIES=	math
MASTER_SITES=	http://yacas.sourceforge.net/backups/

MAINTAINER=	shaun@FreeBSD.org
COMMENT=	Yet Another Computer Algebra System

LIB_DEPENDS=	gsl.12:${PORTSDIR}/math/gsl

USE_AUTOTOOLS=	libtool:15
USE_PERL5_BUILD=	yes
USE_GMAKE=	yes
GNU_CONFIGURE=	yes
CONFIGURE_TARGET=	--build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
CONFIGURE_ENV=	CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
USE_LDCONFIG=	yes

OPTIONS=	X11	"Build with X11 features"			off \
 		GMP	"Use libgmp for arbitrary precision arithmetic" off

.include <bsd.port.pre.mk>

.if ${OSVERSION} >= 700042
.if ${ARCH} == "amd64" || ${ARCH} == "sparc64"
BROKEN=		Does not compile with GCC 4.2
.endif
.endif

.if defined(WITH_GMP)
LIB_DEPENDS+=	gmp.7:${PORTSDIR}/math/libgmp4
CONFIGURE_ARGS+=	--with-numlib=gmp
PLIST_SUB+=	GMP="" NOGMP="@comment "
CPPFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-L${LOCALBASE}/lib
.else
CONFIGURE_ARGS+=	--with-numlib=native
PLIST_SUB+=	GMP="@comment " NOGMP=""
.endif

.if defined(WITH_X11)
USE_GL=		yes
CONFIGURE_ARGS+=	--with-x
PLIST_SUB+=	X11=""
CPPFLAGS+=	-I${LOCALBASE}/include
LDFLAGS+=	-L${LOCALBASE}/lib
.else
CONFIGURE_ARGS+=	--without-x
PLIST_SUB+=	X11="@comment "
.endif

test:	build
	@cd ${WRKSRC}/manmake && ${GMAKE} wester-1994.ys
	@cd ${WRKSRC}/tests && ${GMAKE} check

.include <bsd.port.post.mk>