1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-25 00:51:21 +00:00
freebsd-ports/devel/zthread/Makefile
Greg Larkin 43b0eb0cb0 [Errno 11] Resource Temporarily Unavailable
Reassigning my ports back to the pool with the hope of freeing up
to do more FreeBSD work in the future.

Submitted by:	glarkin
2013-12-16 18:24:49 +00:00

42 lines
927 B
Makefile

# Created by: pvh@egenetics.com
# $FreeBSD$
PORTNAME= zthread
PORTVERSION= 2.3.2
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= SF/${PORTNAME}/ZThread/${PORTVERSION}
DISTNAME= ZThread-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= A platform-independent object-oriented C++ threading library
USE_AUTOTOOLS= libtool
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --without-ftime --disable-static
USE_GMAKE= yes
MAKE_ARGS+= INSTALL_PROGRAM="${INSTALL_SCRIPT}"
MAKE_ENV+= SED=sed # req'd for LIBTOOL?!
USE_LDCONFIG= yes
OPTIONS_DEFINE= DOCS
PORTDOCS= AUTHORS ChangeLog NEWS README TODO
NO_STAGE= yes
post-extract:
@${FIND} ${WRKSRC} -name CVS -type d -delete
post-patch:
@${FIND} ${WRKSRC} \( -name '*.orig' -or -name '*.swp' \) -delete
.include <bsd.port.options.mk>
post-install:
.if ${PORT_OPTIONS:MDOCS}
@${INSTALL} -d ${DOCSDIR}
@cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
.endif
.include <bsd.port.mk>