1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-18 08:02:48 +00:00
freebsd-ports/cad/pdnmesh/Makefile
Steve Wills fb44dca45d Fix math/openblas and bump dependent ports
* Fix build on i386 [1]
* Fix science/code_saturne build with new openblas [2]
* Avoid installing private headers [3]
* Prevent build from optimizing for host by correcting build confg [4]
* Bump portrevision of dependent ports [5]

This is correcting issues from r523749 [1][2][4] and r515970 [3]

PR:		231371
Reported by:	build cluster [1]
Reported by:	Dima Pasechnik <dimpase+freebsd@gmail.com> [2]
Reported by:	many [5]
Reviewed by:	mat, bapt
Approved by:	implicit, since this is a build fix
2020-01-30 14:17:44 +00:00

53 lines
1.4 KiB
Makefile

# Created by: Sarod Yatawatta <sarod@cs.pdn.ac.lk>
# $FreeBSD$
PORTNAME= pdnmesh
PORTVERSION= 0.2.2
PORTREVISION= 18
CATEGORIES= cad
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}-source/${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Mesh generator and solver for Finite Element problems
LICENSE= GPLv2+
LIB_DEPENDS= libgtkglext-x11-1.0.so:x11-toolkits/gtkglext
OPTIONS_DEFINE= ATLAS DOCS EXAMPLES
ATLAS_DESC= Enable ATLAS support
USES= compiler:c++11-lang fortran gl gnome pkgconfig
USE_GL= glu
USE_GNOME= gtk20
GNU_CONFIGURE= yes
LDFLAGS+= -lm
DESKTOP_ENTRIES="pdnMesh" "${COMMENT}" "" "${PORTNAME}" "" true
ATLAS_USES= blaslapack:atlas
ATLAS_CONFIGURE_ON=--with-blas=cblas --with-lapack=alapack
ATLAS_USES_OFF= blaslapack
ATLAS_CONFIGURE_OFF=--with-blas=blas --with-lapack=lapack
post-patch:
@${REINPLACE_CMD} -e \
'/^SUBDIRS/s|doc|| ; \
s|^pkgdata_DATA|#pkgdata_DATA|' ${WRKSRC}/Makefile.in
post-install-DOCS-on:
${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC} \
&& ${INSTALL_DATA} ChangeLog ${STAGEDIR}${DOCSDIR} \
&& ${INSTALL_DATA} README ${STAGEDIR}${DOCSDIR})
${MKDIR} ${STAGEDIR}${DOCSDIR}/tutorial
(cd ${WRKSRC}/doc/tutorial \
&& ${INSTALL_DATA} README ${STAGEDIR}${DOCSDIR}/tutorial \
&& ${INSTALL_DATA} tutorial.* ${STAGEDIR}${DOCSDIR}/tutorial)
post-install-EXAMPLES-on:
(cd ${WRKSRC}/doc/examples && \
${COPYTREE_SHARE} . ${STAGEDIR}${EXAMPLESDIR})
${RM} ${STAGEDIR}${EXAMPLESDIR}/Makefile*
.include <bsd.port.mk>