Code

Minor changes to build for Solaris packages
authorJeremy T. Bouse <undrgrid@users.sourceforge.net>
Mon, 24 Mar 2003 17:45:01 +0000 (17:45 +0000)
committerJeremy T. Bouse <undrgrid@users.sourceforge.net>
Mon, 24 Mar 2003 17:45:01 +0000 (17:45 +0000)
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@459 f882894a-f735-0410-b71e-b25c423dba1c

Makefile.am
pkg/solaris/.cvsignore [new file with mode: 0644]
pkg/solaris/pkginfo.in
plugins/check_disk.c

index 8cc151445d4dbc949d879a7fe06ee774631ecc7d..5e117a5d9435d5c064005981aab8c4d86380b1a5 100644 (file)
@@ -18,17 +18,18 @@ nagios-plugins.spec: nagios-plugins.spec.in
        sed "s/%%{VER}/${VER}/;s/%%{REL}/${REL}/;" $? > $@
 
 # Solaris pkgmk
-BUILDDIR=`pwd`/build-solaris
-PACKDIR=`pwd`/build-pkg
+BUILDDIR := $(shell pwd)/build-solaris
+PACKDIR := $(shell pwd)/build-pkg
+PKGSCRIPT := $(shell pwd)/pkg/solaris/solpkg
 VERSION=@PACKAGE_VERSION@
 
 solpkg:
        if [ ! -d $(BUILDDIR) ] ; then mkdir $(BUILDDIR); fi
        if [ ! -d $(PACKDIR) ] ; then mkdir $(PACKDIR); fi
        $(MAKE) all
-       $(MAKE) DESTDIR=$(BUILDDIR) install
+       $(MAKE) DESTDIR=$(BUILDDIR) prefix=/ install
        $(INSTALL) pkg/solaris/pkginfo $(BUILDDIR)
-       $(cd $(BUILDDIR) && `pwd`/pkg/solaris/solpkg $(PACKDIR))
+       cd $(BUILDDIR) && $(PERL) $(PKGSCRIPT) $(PACKDIR)
 
 pkgclean:
        rm -rf $(BUILDDIR) $(PACKDIR)
diff --git a/pkg/solaris/.cvsignore b/pkg/solaris/.cvsignore
new file mode 100644 (file)
index 0000000..a6bb7e4
--- /dev/null
@@ -0,0 +1,2 @@
+.cvsignore
+pkginfo
index be4b97fa669ee2bd89979634be5edad7c7545133..9211fcf84df2c0a5cff93483b1237c1be6e1cdd1 100644 (file)
@@ -1,12 +1,12 @@
-PKG="NPDTplugins"
-NAME="nagiosplugins"
+PKG="NAGplugin"
+NAME="nagios-plugins"
 DESC="Nagios network monitoring plugins"
 ARCH="@PKG_ARCH@"
 VERSION="@PACKAGE_VERSION@,REV=@REV_DATESTAMP@"
 CATEGORY="application"
 VENDOR="Nagios Plugin Development Team"
 EMAIL="nagiosplug-devel@lists.sourceforge.net"
-PSTAMP="sfw@REV_TIMESTAMP@"
+PSTAMP="nag@REV_TIMESTAMP@"
 BASEDIR="/usr/local"
 CLASSES="none"
 
index a7dd5cce02e331e27c82c61f5c1e29f1dabdcb0e..347c4c77006c4e44c45fdb30d3537d0c9ce9389c 100644 (file)
@@ -64,6 +64,9 @@ const char *options = "\
 #include <stdarg.h>
 #include "../lib/fsusage.h"
 #include "../lib/mountlist.h"
+#if HAVE_LIMITS_H
+# include <limits.h>
+#endif
 
 /* If nonzero, show inode information. */
 static int inode_format;