aboutsummaryrefslogtreecommitdiffstats
path: root/science/InsightToolkit/Makefile
blob: 8353481dbd83dd3b9f2a27e4ced443d37e1e7950 (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
41
42
43
44
45
46
# New ports collection Makefile for:   Insight Toolkit
# Date created:        10 Aug 2006
# Whom:                bacon@smithers.neuro.mcw.edu
#
# $FreeBSD$
#

PORTNAME=   InsightToolkit
PORTVERSION=    2.8.1
PORTREVISION=   2
CATEGORIES= science biology
MASTER_SITES=   SF/itk/itk/2.8

MAINTAINER= jwbacon@tds.net
COMMENT=    Insight Toolkit

OPTIONS=    EXAMPLES "Build examples (very time consuming)" off \
        TESTING  "Build testing programs (very time consuming)" off

USE_LDCONFIG=   ${PREFIX}/lib/InsightToolkit
NO_PACKAGE= License does not allow redistribution of binaries

USE_CMAKE=  yes
CMAKE_ARGS+=    -DBUILD_SHARED_LIBS:BOOL=ON

SUB_FILES=  pkg-message

.include <bsd.port.pre.mk>

.if !defined(WITH_EXAMPLES)
CMAKE_ARGS+=    "-DBUILD_EXAMPLES:BOOL=OFF"
.endif

.if !defined(WITH_TESTING)
CMAKE_ARGS+=    "-DBUILD_TESTING:BOOL=OFF"
.endif

post-install:
    @for lib in ${PREFIX}/lib/InsightToolkit/*.so ; do \
        ${LN} -s $$lib.2.8.0 $$lib.2 ; \
    done
    @${ECHO_CMD}
    @${CAT} ${PKGMESSAGE}
    @${ECHO_CMD}

.include <bsd.port.post.mk>