mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-23 00:43:28 +00:00
60 lines
1.3 KiB
Makefile
60 lines
1.3 KiB
Makefile
# New ports collection makefile for: GNU Pth
|
|
# Date Created: 23 May 1999
|
|
# Whom: Ralf S. Engelschall <rse@gnu.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pth
|
|
PORTVERSION= 2.0.7
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_GNU}
|
|
MASTER_SITE_SUBDIR= pth
|
|
PKGNAMESUFFIX?= # empty
|
|
|
|
MAINTAINER= vd@FreeBSD.org
|
|
COMMENT= GNU Portable Threads
|
|
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
USE_LDCONFIG= ${PREFIX}/lib/pth
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --enable-optimize \
|
|
--enable-batch \
|
|
--includedir="${PREFIX}/include/pth" \
|
|
--libdir="${PREFIX}/lib/pth"
|
|
|
|
MAN1= pth-config.1
|
|
MAN3= pth.3
|
|
|
|
OPTIONS= OPTIMIZED_CFLAGS "Build with optimized CFLAGS" on
|
|
|
|
CONFLICTS?= pth-hard-2.*
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PKGNAMESUFFIX} == "-hard"
|
|
CONFIGURE_ARGS+= --enable-syscall-hard --disable-syscall-soft
|
|
PLIST_SUB= PTHREAD="@comment "
|
|
.else
|
|
CONFIGURE_ARGS+= --enable-syscall-soft --enable-pthread
|
|
PLIST_SUB= PTHREAD=""
|
|
MAN1+= pthread-config.1
|
|
MAN3+= pthread.3
|
|
.endif
|
|
|
|
post-patch:
|
|
.if defined(WITHOUT_OPTIMIZED_CFLAGS)
|
|
${REINPLACE_CMD} -e \
|
|
's|-funroll-loops -fstrength-reduce -fomit-frame-pointer -ffast-math||' \
|
|
${WRKSRC}/configure
|
|
.endif
|
|
|
|
post-build:
|
|
@${ECHO_MSG} "===> Use 'make test' to run a quick test suite."
|
|
|
|
test: build
|
|
cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${MAKE_ARGS} test
|
|
|
|
.include <bsd.port.post.mk>
|