mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-18 03:46:03 +00:00
41 lines
891 B
Makefile
41 lines
891 B
Makefile
# Created by: Dmitry Marakasov <amdmi3@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= git-bzr-ng
|
|
PORTVERSION= git20140423
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel
|
|
|
|
MAINTAINER= amdmi3@FreeBSD.org
|
|
COMMENT= Bi-directional git to bzr bridge
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= git:devel/git \
|
|
bzr:devel/bzr \
|
|
${PYTHON_SITELIBDIR}/bzrlib/plugins/fastimport/__init__.py:devel/bzr-fastimport
|
|
|
|
USE_GITHUB= yes
|
|
GH_ACCOUNT= termie
|
|
GH_TAGNAME= 9878a30
|
|
|
|
USES= python:2.7,run shebangfix
|
|
SHEBANG_FILES= git-bzr
|
|
NO_BUILD= yes
|
|
NO_ARCH= yes
|
|
PLIST_FILES= libexec/git-core/git-bzr
|
|
PORTDOCS= *
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
do-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/libexec/git-core
|
|
${INSTALL_SCRIPT} ${WRKSRC}/git-bzr ${STAGEDIR}${PREFIX}/libexec/git-core/
|
|
|
|
do-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${WRKSRC}/README.rst ${STAGEDIR}${DOCSDIR}/
|
|
|
|
.include <bsd.port.mk>
|