freebsd-ports/devel/boehm-gc-threaded/Makefile
Stanislav Sedov 422bce3414 - Return my ports back to the pool. I was unable to make any fixes to
my ports in the past 3 weeks while ports were broken on any 10.x
  machines, which means I'm unable to maintain them.  So let people know
  that there's no available support for them until things are back to
  normal (which also means that anyone with spare time will be able
  to fix them without getting approval).
2011-10-24 03:33:20 +00:00

73 lines
2 KiB
Makefile

# New ports collection makefile for: boehm-gc-redirect
# Date created: 12/17/2009
# Whom: stas
#
# $FreeBSD$
#
PORTNAME= boehm-gc
PORTVERSION= 7.1
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://www.hpl.hp.com/personal/Hans_Boehm/gc/gc_source/
PKGNAMESUFFIX= -${GC_VARIANT}
DISTNAME= gc-${PORTVERSION:S/.a/alpha/}
MAINTAINER= ports@FreeBSD.org
COMMENT= Garbage collection and memory leak detection for C and C++
RUN_DEPENDS= ${PREFIX}/include/gc/gc.h:${PORTSDIR}/devel/boehm-gc
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
CONFIGURE_ARGS= --enable-cplusplus --disable-static --enable-threads=posix \
--enable-thread-local-alloc
CONFIGURE_ENV= CFLAGSS="${CFLAGS} LIBS="${LIBS}
MAKE_JOBS_UNSAFE= yes
INSTLIBS= cord gc gccpp
GC_VARIANT= threaded
SOVER= 1
OPTIONS= PARALLEL_MARK "Parallel-thread marking (faster for SMP)" off \
FULLDEBUG "Debugging support (see documentation)" off
PLIST_FILES= ${INSTLIBS:S,^,lib/lib,g:S,$,-${GC_VARIANT}.so.${SOVER},g} \
${INSTLIBS:S,^,lib/lib,g:S,$,-${GC_VARIANT}.so,g} \
libdata/pkgconfig/bdw-gc-${GC_VARIANT}.pc
.include <bsd.port.pre.mk>
.if ${ARCH} == "ia64"
BROKEN= Does not compile on ia64
.endif
.if defined(WITH_PARALLEL_MARK)
CONFIGURE_ARGS+= --enable-parallel-mark
.endif
.if defined(WITH_FULLDEBUG)
CONFIGURE_ARGS+= --enable-gc-debug
PKGNAMESUFFIX:= ${PKGNAMESUFFIX}+fulldebug
.endif
post-patch:
${REINPLACE_CMD} -E -e 's,libgc\.la,libgc-${GC_VARIANT}.la,g' \
-e 's,libgccpp\.la,libgccpp-${GC_VARIANT}.la,g' \
-e 's,libcord\.la,libcord-${GC_VARIANT}.la,g' \
${WRKSRC}/Makefile.in
${REINPLACE_CMD} -e 's,-lgc,-lgc-${GC_VARIANT},' ${WRKSRC}/bdw-gc.pc.in
do-install:
.for LIB in ${INSTLIBS}
${INSTALL_DATA} ${WRKSRC}/.libs/lib${LIB}-${GC_VARIANT}.so.${SOVER} \
${PREFIX}/lib/lib${LIB}-${GC_VARIANT}.so.${SOVER}
@(cd ${PREFIX}/lib && ${LN} -s lib${LIB}-${GC_VARIANT}.so.${SOVER} \
lib${LIB}-${GC_VARIANT}.so)
.endfor
${INSTALL_DATA} ${WRKSRC}/bdw-gc.pc \
${PREFIX}/libdata/pkgconfig/bdw-gc-${GC_VARIANT}.pc
test: build
cd ${WRKSRC} && ${MAKE} check
.include <bsd.port.post.mk>