blob: 557c4b8a70867d37b97b24f0e4217377c843a0a1 (
plain)
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
|
# ex:ts=8
# New ports collection makefile for: aleph
# Date created: Mar 7, 2001
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
#
# $FreeBSD$
#
PORTNAME= afnix
PORTVERSION= 1.0.1
CATEGORIES= lang
MASTER_SITES= http://www.afnix.org/ftp/%SUBDIR%/
MASTER_SITE_SUBDIR= ${PORTNAME}-${PORTVERSION:S,.,-,g}
DISTNAME= ${PORTNAME}-src-${PORTVERSION:S,.,-,g}
EXTRACT_SUFX= .tgz
MAINTAINER= johans@stack.nl
COMMENT= A multi-threaded functional programming language
USE_GMAKE= yes
INSTALLS_SHLIB= yes
PLIST_SUB= PORTVER=${PORTVERSION:R}
MAN1= afnix.1 axc.1 axd.1 axl.1
.include <bsd.port.pre.mk>
.if ${OSVERSION} >= 600000 && ${ARCH} == "sparc64"
BROKEN= "Does not compile on sparc64 FreeBSD >= 6.x"
.endif
do-configure:
@${WRKSRC}/cnf/bin/${PORTNAME}-setup -o
post-install:
@${STRIP_CMD} ${PREFIX}/bin/${PORTNAME}
.include <bsd.port.post.mk>
|