- If a port has another upstream, remove GOOGLE_CODE - If a port only has GOOGLE_CODE mark it BROKEN Some ports have a local mirror configured but for security reasons, it is not considered upstream. Sponsored by: Absolight
26 lines
490 B
Makefile
26 lines
490 B
Makefile
# Created by: Bruce Simpson
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pyang
|
|
PORTVERSION= 1.4.1
|
|
CATEGORIES= net-mgmt python
|
|
MASTER_SITES= GOOGLE_CODE
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= bofh@FreeBSD.org
|
|
COMMENT= Validator and code generator for YANG (RFC 4741)
|
|
|
|
LICENSE= MIT
|
|
|
|
BROKEN= Unfetchable (google code has gone away)
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils
|
|
|
|
DATADIR= ${PREFIX}/share/yang
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e \
|
|
's|share/man|man|' ${WRKSRC}/setup.py
|
|
|
|
.include <bsd.port.mk>
|