1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-01 01:17:02 +00:00
freebsd-ports/devel/zthread/Makefile
Pawel Pekala 4742c4fa20 - Add staging support
- Remove leading article from COMMENT
- Convert to USES=gmake
- Remove Author line from pkg-descr
2014-04-04 15:55:40 +00:00

39 lines
951 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= Platform-independent object-oriented C++ threading library
USE_AUTOTOOLS= libtool
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --without-ftime --disable-static
USES= gmake
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
post-extract:
@${FIND} ${WRKSRC} -name CVS -type d -delete
post-patch:
@${FIND} ${WRKSRC} \( -name '*.orig' -or -name '*.swp' \) -delete
@${REINPLACE_CMD} -E 's,(bin|data|inlude)dir\),DESTDIR)$$(&,' \
${WRKSRC}/Makefile.in
post-install:
@${MKDIR} ${STAGEDIR}${DOCSDIR}
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR})
.include <bsd.port.mk>