pkgsrc/devel/mercurial/Makefile
wiz 1b2481188c Update to 2.9.1:
This is a regularly-scheduled bugfix release.

    coal: hgweb style adds extra blank line in file view (issue4136)
    hg.openpath: use url.islocal to tell if the path is local (issue3624)
    hgweb: hack around mimetypes encoding thinko (issue4160)
    hooks: only disable/re-enable demandimport when it's already enabled
    merge: add "other" file node in the merge state file
    merge: audit the right destination file when merging with dir rename
    merge: don't overwrite file untracked after remove, abort with 'untracked files'
    merge: record the "other" node in merge state
    pathencode: eliminate signed integer warnings
    pull: close peer repo on completion (issue2491) (issue2797)
    purge: avoid duplicate output for --print (issue4092)
    rebase: do not try to reactivate deleted divergent bookmark
    resolve: use "other" changeset from merge state (issue4163)
    verify: do not prevent verify repository containing hidden changesets
2014-03-12 09:49:56 +00:00

45 lines
1.4 KiB
Makefile

# $NetBSD: Makefile,v 1.100 2014/03/12 09:49:56 wiz Exp $
DISTNAME= mercurial-2.9.1
CATEGORIES= devel scm
MASTER_SITES= http://mercurial.selenic.com/release/
MAINTAINER= wiz@NetBSD.org
HOMEPAGE= http://mercurial.selenic.com/
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
USE_TOOLS+= gmake msgfmt
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5
INSTALLATION_DIRS+= share/doc/mercurial
PYTHON_VERSIONS_INCOMPATIBLE= 33 # not yet ported as of 2.9
# see also http://mercurial.selenic.com/wiki/SupportedPythonVersions
# 3.x support is not planned for the near future
#
# the following setup argument was requested when compiling
# for python-3.x
#.include "../../lang/python/pyversion.mk"
#
#.if ("${PYPKGPREFIX}" != "py26") && ("${PYPKGPREFIX}" != "py27")
#PYSETUPARGS+= --c2to3
#.endif
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"