- Convert to STAGE

PR:		ports/189620
Submitted by:	maintainer
This commit is contained in:
Philippe Audeoud 2014-05-30 08:05:11 +00:00
parent d225bee350
commit ced114a7f4
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=355800
4 changed files with 33 additions and 25 deletions

View file

@ -3,25 +3,28 @@
PORTNAME= rtg PORTNAME= rtg
PORTVERSION= 0.7.4 PORTVERSION= 0.7.4
PORTREVISION= 9 PORTREVISION= 10
CATEGORIES= net CATEGORIES= net
MASTER_SITES= SF MASTER_SITES= SF
MAINTAINER= freebsd-ports@dan.me.uk MAINTAINER= freebsd-ports@dan.me.uk
COMMENT= A flexible, high-performance SNMP statistics monitoring system COMMENT= A flexible, high-performance SNMP statistics monitoring system
LIB_DEPENDS= netsnmp:${PORTSDIR}/net-mgmt/net-snmp LICENSE= GPLv2
MAN1= rtgplot.1 rtgpoll.1 LIB_DEPENDS= libnetsnmp.so:${PORTSDIR}/net-mgmt/net-snmp
USE_RC_SUBR= rtgpoll USE_RC_SUBR= rtgpoll
USE_MYSQL= yes USE_MYSQL= yes
WANT_PERL= yes
USES= shebangfix
SHEBANG_FILES= etc/95.pl etc/report.pl
SUB_FILES= pkg-message
GNU_CONFIGURE= yes GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/etc/${PORTNAME} \ CONFIGURE_ARGS+= --sysconfdir=${PREFIX}/etc/${PORTNAME} \
--with-mysql=${LOCALBASE} \ --with-mysql=${LOCALBASE} \
--with-snmp=${LOCALBASE} --with-snmp=${LOCALBASE}
NO_STAGE= yes
.include <bsd.port.pre.mk> .include <bsd.port.pre.mk>
.if ( ${OSVERSION} >= 800040 ) .if ( ${OSVERSION} >= 800040 )
@ -36,7 +39,4 @@ post-patch:
@${MV} ${WRKSRC}/etc/rtg.conf ${WRKSRC}/etc/rtg.conf.sample @${MV} ${WRKSRC}/etc/rtg.conf ${WRKSRC}/etc/rtg.conf.sample
@${MV} ${WRKSRC}/etc/routers ${WRKSRC}/etc/routers.sample @${MV} ${WRKSRC}/etc/routers ${WRKSRC}/etc/routers.sample
post-install:
@${ECHO} "To enable the web interface, copy ${PREFIX}/bin/rtgplot to your site cgi-bin as rtgplot.cgi"
.include <bsd.port.post.mk> .include <bsd.port.post.mk>

View file

@ -1,14 +1,15 @@
--- etc/Makefile.in.orig 2003-10-02 16:59:32.000000000 +0100 --- etc/Makefile.in.orig 2003-10-02 16:59:32.000000000 +0100
+++ etc/Makefile.in 2010-07-04 03:34:26.379748720 +0100 +++ etc/Makefile.in 2014-05-10 17:29:11.995407415 +0100
@@ -84,19 +84,19 @@ @@ -84,19 +84,19 @@
install_sh = @install_sh@ install_sh = @install_sh@
top_builddir = .. top_builddir = ..
-etcdir = /etc -etcdir = /etc
-webdir = /web -webdir = /web
-reportsdir = /bin
+etcdir = @etcdir@ +etcdir = @etcdir@
+webdir = @webdir@ +webdir = @webdir@
reportsdir = /bin +reportsdir = @bindir@
-ETC = rtg.conf rtgtargmkr.pl routers createdb BER.pm \ -ETC = rtg.conf rtgtargmkr.pl routers createdb BER.pm \
+ETC = rtg.conf.sample rtgtargmkr.pl routers.sample createdb BER.pm \ +ETC = rtg.conf.sample rtgtargmkr.pl routers.sample createdb BER.pm \
@ -25,21 +26,24 @@
subdir = etc subdir = etc
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
@@ -220,13 +220,13 @@ @@ -220,14 +220,14 @@
all: all:
install: installdirs install: installdirs
- @for i in $(ETC) ; do $(INSTALL) $(srcdir)/$$i $(prefix)$(etcdir) ; echo "install: installed $$i in $(prefix)$(etcdir)" ; done - @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 $(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 $(REPORTS) ; do $(INSTALL) $(srcdir)/$$i $(prefix)$(reportsdir) ; echo "install: installed $$i in $(prefix)$(reportsdir)" ; done
+ @for i in $(WEB) ; do $(INSTALL) $(srcdir)/$$i $(webdir) ; echo "install: installed $$i in $(webdir)" ; done + @for i in $(ETC) ; do $(INSTALL) $(srcdir)/$$i $(DESTDIR)$(etcdir) ; echo "install: installed $$i in $(DESTDIR)$(etcdir)" ; done
@for i in $(REPORTS) ; do $(INSTALL) $(srcdir)/$$i $(prefix)$(reportsdir) ; echo "install: installed $$i in $(prefix)$(reportsdir)" ; done + @for i in $(WEB) ; do $(INSTALL) $(srcdir)/$$i $(DESTDIR)$(webdir) ; echo "install: installed $$i in $(DESTDIR)$(webdir)" ; done
+ @for i in $(REPORTS) ; do $(INSTALL) $(srcdir)/$$i $(DESTDIR)$(reportsdir) ; echo "install: installed $$i in $(DESTDIR)$(reportsdir)" ; done
installdirs: installdirs:
- $(mkinstalldirs) $(prefix)$(etcdir) - $(mkinstalldirs) $(prefix)$(etcdir)
- $(mkinstalldirs) $(prefix)$(webdir) - $(mkinstalldirs) $(prefix)$(webdir)
+ $(mkinstalldirs) $(etcdir) - $(mkinstalldirs) $(prefix)$(reportsdir)
+ $(mkinstalldirs) $(webdir) + $(mkinstalldirs) $(DESTDIR)$(etcdir)
$(mkinstalldirs) $(prefix)$(reportsdir) + $(mkinstalldirs) $(DESTDIR)$(webdir)
+ $(mkinstalldirs) $(DESTDIR)$(reportsdir)
# Tell versions [3.59,3.63) of GNU make to not export all variables. # 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. # Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:

View file

@ -0,0 +1,2 @@
To enable the web interface, copy %%PREFIX%%/bin/rtgplot to your site cgi-bin as rtgplot.cgi
Without this step, your graphs will be broken.

View file

@ -4,22 +4,24 @@ bin/rtgplot
bin/rtgpoll bin/rtgpoll
contrib/README contrib/README
contrib/rtgtargmkr-with-modules-0.2.tar.gz contrib/rtgtargmkr-with-modules-0.2.tar.gz
etc/rtg/rtg.conf.sample %%ETCDIR%%/rtg.conf.sample
etc/rtg/rtgtargmkr.pl %%ETCDIR%%/rtgtargmkr.pl
etc/rtg/routers.sample %%ETCDIR%%/routers.sample
etc/rtg/createdb %%ETCDIR%%/createdb
etc/rtg/BER.pm %%ETCDIR%%/BER.pm
etc/rtg/SNMP_Session.pm %%ETCDIR%%/SNMP_Session.pm
etc/rtg/SNMP_util.pm %%ETCDIR%%/SNMP_util.pm
include/common.h include/common.h
include/rtg.h include/rtg.h
include/rtgplot.h include/rtgplot.h
man/man1/rtgplot.1.gz
man/man1/rtgpoll.1.gz
www/data/95.php www/data/95.php
www/data/common.php www/data/common.php
www/data/rtg.php www/data/rtg.php
www/data/rtg.png www/data/rtg.png
www/data/rtgback.png www/data/rtgback.png
www/data/view.php www/data/view.php
@dirrm contrib @dirrmtry contrib
@dirrm etc/rtg @dirrmtry %%ETCDIR%%
@dirrmtry www/data @dirrmtry www/data