mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
090059a210
The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav)
35 lines
1015 B
Makefile
35 lines
1015 B
Makefile
# New ports collection makefile for: ParMETIS
|
|
# Date created: 19 May 99
|
|
# Whom: Eoin Lawless (eoin@maths.tcd.ie)
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= ParMetis
|
|
PORTVERSION= 3.1
|
|
PORTREVISION= 4
|
|
CATEGORIES= math parallel
|
|
MASTER_SITES= http://glaros.dtc.umn.edu/gkhome/fetch/sw/parmetis/
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A package for parallel (mpi) unstructured graph partitioning
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/mpich2/bin/mpirun:${PORTSDIR}/net/mpich2
|
|
BUILD_DEPENDS= ${LOCALBASE}/mpich2/bin/mpicc:${PORTSDIR}/net/mpich2
|
|
|
|
ALL_TARGET=
|
|
|
|
do-install:
|
|
@${MKDIR} $(PREFIX)/lib/parmetis
|
|
$(INSTALL_DATA) $(WRKSRC)/libmetis.a $(PREFIX)/lib/parmetis
|
|
$(INSTALL_DATA) $(WRKSRC)/libparmetis.a $(PREFIX)/lib/parmetis
|
|
@${MKDIR} $(PREFIX)/include/parmetis
|
|
$(INSTALL_DATA) $(WRKSRC)/parmetis.h $(PREFIX)/include/parmetis
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
$(INSTALL_DATA) ${WRKSRC}/Manual/manual.ps ${DOCSDIR}
|
|
$(INSTALL_DATA) ${WRKSRC}/Manual/manual.pdf ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|