I tried installing Graphite using this port but two small issues that prevent this port from working out of the box. First, the provided example in pkg-message needs updating as it does not work as-is with apache24 (worked with apache22 before). Fix: --- pkg-message.in 2014-09-14 06:58:14.000000000 +0300 +++ pkg-message.in_fixed 2015-05-13 20:39:25.505087000 +0300 @@ -56,20 +56,23 @@ SetHandler None </Location> <Directory "%%PYTHON_SITELIBDIR%%/django/contrib/admin/static/"> - Order deny,allow - Allow from all + AllowOverride All + Options All + Require all granted </Directory> # The graphite.wsgi file has to be accessible by apache. It won't # be visible to clients because of the DocumentRoot though. <Directory %%PREFIX%%/etc/graphite/> - Order deny,allow - Allow from all + AllowOverride All + Options All + Require all granted </Directory> <Directory %%DATADIR%%/content/> - Order deny,allow - Allow from all + AllowOverride All + Options All + Require all granted </Directory> </VirtualHost> More info on why this is so: http://httpd.apache.org/docs/2.4/upgrading.html And the other problem - patch-conf__graphite.wsgi.example contains wrong path to the graphite webapp. Fix: --- patch-conf__graphite.wsgi.example 2014-09-14 06:58:14.000000000 +0300 +++ patch-conf__graphite.wsgi.example_fixed 2015-05-13 20:41:08.553705000 +0300 @@ -3,7 +3,7 @@ @@ -1,8 +1,10 @@ import os, sys -sys.path.append('/opt/graphite/webapp') -+sys.path.append('%%PREFIX%%/graphite/webapp') ++sys.path.append('/usr/ports/www/py-graphite-web/files') os.environ['DJANGO_SETTINGS_MODULE'] = 'graphite.settings' +import django This could have very well worked with STABLE but with CURRENT and apache24 these fixes are required in order to successfully use graphite.
*** Bug 200175 has been marked as a duplicate of this bug. ***
A commit references this bug: Author: swills Date: Fri Apr 22 15:45:52 UTC 2016 New revision: 413785 URL: https://svnweb.freebsd.org/changeset/ports/413785 Log: www/py-graphite-web: add CPE and fix example * Add CPE info for security issues [1] * Fix the path in the graphite.wsgi.example [2] * Bump portrevision for package change PR: 208331 [1] PR: 200174 [2] Submitted by: shun <shun.fbsd.pr@dropcut.net> [1] Submitted by: Kaspars Mickevics <kaspars@fx.lv> [2] Changes: head/www/py-graphite-web/Makefile head/www/py-graphite-web/files/patch-conf__graphite.wsgi.example
First part of this was fixed a while ago, second part was just committed. Thanks and sorry it took so long!