diff options
author | Dag-Erling Smørgrav <des@FreeBSD.org> | 2010-02-25 12:15:38 +0000 |
---|---|---|
committer | Dag-Erling Smørgrav <des@FreeBSD.org> | 2010-02-25 12:15:38 +0000 |
commit | 94ebcf4d98b6bc7bc2e56f64f1a780eb894f5df1 (patch) | |
tree | bd54b030ba59ee28794bf303646386745eb0891c /sysutils/munin-common/files | |
parent | 78ee99eb30514dee52bbfe2d229191a226af257d (diff) | |
download | ports-94ebcf4d98b6bc7bc2e56f64f1a780eb894f5df1.tar.gz ports-94ebcf4d98b6bc7bc2e56f64f1a780eb894f5df1.zip |
Notes
Diffstat (limited to 'sysutils/munin-common/files')
-rw-r--r-- | sysutils/munin-common/files/patch-Makefile.config | 82 |
1 files changed, 0 insertions, 82 deletions
diff --git a/sysutils/munin-common/files/patch-Makefile.config b/sysutils/munin-common/files/patch-Makefile.config index 7b9627fb5304..98a7052bf8ae 100644 --- a/sysutils/munin-common/files/patch-Makefile.config +++ b/sysutils/munin-common/files/patch-Makefile.config @@ -1,87 +1,5 @@ --- Makefile.config.orig 2009-12-30 05:55:56.000000000 -0700 +++ Makefile.config 2010-01-30 11:17:34.000000000 -0700 -@@ -17,29 +17,33 @@ - # - # the base of the Munin installation. - # --PREFIX = $(DESTDIR)/opt/munin -+ifdef PREFIX -+UPREFIX=$(PREFIX) -+else -+UPREFIX=/usr -+endif - - # Where Munin keeps its configurations (server.conf, client.conf, ++) --CONFDIR = $(DESTDIR)/etc/opt/munin -+CONFDIR = $(PREFIX)/etc/munin - - # Server only - where to put munin-cron --BINDIR = $(PREFIX)/bin -+BINDIR = $(UPREFIX)/bin - - # Client only - where to put munin-node, munin-node-configure, and munin-run --SBINDIR = $(PREFIX)/sbin -+SBINDIR = $(UPREFIX)/sbin - - # Where to put text and html documentation --DOCDIR = $(PREFIX)/doc -+DOCDIR = $(UPREFIX)/doc - - # Where to put man pages --MANDIR = $(PREFIX)/man -+MANDIR = $(UPREFIX)/man - - # Where to put internal binaries and plugin repository --LIBDIR = $(PREFIX)/lib -+LIBDIR = $(DATADIR) - - # Server only - Output directory --HTMLDIR = $(PREFIX)/www/docs --CGIDIR = $(PREFIX)/www/cgi -+HTMLDIR = $(WWWDIR) -+CGIDIR = $(PREFIX)/www/cgi-bin - - # Server only - spool directory for data gathered from nodes by - # munin-gather - experimental. Place on ramdisk to make munin -@@ -52,21 +56,20 @@ - # SSPOOLDIR := /tmp/muninspool - - # Client only - Where to put RRD files and other intenal data --DBDIR = $(DESTDIR)/var/opt/munin -+DBDIR = $(PREFIX)/var/munin - - # Client only - Where plugins should put their states. Must be writable by - # group "munin", and should be preserved between reboots - PLUGSTATE = $(DBDIR)/plugin-state - - # Where Munin should place its logs. --LOGDIR = $(PREFIX)/log/munin -+LOGDIR = /var/log/munin-main - - # Location of PID files and other statefiles. On the server, must be - # writable by the user "munin". --STATEDIR = $(DESTDIR)/var/run/munin -+STATEDIR = /var/run/munin - - # The perl interpreter to use --PERL := $(shell which perl) - - # The python interpreter to use (used by some plugins) - PYTHON := /usr/bin/env python -@@ -95,11 +98,11 @@ - GOODSH := $(shell PATH=`getconf PATH` sh -c 'type sh | sed "s/.* //"') - - # Path of bash for bash specific plugins --BASH := /bin/bash -+BASH := /usr/local/bin/bash - - # Server only - Where to install the perl libraries - PERLSITELIB := $(shell $(PERL) -V:sitelib | cut -d"'" -f2) --PERLLIB = $(DESTDIR)$(PERLSITELIB) -+PERLLIB = $(PREFIX)/$(SITE_PERL_REL) - - # Client only - Install plugins for this architecture - OSTYPE := $(shell uname | tr '[A-Z]' '[a-z]') @@ -126,9 +129,8 @@ # Which command to use to check if the USER and GROUP to run Munin as, exists. # These will work on most modern OSes: |