mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-12 03:00:28 +00:00
cfa665aed1
While here, switch it to DISTVERISON PR: 222494 Reported by: xmj Approved by: maintainer timeout (2 weeks), tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D12713
34 lines
804 B
Makefile
34 lines
804 B
Makefile
# Created by: Marco Broeder <marco.broeder@posteo.eu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hg-git
|
|
DISTVERSION= 0.8.9
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://bitbucket.org/durin42/${PORTNAME}/get/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= ${PORTVERSION}
|
|
DIST_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= marco.broeder@posteo.eu
|
|
COMMENT= Mercurial extension to pull from or push to a Git repository
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dulwich>=*:devel/dulwich \
|
|
mercurial>=*:devel/mercurial
|
|
|
|
PORTDOCS= README.md
|
|
|
|
NO_ARCH= yes
|
|
WRKSRC= ${WRKDIR}/durin42-${PORTNAME}-88de3215e138
|
|
USES= python:2.7
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/)
|
|
|
|
.include <bsd.port.mk>
|