mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
8adc12fbc6
to unclean deinstallation. - Move PROJECTHOST out of the PORTNAME section to satisfy portlint. PR: 127260 Submitted by: Yi-Jheng Lin <yzlin@cs.nctu.edu.tw> Approved by: portmgr (pav)
34 lines
906 B
Makefile
34 lines
906 B
Makefile
# New ports collection makefile for: pydot
|
|
# Date created: 15 Sep 2004
|
|
# Whom: Stefan Walter <sw@gegenunendlich.de>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pydot
|
|
PORTVERSION= 1.0.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics python
|
|
MASTER_SITES= ${MASTER_SITE_GOOGLE_CODE}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= stefan@FreeBSD.org
|
|
COMMENT= A Python interface to the Graphviz Dot language
|
|
|
|
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/pyparsing.py:${PORTSDIR}/devel/py-parsing
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pyparsing.py:${PORTSDIR}/devel/py-parsing \
|
|
dot:${PORTSDIR}/graphics/graphviz
|
|
|
|
PROJECTHOST= ${PORTNAME}
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS=yes
|
|
|
|
PLIST_FILES= %%PYTHON_SITELIBDIR%%/dot_parser.py \
|
|
%%PYTHON_SITELIBDIR%%/dot_parser.pyc \
|
|
%%PYTHON_SITELIBDIR%%/dot_parser.pyo \
|
|
%%PYTHON_SITELIBDIR%%/pydot.py \
|
|
%%PYTHON_SITELIBDIR%%/pydot.pyc \
|
|
%%PYTHON_SITELIBDIR%%/pydot.pyo
|
|
|
|
.include <bsd.port.mk>
|