mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
5e5841f2cd
PORTREVISION or PORTEPOCH are defined. Most of these Makefiles were defining DISTNAME and WRKSRC (and sometimes EXTRACT_SUFX) -- change those to define DISTFILES only. Also, some of the WRKSRC lines were not even necessary, as they were defining it to the default value. Instigated by: Peter Pentchev <roam@orbitel.bg> and kris
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
# New ports collection makefile for: femlab
|
|
# Date created: 19 June 1997
|
|
# Whom: Pedro Giffuni
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= femlab
|
|
PORTVERSION= 1.1
|
|
CATEGORIES= math cad
|
|
MASTER_SITES= ftp://ftp.md.chalmers.se/pub/Femlab/ \
|
|
ftp://ftp.ifs.hr/pub/SciUtil/
|
|
DISTFILES= femlab-2d-v${PORTVERSION}.tar.gz
|
|
|
|
MAINTAINER= giffunip@asme.org
|
|
|
|
BUILD_DEPENDS= ${X11BASE}/lib/libsx.a:${PORTSDIR}/x11/libsx
|
|
|
|
USE_X_PREFIX= yes
|
|
|
|
FEMLAB_HOME= ${PREFIX}/lib/X11/femlab
|
|
|
|
do-install:
|
|
${MKDIR} ${FEMLAB_HOME}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/source/femlab ${FEMLAB_HOME}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fsource/meshgen ${FEMLAB_HOME}/bin
|
|
${INSTALL_PROGRAM} ${WRKSRC}/fsource/poisson ${FEMLAB_HOME}/bin
|
|
${MKDIR} ${FEMLAB_HOME}/config
|
|
${INSTALL_DATA} ${WRKSRC}/config/modules ${FEMLAB_HOME}/config
|
|
${SED} -e "s|@@FEMLAB_HOME@@|${FEMLAB_HOME}|" <${FILESDIR}/femlab.sh >${PREFIX}/bin/femlab
|
|
${CHMOD} +x ${PREFIX}/bin/femlab
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
${MKDIR} ${PREFIX}/share/examples/femlab
|
|
${INSTALL_MAN} ${WRKSRC}/examples/*.fem ${PREFIX}/share/examples/femlab
|
|
${MKDIR} ${PREFIX}/share/doc/femlab
|
|
${INSTALL_MAN} ${WRKSRC}/docs/manual.dvi ${PREFIX}/share/doc/femlab
|
|
${INSTALL_MAN} ${WRKSRC}/docs/manual.ps ${PREFIX}/share/doc/femlab
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|