1997-11-17 10:48:18 +01:00
|
|
|
# New ports collection makefile for: atlast
|
2005-12-21 20:49:43 +01:00
|
|
|
# Date created: 26 Aug 97
|
|
|
|
# Whom: Pedro Giffuni
|
1997-11-17 10:48:18 +01:00
|
|
|
#
|
1999-08-25 08:35:40 +02:00
|
|
|
# $FreeBSD$
|
1997-11-17 10:48:18 +01:00
|
|
|
#
|
|
|
|
|
2000-04-12 08:21:15 +02:00
|
|
|
PORTNAME= atlast
|
2005-12-21 20:49:43 +01:00
|
|
|
PORTVERSION= 1.1
|
1997-11-17 10:48:18 +01:00
|
|
|
CATEGORIES= lang
|
1999-11-03 07:34:36 +01:00
|
|
|
MASTER_SITES= http://www.fourmilab.ch/atlast/ \
|
|
|
|
http://www.fourmilab.to/atlast/
|
1997-11-17 10:48:18 +01:00
|
|
|
|
2006-11-07 16:37:06 +01:00
|
|
|
MAINTAINER= laszlof@FreeBSD.org
|
2003-02-20 20:00:52 +01:00
|
|
|
COMMENT= Autodesk Threaded Language Application System Toolkit
|
1997-11-17 10:48:18 +01:00
|
|
|
|
2005-12-21 20:49:43 +01:00
|
|
|
SRC= atlast.c atlmain.c
|
|
|
|
DEFINES= -DMEMSTAT -DALIGNMENT -DEXPORT
|
|
|
|
LDFLAGS+= -lm
|
2005-04-19 23:01:14 +02:00
|
|
|
|
|
|
|
PLIST_FILES= bin/atlast
|
|
|
|
PORTDOCS= atlast.ps atlast.rtf
|
|
|
|
|
2005-12-21 20:49:43 +01:00
|
|
|
do-build:
|
|
|
|
.for f in ${SRC}
|
|
|
|
${CC} ${CFLAGS} ${DEFINES} -c ${WRKSRC}/${f} -o ${WRKSRC}/${f:C/\.c$/.o/}
|
|
|
|
.endfor
|
|
|
|
${CC} ${LDFLAGS} ${SRC:C/(.*)\.c$/${WRKSRC}\/\1.o/} \
|
|
|
|
-o ${WRKSRC}/${PORTNAME}
|
|
|
|
|
1997-11-17 10:48:18 +01:00
|
|
|
do-install:
|
2005-12-21 20:49:43 +01:00
|
|
|
${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
1997-11-17 10:48:18 +01:00
|
|
|
.if !defined(NOPORTDOCS)
|
2005-12-21 20:49:43 +01:00
|
|
|
${MKDIR} ${DOCSDIR}
|
|
|
|
.for f in ${PORTDOCS}
|
|
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR}
|
|
|
|
.endfor
|
1997-11-17 10:48:18 +01:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.include <bsd.port.mk>
|