e1e8ade362
Changes: - new extensions: mq (manage a queue of patches, like quilt only better) email (send changes as series of email patches) - new command: merge (replaces "update -m") - improved commands: log (--limit option added), pull/push ("-r" works on specific revisions), revert (rewritten, much better) - comprehensive hook support - output templating added, supporting e.g. GNU changelog style - Windows, Mac OS X: prebuilt binary packages, better support - many reliability, performance, and memory usage improvements
27 lines
867 B
Makefile
27 lines
867 B
Makefile
# $NetBSD: Makefile,v 1.8 2006/04/08 23:21:38 minskim Exp $
|
|
#
|
|
|
|
DISTNAME= mercurial-0.8.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://www.selenic.com/mercurial/release/
|
|
|
|
MAINTAINER= pkgsrc-users@NetBSD.org
|
|
HOMEPAGE= http://www.selenic.com/mercurial/wiki/index.cgi/Mercurial
|
|
COMMENT= Fast, lightweight source control management system
|
|
|
|
PY_PATCHPLIST= yes
|
|
PYDISTUTILSPKG= yes
|
|
|
|
PYTHON_VERSIONS_ACCEPTED= 24 23
|
|
|
|
INSTALLATION_DIRS= bin ${PKGMANDIR}/man1 ${PKGMANDIR}/man5
|
|
|
|
post-install:
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.1 ${PREFIX}/${PKGMANDIR}/man1
|
|
${INSTALL_DATA} ${WRKSRC}/doc/*.5 ${PREFIX}/${PKGMANDIR}/man5
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/mercurial
|
|
${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/mercurial
|
|
${INSTALL_DATA} ${WRKSRC}/comparison.txt ${PREFIX}/share/doc/mercurial
|
|
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|