Name | Last modified | Size | Description | |
---|---|---|---|---|
Parent Directory | - | |||
README.html | 2003-12-23 16:46 | 4.6K | ||
build.7 | 2003-12-23 16:46 | 7.0K | ||
build.html | 2003-12-23 16:46 | 4.6K | ||
build.pdf | 2003-12-23 16:46 | 15K | ||
build.pod | 2003-12-23 16:46 | 2.7K | ||
build.ps | 2003-12-23 16:46 | 11K | ||
build.txt | 2003-12-23 16:46 | 2.8K | ||
nrpe-1.9.tar.gz | 2003-07-23 04:25 | 41K | ||
nrpe-1.9_4.diff.gz | 2003-12-23 16:43 | 3.5K | ||
nrpe-1.9_5.diff.gz | 2004-03-16 13:00 | 3.8K | ||
nrpe/solaris/build - how to build a Solaris NRPE package from sources here.
You don't need to do all this. You could also just fetch the prebuild binary package for your Solaris version, and install that one, using pkgadd(1).
Download nrpe-1.9.tar.gz and nrpe-1.9_3.diff.gz. nrpe-1.9.tar.gz is the vanilla upstreams source, you might as well get it from upstream.
Unpack the source
gunzip -c nrpe-1.9.tar.gz | tar -xf -
Now, using a sane patch(1), apply the patch, running
gunzip -c nrpe-1.9_3.diff.gz | patch -p0
. Beware: Solaris patch, as shipped with Solaris 8, does not do this trick. A patch which works is e.g. Larry Wall's GNU patch available from ftp://ftp.gnu.org/pub/gnu/patch/ , and, in Solaris pkg format, from http://www.sunfreeware.com/ .
You could also perform this step on a nearby GNU/Linux or *BSD system, which
likely has a right patch(1)
installed.
If you need to build the package on a different platform as where you've patched it, pack the patched tarball together doing
tar zcf nrpe-1.9.solaris.tar.gz nrpe-1.9
. Copy this file around, and unpack it again on the build platform
tar zxf nrpe-1.9.solaris.tar.gz
.
In the
nrpe-1.9/
directory, run
make -f solaris/Makefile
. (Both Solaris make (tested with SunOS 5.7 /usr/ccs/bin/make) and GNU make do fine.) This creates binary packages
/var/tmp/nrpe-1.9_3-sol8-sparc-local
and, for your convenience
/var/tmp/nrpe-1.9_3-sol8-sparc-local.gz
. If you're building on a SunOS 5.7 box, do
make -f solaris/Makefile OSVERSION=sol7
to get a nice OS string in the package name.
On the platform where you'd like to run NRPE, install it doing
pkgadd -d nrpe-1.9_3-sol8-sparc-local
.
tar zxf nrpe-1.9.tar.gz mv nrpe-1.9 nrpe-1.9.orig tar zxf nrpe-1.9.tar.gz cd nrpe-1.9 mkdir solaris cp /some/where/{Makefile,README.Solaris,nrpe,pkginfo.in,postinstall,preinstall,prototype} solaris make -f solaris/Makefile source-stamp diff -Pdur nrpe-1.9.orig nrpe-1.9 | gzip -c > nrpe-1.9_3.diff.gz
Your diff(1)
needs to understand the -P
flag. Solaris diff(1)
does not.
GNU diff, from the GNU diffutils package, ftp://ftp.gnu.org/pub/gnu/diffutils/
, does.
$Id: build.pod 1507 2003-12-23 15:39:20Z joostvb $
Copyright (C) 2003 Tilburg University
This document is free software; you can redistribute it and/or modify it under the terms of the GNU GPL, available on-line at http://www.gnu.org/copyleft/gpl.html . There is NO WARRANTY.
Joost van Baal <joostvb.uvt.nl>