mirror of
https://git.freebsd.org/ports.git
synced 2025-06-28 16:10:33 -04:00
user-modified config files - Added note to explain where/how to use rtgplot - Added graph titles and friendly legend tags - Modified rc script to load after mysql PR: ports/148363 Submitted by: Daniel Austin MBCS <freebsd-ports AT dan.me.uk> (maintainer)
45 lines
1.9 KiB
Text
45 lines
1.9 KiB
Text
--- etc/Makefile.in.orig 2003-10-02 16:59:32.000000000 +0100
|
|
+++ etc/Makefile.in 2010-07-04 03:34:26.379748720 +0100
|
|
@@ -84,19 +84,19 @@
|
|
install_sh = @install_sh@
|
|
|
|
top_builddir = ..
|
|
-etcdir = /etc
|
|
-webdir = /web
|
|
+etcdir = @etcdir@
|
|
+webdir = @webdir@
|
|
reportsdir = /bin
|
|
|
|
-ETC = rtg.conf rtgtargmkr.pl routers createdb BER.pm \
|
|
+ETC = rtg.conf.sample rtgtargmkr.pl routers.sample createdb BER.pm \
|
|
SNMP_Session.pm SNMP_util.pm
|
|
|
|
WEB = rtg.php 95.php view.php common.php rtg.png rtgback.png
|
|
REPORTS = report.pl 95.pl
|
|
|
|
EXTRA_DIST = rtgtargmkr.pl.in report.pl 95.pl createdb.in \
|
|
- BER.pm SNMP_Session.pm SNMP_util.pm rtg.conf \
|
|
- routers rtg.php 95.php view.php common.php.in rtg.png rtgback.png
|
|
+ BER.pm SNMP_Session.pm SNMP_util.pm rtg.conf.sample \
|
|
+ routers.sample rtg.php 95.php view.php common.php.in rtg.png rtgback.png
|
|
|
|
subdir = etc
|
|
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
|
|
@@ -220,13 +220,13 @@
|
|
all:
|
|
|
|
install: installdirs
|
|
- @for i in $(ETC) ; do $(INSTALL) $(srcdir)/$$i $(prefix)$(etcdir) ; echo "install: installed $$i in $(prefix)$(etcdir)" ; done
|
|
- @for i in $(WEB) ; do $(INSTALL) $(srcdir)/$$i $(prefix)$(webdir) ; echo "install: installed $$i in $(prefix)$(webdir)" ; done
|
|
+ @for i in $(ETC) ; do $(INSTALL) $(srcdir)/$$i $(etcdir) ; echo "install: installed $$i in $(etcdir)" ; done
|
|
+ @for i in $(WEB) ; do $(INSTALL) $(srcdir)/$$i $(webdir) ; echo "install: installed $$i in $(webdir)" ; done
|
|
@for i in $(REPORTS) ; do $(INSTALL) $(srcdir)/$$i $(prefix)$(reportsdir) ; echo "install: installed $$i in $(prefix)$(reportsdir)" ; done
|
|
|
|
installdirs:
|
|
- $(mkinstalldirs) $(prefix)$(etcdir)
|
|
- $(mkinstalldirs) $(prefix)$(webdir)
|
|
+ $(mkinstalldirs) $(etcdir)
|
|
+ $(mkinstalldirs) $(webdir)
|
|
$(mkinstalldirs) $(prefix)$(reportsdir)
|
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|