mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-16 07:58:04 +00:00
f322cda34a
PR: 194901 Submitted by: Marco Broder <marco.broeder@posteo.eu> Approved by: mentors (implicit)
30 lines
661 B
Makefile
30 lines
661 B
Makefile
# Created by: Marco Broeder <marco.broeder@posteo.eu>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hg-git
|
|
PORTVERSION= 0.7.0
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= marco.broeder@posteo.eu
|
|
COMMENT= Mercurial extension to pull from or push to a Git repository
|
|
|
|
LICENSE= GPLv2
|
|
|
|
RUN_DEPENDS= ${PKGNAMEPREFIX}dulwich>=*:${PORTSDIR}/devel/dulwich \
|
|
mercurial>=*:${PORTSDIR}/devel/mercurial
|
|
|
|
PORTDOCS= README.md
|
|
|
|
USES= python:2
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}/)
|
|
|
|
.include <bsd.port.mk>
|