aboutsummaryrefslogtreecommitdiffstats
path: root/devel/boehm-gc/Makefile
blob: e6eebe4ee0ed879be14e14c7e1c38de8216b8c94 (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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
# New ports collection makefile for:    boehm-gc
# Date created:     15 November 1996
# Whom:         Mike McGaughey <mmcg@cs.monash.edu.au>
#
# $FreeBSD$
#

PORTNAME=   boehm-gc
PORTVERSION=    6.2
PORTREVISION=   2
CATEGORIES= devel
MASTER_SITES=   http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/
DISTNAME=   gc${PORTVERSION:S/.a/alpha/}

MAINTAINER= nobutaka@FreeBSD.org
COMMENT=    Garbage collection and memory leak detection for C and C++

USE_LIBTOOL_VER=    13
USE_GNOME=  lthack
USE_REINPLACE=  yes
HAS_CONFIGURE=  yes
INSTALLS_SHLIB= yes
CONFIGURE_ARGS= --prefix=${PREFIX} --enable-cplusplus
OPTIONS=    REDIRECT "Define malloc(3)-family replacements" off \
        FULLDEBUG "full-debug support (see documentation)" off \
        THREADING "POSIX thread support" off \
        PARALLEL_MARK "Parallel-thread marking (faster for SMP)" on

.include <bsd.port.pre.mk>

.if defined(WITH_THREADING) && !defined(WITHOUT_THREADING)
CONFIGURE_ARGS+=    --enable-threads=posix --enable-thread-local-alloc
.if defined(WITH_PARALLEL_MARK) && !defined(WITHOUT_PARALLEL_MARK)
CONFIGURE_ARGS+=    --enable-parallel-mark
.endif
PKGNAMESUFFIX=      +threaded
.else
CONFIGURE_ARGS+=    --disable-threads
PKGNAMESUFFIX=      # empty
.endif
.if defined(WITH_REDIRECT) && !defined(WITHOUT_REDIRECT)
CONFIGURE_ARGS+=    --enable-redirect-malloc
PKGNAMESUFFIX:=     ${PKGNAMESUFFIX}+redirect
.endif
.if defined(WITH_FULLDEBUG) && !defined(WITHOUT_FULLDEBUG)
CONFIGURE_ARGS+=    --enable-full-debug
PKGNAMESUFFIX:=     ${PKGNAMESUFFIX}+fulldebug
.endif

MAN3=       gc.3

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

post-patch:
    @${REINPLACE_CMD} -e "s|%%PREFIX%%|${PREFIX}|g" ${WRKSRC}/doc/gc.man

post-install:
    ${INSTALL_MAN} ${WRKSRC}/doc/gc.man ${PREFIX}/man/man3/gc.3

.include <bsd.port.post.mk>