openbsd-ports/books/cvs-guide/Makefile
2007-09-15 21:32:05 +00:00

43 lines
1003 B
Makefile

# $OpenBSD: Makefile,v 1.5 2007/09/15 21:34:35 simon Exp $
COMMENT= the definitive guide to CVS
V= 1.21
DISTNAME= cvsbook-${V}-all
PKGNAME= cvs-guide-${V}
CATEGORIES= books
MASTER_SITES= http://cvsbook.red-bean.com/
HOMEPAGE= http://cvsbook.red-bean.com/
MAINTAINER= Anil Madhavapeddy <avsm@openbsd.org>
# GPL
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WRKDIST= ${WRKDIR}/cvsbook-${V}
NO_BUILD= Yes
NO_REGRESS= Yes
PKG_ARCH= *
INSTALL_LOC= ${PREFIX}/share/doc/cvs-guide
HTML_DOCS= amazon-boycott.html cvsbook.html anoncvs.html \
index.html errata.html
PRINT_DOCS= cvsbook.ps cvsbook.pdf OSDevWithCVS_3E.pdf
do-install:
${INSTALL_DATA_DIR} ${INSTALL_LOC}
${INSTALL_DATA_DIR} ${INSTALL_LOC}/html
${INSTALL_DATA_DIR} ${INSTALL_LOC}/print
.for i in ${HTML_DOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${INSTALL_LOC}/html
.endfor
.for i in ${PRINT_DOCS}
${INSTALL_DATA} ${WRKSRC}/${i} ${INSTALL_LOC}/print
.endfor
.include <bsd.port.mk>