mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-10 07:04:03 +00:00
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# Created by: Ryan Steinmetz <zi@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= exabgp
|
|
PORTVERSION= 3.1.5
|
|
CATEGORIES= net
|
|
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= zi@FreeBSD.org
|
|
COMMENT= A BGP engine and route injector
|
|
|
|
LICENSE= BSD
|
|
|
|
USE_PYTHON= yes
|
|
SUB_FILES= pkg-message exabgp.sh
|
|
SUB_LIST= PYTHON_LIBDIR=${PYTHON_LIBDIR} PYTHON_CMD=${PYTHON_CMD} \
|
|
PYTHON_SITELIBDIR=${PYTHON_SITELIBDIR}
|
|
USE_RC_SUBR= ${PORTNAME}
|
|
|
|
USERS= _bgpd
|
|
GROUPS= _bgpd
|
|
|
|
MAN1= ${PORTNAME}.1
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
post-extract:
|
|
@${MV} -f ${WRKSRC}/etc/systemd ${WRKSRC}
|
|
@${MV} -f ${WRKSRC}/lib/forwarding ${WRKSRC}
|
|
|
|
do-build:
|
|
${PYTHON_CMD} -m compileall ${WRKSRC}/lib
|
|
|
|
do-install:
|
|
${INSTALL_SCRIPT} ${WRKDIR}/${PORTNAME}.sh ${PREFIX}/sbin/${PORTNAME}
|
|
${INSTALL_MAN} ${WRKSRC}/debian/${PORTNAME}.1 ${PREFIX}/man/man1
|
|
@${MKDIR} ${PYTHON_SITELIBDIR}/${PORTNAME} ${ETCDIR}
|
|
(cd ${WRKSRC}/lib && ${COPYTREE_SHARE} . ${PYTHON_SITELIBDIR})
|
|
.if ${PORT_OPTIONS:MEXAMPLES}
|
|
@${MKDIR} ${EXAMPLESDIR}
|
|
(cd ${WRKSRC}/etc && ${COPYTREE_SHARE} . ${EXAMPLESDIR})
|
|
.endif
|
|
@if [ ! -f ${ETCDIR}/exabgp.env ]; then \
|
|
${CP} ${FILESDIR}/exabgp.env ${ETCDIR} ; \
|
|
fi
|
|
|
|
post-install:
|
|
@${CAT} ${PKGMESSAGE}
|
|
|
|
.include <bsd.port.mk>
|