3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
36 lines
851 B
Makefile
36 lines
851 B
Makefile
# ex:ts=8
|
|
# New ports collection makefile for: pvm++
|
|
# Date created: Jan 29, 2001
|
|
# Whom: Ying-Chieh Liao <ijliao@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pvm++
|
|
PORTVERSION= 0.6.0
|
|
PORTREVISION= 2
|
|
CATEGORIES= net parallel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
|
|
http://goethe.ira.uka.de/~wilhelmi/pvm++/
|
|
MASTER_SITE_SUBDIR= ${PORTNAME:S:+:-plus:g}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= A C++-Library for PVM
|
|
|
|
BUILD_DEPENDS= ${LOCALBASE}/lib/libpvm3.a:${PORTSDIR}/net/pvm
|
|
|
|
USE_GMAKE= yes
|
|
USE_LIBTOOL_VER=13
|
|
CONFIGURE_ARGS= --with-pvm-incs=${LOCALBASE}/include \
|
|
--with-pvm-libs=${LOCALBASE}/lib
|
|
INSTALLS_SHLIB= yes
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.html ${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.png ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|