aboutsummaryrefslogtreecommitdiff
path: root/lang/scheme48/Makefile
blob: 4619aedfeda68040b42437068bbf38b1122a06e5 (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
# Created by: jmacd
# $FreeBSD$

PORTNAME=	scheme48
PORTVERSION=	1.9
CATEGORIES=	lang scheme
MASTER_SITES=	http://www.s48.org/${PORTVERSION}/
EXTRACT_SUFX=	.tgz

MAINTAINER=	lichray@gmail.com
COMMENT=	The Scheme Underground's implementation of R5RS

LICENSE=	BSD

CONFLICTS=	scsh-[0-9]*

ALL_TARGET=	enough
USE_GMAKE=	yes
GNU_CONFIGURE=	yes

MAN1=		scheme48.1

NO_STAGE=	yes
.include <bsd.port.options.mk>

PLIST_SUB+=	VER=${PORTVERSION}

post-patch:
	@${REINPLACE_CMD} \
		-e 's/-mthreads/${PTHREAD_LIBS}/' \
		-e 's/-mt/${PTHREAD_LIBS}/' \
		-e 's/-munaligned-double//' \
		${WRKSRC}/configure
	@${REINPLACE_CMD} \
		-e '/INSTALL.*COPYING/d' \
		${WRKSRC}/Makefile.in
.if ${PORT_OPTIONS:MDOCS}
USE_TEX=        yes
CONFIGURE_ARGS+=--docdir=${DOCSDIR}
.else
	@${REINPLACE_CMD} \
		-e 's/install-doc$$//' \
		-e 's/go doc$$/go/' \
		${WRKSRC}/Makefile.in
.endif

test:
	cd ${WRKSRC}; ${MAKE} check

.include <bsd.port.mk>