1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-19 08:13:21 +00:00
freebsd-ports/devel/arpc/Makefile
Dmitry Marakasov d157b97e80 - Remove bogus (in presence of USE_GITHUB) USES=tar*
- Use IGNORE_<sys>_<ver> helper
- Remove redundant python_OLD_CMD

Approved by:	portmgr blanket
2018-02-02 10:04:53 +00:00

40 lines
1.1 KiB
Makefile

# Created by: Ed Schouten <ed@FreeBSD.org>
# $FreeBSD$
PORTNAME= arpc
DISTVERSIONPREFIX= v
DISTVERSION= 0.7
CATEGORIES= devel
MAINTAINER= ed@FreeBSD.org
COMMENT= GRPC-like RPC library that supports file descriptor passing
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyPEG2>=2.15.2:textproc/py-pyPEG2@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}toposort>=1.5:devel/py-toposort@${PY_FLAVOR}
LIB_DEPENDS= libargdata.so:devel/argdata
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}pyPEG2>=2.15.2:textproc/py-pyPEG2@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}toposort>=1.5:devel/py-toposort@${PY_FLAVOR}
BROKEN_armv6= fails to build: *** Signal 11
BROKEN_armv7= fails to build: *** Signal 11
IGNORE_FreeBSD_10= requires various C++17 features
USES= cmake localbase:ldflags python:3.4+ shebangfix
SHEBANG_FILES= scripts/aprotoc.py
USE_LDCONFIG= yes
USE_GITHUB= yes
GH_ACCOUNT= NuxiNL
PLIST_FILES= bin/aprotoc include/arpc++/arpc++.h \
lib/libarpc.so lib/libarpc.so.1
# Require the unit tests to pass prior to installing.
post-build:
@trap '' PIPE && ${WRKSRC}/arpc_tests
.include <bsd.port.mk>