blob: 37b57460ec9130f887597f306592a793a184b9b6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
# New ports collection makefile for: stl2pov
# Date created: 9 May 2005
# Whom: rsmith@xs4all.nl
#
# $FreeBSD$
PORTNAME= stl2pov
PORTVERSION= 2.4.3
CATEGORIES= graphics
MASTER_SITES= http://www.xs4all.nl/~rsmith/software/
MAINTAINER= rsmith@xs4all.nl
COMMENT= Converts STL models to POV-Ray meshes
PLIST_FILES= bin/stl2pov
MAKE_JOBS_SAFE= yes
MAN1= stl2pov.1
MANCOMPRESSED= yes
.if defined(NOPORTDOCS)
MAKE_ENV= NOPORTDOCS=yes
.else
PORTDOCS= LICENSE README INSTALL
.endif
post-patch:
@${REINPLACE_CMD} -e \
's|-pipe||; s|-fmerge-constants||; s|--fast-math||' \
${WRKSRC}/Makefile
.include <bsd.port.mk>
|