mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
00d083a0ec
gone some time ago - add staging support, while here - bump PORTREVISION PR: 182085 Submitted by: rm (myself) Approved by: Dereckson <dereckson@gmail.com> (maintainer)
30 lines
689 B
Makefile
30 lines
689 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= git-review
|
|
PORTVERSION= 1.23
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
|
|
MAINTAINER= dereckson@gmail.com
|
|
COMMENT= Allow to push review and interact with a Gerrit server
|
|
|
|
LICENSE= APACHE20
|
|
|
|
RUN_DEPENDS= git:${PORTSDIR}/devel/git
|
|
|
|
USE_PYTHON= yes
|
|
NO_BUILD= yes
|
|
|
|
PLIST_FILES= bin/git-review \
|
|
man/man1/git-review.1.gz
|
|
PORTDOCS= README.rst HACKING.rst AUTHORS
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKSRC}/git-review ${STAGEDIR}${PREFIX}/bin/git-review
|
|
${INSTALL_MAN} ${WRKSRC}/git-review.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}
|
|
${INSTALL_DATA} ${PORTDOCS:S,^,${WRKSRC}/,} ${STAGEDIR}${DOCSDIR}
|
|
|
|
.include <bsd.port.mk>
|