1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-30 05:40:06 +00:00
freebsd-ports/french/med/Makefile
Joe Marcus Clarke 9e5632dd66 Apply a big libtool patch to allow porters to use the libtool installed by
the libtoolX ports instead of the one included with each port.  Ports that
set USE_LIBTOOL_VER=X will now use the ports version of libtool instead of
the included version.  To restore previous behavior, use the new macro,
USE_INC_LIBTOOL_VER.  Both macros accept the same argument: a libtool version.

For example, to use the ports version of libtool-1.5, add the following to
your Makefile:

USE_LIBTOOL_VER=        15

To use the included version of libtool with extra hacks provided by
libtool-1.5, add the following to your Makefile:

USE_INC_LIBTOOL_VER=    15

With this change, ports that had to add additional libtool hacks to prevent
.la files from being installed or to fix certain threading issues can now
delete those hacks (after appropriate testing, of course).

PR:		63944
Based on work by:eik and marcus
Approved by:	ade (autotools maintainer)
Tested by:	kris on pointyhat
Bound to be hidden problems:	You bet
2004-07-09 17:43:11 +00:00

56 lines
1.3 KiB
Makefile

# New ports collection makefile for: med
# Date created: Thu Jun 26 2003
# Whom: thierry@pompo.net
#
# $FreeBSD$
#
PORTNAME= med
PORTVERSION= 2.1.5
PORTREVISION= 1
CATEGORIES= french cad converters
MASTER_SITES= http://www.code-aster.org/FICHIERS/
DISTNAME= ${PORTNAME}hdf-src-${PORTVERSION}-1.noarch
EXTRACT_SUFX= .tar
MAINTAINER= ports@FreeBSD.org
COMMENT= Modélisation et Échanges de Données
BUILD_DEPENDS= ${LOCALBASE}/lib/libhdf5.a:${PORTSDIR}/science/hdf5
EXTRACT_CMD= ${TAR}
EXTRACT_BEFORE_ARGS= -xf
EXTRACT_AFTER_ARGS= # empty
CONFIGURE_ARGS= --prefix=${PREFIX} --disable-shared
CONFIGURE_ENV= HDF5HOME=${LOCALBASE}
USE_INC_LIBTOOL_VER= 13
USE_GMAKE= yes
USE_REINPLACE= yes
WRKSRC= ${WRKDIR}/${PORTNAME}${PORTVERSION}.src
post-extract:
@(cd ${WRKDIR} && \
${TAR} xfz ${WRKDIR}/${PORTNAME}${PORTVERSION}.src.tar.gz)
pre-configure:
@${REINPLACE_CMD} -e 's|%%PTHREAD_LIBS%%|${PTHREAD_LIBS}|g' \
${WRKSRC}/config/commence.in
@${REINPLACE_CMD} -e 's|@PTHREAD_LIBS@|${PTHREAD_LIBS}|' \
-e 's|@PTHREAD_CFLAGS@|${PTHREAD_CFLAGS}|' \
${WRKSRC}/tests/Makefile.in
pre-install:
@${MKDIR} ${EXAMPLESDIR}
post-install:
.if defined(NOPORTDOCS)
@${RM} -rf ${EXAMPLESDIR}
.else
@${MKDIR} ${DOCSDIR}
@${CP} -R ${WRKSRC}/doc/html ${DOCSDIR}
@${ECHO_MSG} "===> Documentation installed in ${DOCSDIR}."
.endif
.include <bsd.port.mk>