mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-25 04:43:33 +00:00
757d017bcb
- s/INSTALLS_SHLIB/USE_LDCONFIG/ PR: ports/111870 Submitted by: Marcelo Araujo <araujo@bsdmail.org>
41 lines
938 B
Makefile
41 lines
938 B
Makefile
# New ports collection makefile for: ZThread
|
|
# Date created: 23 May 2001
|
|
# Whom: pvh@egenetics.com
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= zthread
|
|
PORTVERSION= 2.3.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
DISTNAME= ZThread-${PORTVERSION}
|
|
|
|
MAINTAINER= shaun@FreeBSD.org
|
|
COMMENT= A platform-independent object-oriented C++ threading library
|
|
|
|
USE_AUTOTOOLS= libtool:15
|
|
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
|
|
|
|
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
|
|
|
|
post-install:
|
|
.if !defined(NOPORTDOCS)
|
|
@${MKDIR} ${DOCSDIR}
|
|
cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR}
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|