0c52a0c835
This is a regularly-scheduled bugfix release. amend: disable hooks when creating intermediate commit (issue3501) archive: make progress only show files that are actually archived bookmarks: correctly update current bookmarks on rebase (issue2277) bugzilla: stop bugs always being marked as fixed in xmlrpc (issue3484) graft: don't drop the second parent on unsuccessful merge (issue3498) hgweb: fixes linebreak location in gitweb filediff.tmpl view rebase: improve error message on improper phases record: fix display of non-ASCII names statichttprepo: don't send Range header when requesting entire file strip: update help to state that you can strip public changeset subrepo/svn: make rev number retrieval compatible with svn 1.5 (issue2968) subrepo: support Git being named "git.cmd" on Windows (issue3173) subrepo: warn user if Git is not version 1.6.0 or higher update: fix help regarding update to ancestor
36 lines
1.1 KiB
Makefile
36 lines
1.1 KiB
Makefile
# $NetBSD: Makefile,v 1.74 2012/07/07 21:39:47 wiz Exp $
|
|
#
|
|
|
|
DISTNAME= mercurial-2.2.3
|
|
CATEGORIES= devel scm
|
|
MASTER_SITES= http://mercurial.selenic.com/release/
|
|
|
|
MAINTAINER= wiz@NetBSD.org
|
|
HOMEPAGE= http://mercurial.selenic.com/wiki/
|
|
COMMENT= Fast, lightweight source control management system
|
|
LICENSE= gnu-gpl-v2 OR gnu-gpl-v3 # OR newer
|
|
|
|
BUILD_DEPENDS+= xmlto-[0-9]*:../../textproc/xmlto
|
|
BUILD_DEPENDS+= asciidoc-[0-9]*:../../textproc/asciidoc
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
USE_TOOLS+= gmake msgfmt
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5
|
|
INSTALLATION_DIRS+= share/doc/mercurial
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.1 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man1
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.5 ${DESTDIR}${PREFIX}/${PKGMANDIR}/man5
|
|
${INSTALL_DATA} ${WRKSRC}/README \
|
|
${DESTDIR}${PREFIX}/share/doc/mercurial
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
.if ${OPSYS} == "Linux" && empty(OS_VERSION:M2.4.*) && empty(OS_VERSION:M2.2.*)
|
|
PLIST_SRC+= ${.CURDIR}/PLIST ${.CURDIR}/PLIST.inotify
|
|
.endif
|
|
|
|
.include "../../lang/python/distutils.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|