18c9d923c2
MeshDev is a mesh comparison software. It accepts two meshes as input and computes the geometrical deviation between the two meshes. It return numerical values and can optionaly generate visual results (with a pseudo-colored mesh corresponding to the measured deviation) in OpenInventor format. This port features a patch (by myself) to read binary and ASCII STL files. This feature was removed in the transition from version 0.4 -> 0.5. Distfiles are unfetchable from sourceforce. For this reason, they're hosted on our infrastructure. WWW: http://meshdev.sourceforge.net/
28 lines
595 B
Makefile
28 lines
595 B
Makefile
# New ports collection Makefile for: meshdev
|
|
# Date created: 6 February 2012
|
|
# Whom: gahr
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= meshdev
|
|
PORTVERSION= 0.5
|
|
CATEGORIES= cad
|
|
MASTER_SITES= ${MASTER_SITE_LOCAL}/gahr/ \
|
|
http://people.freebsd.org/~gahr/distfiles/
|
|
|
|
MAINTAINER= gahr@FreeBSD.org
|
|
COMMENT= A mesh comparison software
|
|
|
|
BUILD_WRKSRC= ${WRKSRC}/build
|
|
INSTALL_WRKSRC= ${WRKSRC}/bin
|
|
|
|
MAKEFILE= Makefile.release.gcc
|
|
|
|
PLIST_FILES= bin/${PORTNAME}
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/${PORTNAME} ${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|