98775b5242
reflect new contents. from Aleksander Piotrowski <aleksander.piotrowski@nic.com.pl>
43 lines
1004 B
Makefile
43 lines
1004 B
Makefile
# $OpenBSD: Makefile,v 1.4 2004/10/20 19:55:39 avsm 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>
|