diff options
author | Johann Visagie <wjv@FreeBSD.org> | 2001-11-14 10:45:03 +0000 |
---|---|---|
committer | Johann Visagie <wjv@FreeBSD.org> | 2001-11-14 10:45:03 +0000 |
commit | 461ddd6d1f8b598df20c4a0d607176c406641338 (patch) | |
tree | a5d472ee6624075d82da52e181ba52ae67342ffe /devel/zthread/Makefile | |
parent | Add missed USE_OPENSSL=yes (my fault). (diff) |
- Update to version 1.5.1
- Assume maintainership; the previous maintainer - an ex-coworker - has
expressed no further interest in maintaining this port
- Remove spurious build-time dependency on doxygen
- HAS_CONFIGURE -> GNU_CONFIGURE
- Add post-install target to install some documentation and examples
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> |