1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-27 00:57:50 +00:00
freebsd-ports/net/pvm++/Makefile
Gerald Pfeifer f124095f7d Unbreak this port by applying the real patchset that was submitted [1] which
- adds USE_GCC since that's how libpvm3.a (a dependency) was built;
- renames namespace Pvm::Internal to avoid conflict with class Pvm::Internal;
- adds #include <stdlib.h> where required.

While we are at it, migrate from USE_GMAKE to USES=gmake.

PR:		182136 [1]
Submitted by:	Christoph Moench-Tegeder <cmt@burggraben.net> [1]
Pointyhat to:	gerald [1]
2013-12-08 19:39:27 +00:00

32 lines
706 B
Makefile

# Created by: Ying-Chieh Liao <ijliao@FreeBSD.org>
# $FreeBSD$
PORTNAME= pvm++
PORTVERSION= 0.6.0
PORTREVISION= 4
CATEGORIES= net parallel
MASTER_SITES= SF/pvm-plus-plus/pvm-plus-plus/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= A C++-Library for PVM
BUILD_DEPENDS= ${LOCALBASE}/lib/libpvm3.a:${PORTSDIR}/net/pvm
USES= gmake
USE_AUTOTOOLS= libtool
USE_GCC= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --with-pvm-incs=${LOCALBASE}/include \
--with-pvm-libs=${LOCALBASE}/lib
USE_LDCONFIG= yes
NO_STAGE= 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>