diff options
Diffstat (limited to 'devel/zthread/Makefile')
-rw-r--r-- | devel/zthread/Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/devel/zthread/Makefile b/devel/zthread/Makefile index a0de2fa27788..67683d8dd47d 100644 --- a/devel/zthread/Makefile +++ b/devel/zthread/Makefile @@ -6,21 +6,29 @@ # PORTNAME= zthread -PORTVERSION= 1.4.4 +PORTVERSION= 1.5.1 CATEGORIES= devel -MASTER_SITES= http://www.cs.buffalo.edu/%7Ecrahen/projects/zthread/ \ +MASTER_SITES= http://www.cs.buffalo.edu/~crahen/projects/zthread/ \ ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} DISTNAME= ZThread-${PORTVERSION} -MAINTAINER= pvh@egenetics.com - -BUILD_DEPENDS= doxygen:${PORTSDIR}/devel/doxygen - -HAS_CONFIGURE= yes +MAINTAINER= wjv@FreeBSD.org +GNU_CONFIGURE= yes USE_GMAKE= yes USE_LIBTOOL= yes INSTALLS_SHLIB= yes +EXAMPLESDIR= ${PREFIX}/share/examples/${PORTNAME} + +post-install: +.if !defined(NOPORTDOCS) + ${MKDIR} ${DOCSDIR}/html ${EXAMPLESDIR} +.for docfile in AUTHORS ChangeLog NEWS README TODO + ${INSTALL_DATA} ${WRKSRC}/${docfile} ${DOCSDIR} +.endfor + ${INSTALL_DATA} ${WRKSRC}/doc/html/* ${DOCSDIR}/html + ${INSTALL_DATA} ${WRKSRC}/examples/* ${EXAMPLESDIR} +.endif .include <bsd.port.mk> |