aboutsummaryrefslogtreecommitdiffstats
path: root/graphics/ray++/Makefile
blob: 1f208ee2ab42b1e3148af389cf32fc76d0314019 (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
34
35
36
37
38
39
40
# ex:ts=8
# New ports collection makefile for:    ray++
# Date created:         Dec 6, 2001
# Whom:             ijliao
#
# $FreeBSD$
#

PORTNAME=   ray++
PORTVERSION=    0.4
PORTREVISION=   1
CATEGORIES= graphics
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= raypp

MAINTAINER= ports@FreeBSD.org
COMMENT=    A collection of C++ classes needed for ray tracing

GNU_CONFIGURE=  yes
CONFIGURE_ARGS= --enable-shared --enable-fast-handles
USE_GMAKE=  yes
INSTALLS_SHLIB= yes
USE_REINPLACE=  yes

.include <bsd.port.pre.mk>

.if ${ARCH} != "i386"
BROKEN=     "Does not compile on !i386"
.endif

post-patch:
    ${REINPLACE_CMD} -e "s,-pedantic,," ${WRKSRC}/configure

do-install:
    @(cd ${WRKSRC} ; \
      ${INSTALL_DATA} ray++.so ${PREFIX}/lib ; \
      ${FIND} * -name "*.h" | ${CPIO} -pdum ${PREFIX}/include/${PORTNAME}; \
      ${CHMOD} -R 755 ${PREFIX}/include/${PORTNAME} )

.include <bsd.port.post.mk>