mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-23 04:23:08 +00:00
34a78e3a6b
- Update to 1.6.1 - Fix SUBVERTY option [1] PR: ports/186390 [1] Submitted by: Maxim Samsonov <xors at mailup net> [1]
32 lines
740 B
Makefile
32 lines
740 B
Makefile
# Created by: William Grzybowski <william88@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= hgsubversion
|
|
PORTVERSION= 1.6.1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= wg@FreeBSD.org
|
|
COMMENT= Mercurial extension that allows using it as a Subversion client
|
|
|
|
LICENSE= GPLv2
|
|
|
|
OPTIONS_DEFINE= SUBVERTPY
|
|
OPTIONS_DEFAULT=SUBVERTPY
|
|
SUBVERTPY_DESC= Use subvertpy python bindings
|
|
|
|
USE_PYTHON= 2
|
|
USE_PYDISTUTILS=yes
|
|
PYDISTUTILS_AUTOPLIST= yes
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if ${PORT_OPTIONS:MSUBVERTPY}
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subvertpy>=0:${PORTSDIR}/devel/py-subvertpy
|
|
.else
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}subversion>=0:${PORTSDIR}/devel/py-subversion
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|