24 lines
562 B
Makefile
24 lines
562 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= portgraph
|
|
PORTVERSION= 0.0.1
|
|
CATEGORIES= ports-mgmt python
|
|
MASTER_SITES= CHEESESHOP
|
|
|
|
MAINTAINER= lbartoletti@tuxfamily.org
|
|
COMMENT= Create a dependencies graph of a(all) port(s)
|
|
|
|
LICENSE= BSD2CLAUSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}graphviz>=0.8.2:graphics/py-graphviz@${PY_FLAVOR}
|
|
|
|
USES= python:3.4+
|
|
USE_PYTHON= distutils autoplist noflavors
|
|
NO_ARCH= yes
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} \
|
|
-e 's|/usr/ports|${PORTSDIR}| ; s|ports-mgmt/py-portgraph|ports-mgmt/portgraph|' \
|
|
${WRKSRC}/portgraph/portgraph.py
|
|
|
|
.include <bsd.port.mk>
|