564549e3a1
-- CVS (Concurrent Versions System) is free software for version control and networked collaboration. This book assumes no previous knowledge of CVS, but a working knowledge of Unix and software development will help.
43 lines
1011 B
Makefile
43 lines
1011 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2003/05/28 13:46:17 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
|
|
|
|
SUBST_VARS= INSTALL_LOC
|
|
INSTALL_LOC= ${PREFIX}/share/doc/cvs-guide
|
|
HTML_DOCS= amazon-boycott.html cvsbook.html anoncvs.html \
|
|
index.html errata.html ChangeLog
|
|
PRINT_DOCS= cvsbook.ps cvsbook.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>
|