diff options
author | olgeni <olgeni@FreeBSD.org> | 2014-06-17 04:49:35 +0800 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2014-06-17 04:49:35 +0800 |
commit | a87fac21118e63eebee95f17ba6229ac16228fe9 (patch) | |
tree | d1c937c24641c21ae8fb6868c25acc1147455f93 /www | |
parent | 89665e5ed9bcad9823d608d523bdfe9f34eb8a1e (diff) | |
download | freebsd-ports-gnome-a87fac21118e63eebee95f17ba6229ac16228fe9.tar.gz freebsd-ports-gnome-a87fac21118e63eebee95f17ba6229ac16228fe9.tar.zst freebsd-ports-gnome-a87fac21118e63eebee95f17ba6229ac16228fe9.zip |
Unbreak, after I broke it on r357306.
- Fix dependency on x11-fonts/urwfonts
While I'm here:
- Add LICENSE
- Remove easy_install from USE_PYDISTUTILS
Noticed by: amdmi3
Diffstat (limited to 'www')
-rw-r--r-- | www/trac-graphviz/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/www/trac-graphviz/Makefile b/www/trac-graphviz/Makefile index e046e675490e..a341d4829dbc 100644 --- a/www/trac-graphviz/Makefile +++ b/www/trac-graphviz/Makefile @@ -2,7 +2,7 @@ PORTNAME= ${PYDISTUTILS_PKGNAME:S;^Trac;;S;Plugin$;;:tl} PORTVERSION= 0.7.4 -PORTREVISION= 6 +PORTREVISION= 7 CATEGORIES= www devel graphics python MASTER_SITES= ${MASTER_SITE_LOCAL} MASTER_SITE_SUBDIR= brooks @@ -12,15 +12,16 @@ DISTNAME= ${PORTNAME}plugin-${PORTVERSION} MAINTAINER= ports@FreeBSD.org COMMENT= Graphviz plugin for Trac's wiki -RUN_DEPENDS+= ${LOCALBASE}/lib/X11/fonts/URW/fonts.dir:${PORTSDIR}/x11-fonts/urwfonts \ +LICENSE= BSD3CLAUSE + +RUN_DEPENDS+= urwfonts>0:${PORTSDIR}/x11-fonts/urwfonts \ dot:${PORTSDIR}/graphics/graphviz \ tracd:${PORTSDIR}/www/trac USE_PYTHON= 2 -USE_PYDISTUTILS= easy_install +USE_PYDISTUTILS= yes PYDISTUTILS_PKGNAME= graphviz WRKSRC= ${WRKDIR}/${PORTNAME}plugin -PLIST_FILES= %%PYTHON_SITELIBDIR%%/%%PYEASYINSTALL_EGG%% post-patch: ${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ |