mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-14 23:46:10 +00:00
21b71c58c2
providing a flexible platform for the evaluation and comparison of network routing algorithms.
44 lines
1.1 KiB
Makefile
44 lines
1.1 KiB
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: MaRS
|
|
# Version required: 2.1
|
|
# Date created: Mon Nov 18, 1996
|
|
# Whom: David O'Brien (obrien@cs.ucdavis.edu)
|
|
#
|
|
# $Id: Makefile,v 1.1.1.1 1996/08/09 04:17:16 asami Exp $
|
|
#
|
|
|
|
DISTNAME= MaRS-2.1
|
|
CATEGORIES= cad
|
|
DISTSITE= ftp://ftp.cs.umd.edu/pub/sdag/MaRS/
|
|
MASTER_SITES= ${DISTSITE}
|
|
|
|
MAINTAINER= obrien@cs.ucdavis.edu
|
|
|
|
NO_WRKSUBDIR= yes
|
|
.if defined(WITH_X) && (${WITH_X} == NO || ${WITH_X} == no)
|
|
MAKEFILE= Makefile.NoX
|
|
.else
|
|
MAKEFILE= Makefile.SimpleX
|
|
.endif
|
|
ALL_TARGET= depend mars
|
|
MAN1= mars.1
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/mars ${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/man/man1/mars.1 ${PREFIX}/man/man1
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${PREFIX}/share/doc/mars \
|
|
&& chmod a+rx ${PREFIX}/share/doc/mars
|
|
@[ -f ${DISTDIR}/MaRS-2-doc.tar.gz ] || \
|
|
${FETCH_CMD} -o /${DISTDIR}/MaRS-2-doc.tar.gz \
|
|
${DISTSITE}MaRS-2-doc.tar.gz
|
|
@(cd ${PREFIX}/share/doc ; \
|
|
${EXTRACT_CMD} xfpz /${DISTDIR}/MaRS-2-doc.tar.gz ; \
|
|
[ -d mars ] && ${RM} -rf mars; \
|
|
/bin/mv doc mars )
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|