mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
40 lines
917 B
Makefile
40 lines
917 B
Makefile
# Created by: bremner@unb.ca
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= nauty
|
|
PORTVERSION= 2.4r2
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://cs.anu.edu.au/~bdm/nauty/ \
|
|
http://www.c-s.li/ports/
|
|
DISTNAME= ${PORTNAME}24r2
|
|
|
|
MAINTAINER= cs@FreeBSD.org
|
|
COMMENT= Brendan McKay's graph isomorphism tester
|
|
|
|
WRKSRC= ${WRKDIR}/${PORTNAME}24r2
|
|
MAKEFILE= makefile
|
|
USE_CSTD= gnu89
|
|
GNU_CONFIGURE= YES
|
|
PORTDOCS= nug.pdf
|
|
|
|
NO_STAGE= yes
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|gcc|${CC}|; s|-O4 -march=i686|${CFLAGS}|' \
|
|
${WRKSRC}/${MAKEFILE}
|
|
|
|
do-install:
|
|
cd ${WRKSRC}; ${INSTALL_PROGRAM} dreadnaut copyg listg labelg dretog \
|
|
amtog geng complg shortg showg NRswitchg biplabg addedgeg \
|
|
deledgeg countg pickg genrang newedgeg catg genbg directg \
|
|
multig planarg gentourng ${PREFIX}/bin
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${DOCSDIR}
|
|
.for i in ${PORTDOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${i} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|