69f533e673
* "git diff -- ':(icase)makefile'" was unnecessarily rejected at the command line parser. * "git cat-file --batch-check=ok" did not check the existence of the named object. * "git am --abort" sometimes complained about not being able to write a tree with an 0{40} object in it. * Two processes creating loose objects at the same time could have failed unnecessarily when the name of their new objects started with the same byte value, due to a race condition. Also contains typofixes, documentation updates and trivial code clean-ups
54 lines
1.8 KiB
Makefile
54 lines
1.8 KiB
Makefile
# $NetBSD: Makefile,v 1.21 2014/01/01 11:14:38 adam Exp $
|
|
|
|
.include "../../devel/git/Makefile.version"
|
|
|
|
DISTNAME= git-${GIT_VERSION}
|
|
PKGNAME= ${DISTNAME:S/git/gitweb/}
|
|
CATEGORIES= www
|
|
MASTER_SITES= http://www.kernel.org/pub/software/scm/git/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://git.or.cz/
|
|
COMMENT= Web interface for GIT repositories
|
|
|
|
#DEPENDS+= apache{,2,22}-[0-9]*:../../www/apache22
|
|
DEPENDS+= git-base>=${GIT_VERSION}:../../devel/git-base
|
|
DEPENDS+= {perl>=5.15.8,p5-Time-HiRes>=1.9725}:../../time/p5-Time-HiRes
|
|
|
|
DISTINFO_FILE= ${.CURDIR}/../../devel/git-base/distinfo
|
|
|
|
USE_TOOLS+= gmake perl:run
|
|
|
|
BUILD_DIRS= gitweb
|
|
BUILD_TARGET= gitweb.cgi
|
|
MAKE_FLAGS= prefix=${PREFIX}
|
|
MAKE_FLAGS+= GITWEB_FAVICON=/gitweb/git-favicon.png
|
|
MAKE_FLAGS+= GITWEB_CONFIG=${GITWEB_CONFIG}
|
|
MAKE_FLAGS+= GITWEB_CSS=/gitweb/gitweb.css
|
|
MAKE_FLAGS+= GITWEB_HOMETEXT=${GITWEB_HTDOCS}/indextext.html
|
|
MAKE_FLAGS+= GITWEB_LOGO=/gitweb/git-logo.png
|
|
MAKE_FLAGS+= PERL_PATH=${PERL5:Q}
|
|
|
|
GITWEB_CONFIG= ${PKG_SYSCONFDIR}/gitweb.conf
|
|
GITWEB_CGIBIN= ${PREFIX}/libexec/cgi-bin
|
|
# Apache wants files in ${PREFIX}/share/httpd/htdocs/gitweb
|
|
GITWEB_HTDOCS= ${PREFIX}/share/examples/gitweb/htdocs
|
|
GITWEB_EGDIR= ${PREFIX}/share/examples/gitweb
|
|
|
|
CONF_FILES= ${GITWEB_EGDIR}/gitweb.conf ${PKG_SYSCONFDIR}/gitweb.conf
|
|
MESSAGE_SUBST+= CONFFILE=${PKG_SYSCONFDIR}/gitweb.conf
|
|
|
|
INSTALLATION_DIRS= libexec/cgi-bin \
|
|
share/doc/gitweb \
|
|
${GITWEB_EGDIR} ${GITWEB_HTDOCS}
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/gitweb/gitweb.cgi ${DESTDIR}${GITWEB_CGIBIN}
|
|
.for f in git-favicon.png git-logo.png gitweb.css
|
|
${INSTALL_DATA} ${WRKSRC}/gitweb/static/${f} ${DESTDIR}${GITWEB_HTDOCS}
|
|
.endfor
|
|
${INSTALL_DATA} ${WRKSRC}/gitweb/README \
|
|
${DESTDIR}${PREFIX}/share/doc/gitweb
|
|
${INSTALL_DATA} ${FILESDIR}/gitweb.conf ${DESTDIR}${GITWEB_EGDIR}
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|