freebsd-ports/devel/zthread/Makefile
Johann Visagie 461ddd6d1f - 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
2001-11-14 10:45:03 +00:00

34 lines
818 B
Makefile

# New ports collection makefile for: ZThread
# Date created: 23 May 2001
# Whom: pvh@egenetics.com
#
# $FreeBSD$
#
PORTNAME= zthread
PORTVERSION= 1.5.1
CATEGORIES= devel
MASTER_SITES= http://www.cs.buffalo.edu/~crahen/projects/zthread/ \
${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= ZThread-${PORTVERSION}
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>