5f17a3dce3
* Fix diffs between tags * Fix duplicate accesskeys and id's in the "front" page * Fix typo in JavaScript download window parameter * Include query string in JavaScript download links in order to unbreak downloads from non-default CVS roots * Don't display @ForbiddenFiles in directory listings; also make sure their logs are not accessible via direct URLs * Fix dir sort order breakage when there are rogue files in the repository dir and the sort order is not by file name * Add -f; avoid reading ~/.cvsrc
61 lines
1.7 KiB
Makefile
61 lines
1.7 KiB
Makefile
#
|
|
# $NetBSD: Makefile,v 1.12 2002/07/24 11:38:47 martti Exp $
|
|
#
|
|
|
|
DISTNAME= cvsweb-2.0.5
|
|
CATEGORIES= www
|
|
MASTER_SITES= ftp://ftp.freebsd.org/pub/FreeBSD/ports/local-distfiles/scop/
|
|
|
|
MAINTAINER= lukem@netbsd.org
|
|
HOMEPAGE= http://www.freebsd.org/cgi/cvsweb.cgi/projects/cvsweb/
|
|
COMMENT= Web interface for browsing a CVS repository
|
|
|
|
USE_BUILDLINK_ONLY= YES
|
|
|
|
PKG_SYSCONFSUBDIR?= httpd
|
|
EGDIR= ${PREFIX}/share/examples/${PKGBASE}
|
|
DOCDIR= ${PREFIX}/share/doc/${PKGBASE}
|
|
|
|
CVSWEB_CONF_FILES= cvsweb.conf \
|
|
cvsweb.conf-freebsd \
|
|
cvsweb.conf-netbsd \
|
|
cvsweb.conf-openbsd \
|
|
cvsweb.conf-ruby
|
|
|
|
CVSWEB_ICONS= back.gif dir.gif \
|
|
miniback.gif minidir.gif minitext.gif text.gif
|
|
|
|
CVSWEB_DOCS= ChangeLog INSTALL README README.FreeBSD \
|
|
TODO TODO.FreeBSD
|
|
|
|
CONF_FILES= ${EGDIR}/cvsweb.conf ${PKG_SYSCONFDIR}/cvsweb.conf
|
|
|
|
.if !exists(/usr/bin/rlog)
|
|
DEPENDS+= rcs-[0-9]*:../../devel/rcs
|
|
.endif
|
|
|
|
do-build:
|
|
${MV} ${WRKSRC}/cvsweb.cgi ${WRKSRC}/cvsweb.cgi.bak
|
|
${SED} -e 's,/usr/bin/perl,${PERL5},' \
|
|
-e 's,/usr/local/etc/cvsweb/,${PKG_SYSCONFDIR}/,' \
|
|
${WRKSRC}/cvsweb.cgi.bak > ${WRKSRC}/cvsweb.cgi
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT_DIR} ${PREFIX}/libexec/cgi-bin
|
|
${INSTALL_SCRIPT} ${WRKSRC}/cvsweb.cgi ${PREFIX}/libexec/cgi-bin
|
|
${INSTALL_DATA_DIR} ${EGDIR}
|
|
.for f in ${CVSWEB_CONF_FILES}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${EGDIR}/${f}
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${EGDIR}/icons
|
|
.for f in ${CVSWEB_ICONS}
|
|
${INSTALL_DATA} ${WRKSRC}/icons/${f} ${EGDIR}/icons/${f}
|
|
.endfor
|
|
${INSTALL_DATA_DIR} ${DOCDIR}
|
|
.for f in ${CVSWEB_DOCS}
|
|
${INSTALL_DATA} ${WRKSRC}/${f} ${DOCDIR}/${f}
|
|
.endfor
|
|
|
|
.include "../../lang/perl5/buildlink.mk"
|
|
.include "../../mk/bsd.pkg.install.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|