diff options
author | mharo <mharo@FreeBSD.org> | 2001-04-02 18:21:20 +0800 |
---|---|---|
committer | mharo <mharo@FreeBSD.org> | 2001-04-02 18:21:20 +0800 |
commit | bd6abf9215a6b322dbc96c92d646d95934b1bf69 (patch) | |
tree | da78bb71a10adbca420edf7fad4b8a0b049e5cff /sysutils/cfengine3/files | |
parent | f8da3d7073c8bf596211923c25f468b13f55502b (diff) | |
download | freebsd-ports-gnome-bd6abf9215a6b322dbc96c92d646d95934b1bf69.tar.gz freebsd-ports-gnome-bd6abf9215a6b322dbc96c92d646d95934b1bf69.tar.zst freebsd-ports-gnome-bd6abf9215a6b322dbc96c92d646d95934b1bf69.zip |
Per the instructions of the software, cfengine is now dependent on BerkleyDB 3.
In fact, the only thing (that I can tell anyway) that uses the DB functions is
cfd. I'm guessing most people don't use it, especially since I haven't heard
any complaints about it.
Also, it was putting some of the docs in / (for some really strange reason).
That should be fixed too. They are now put in {PREFIX}/share/doc/cfengine,
depending on NOPORTSDOC (somewhat reverse logic than normal, but it made the
amount of changes less).
Finally, strip the binaries.
PR: 26189
Submitted by: maintainer
Diffstat (limited to 'sysutils/cfengine3/files')
-rw-r--r-- | sysutils/cfengine3/files/patch-ad | 7 | ||||
-rw-r--r-- | sysutils/cfengine3/files/patch-ae | 15 |
2 files changed, 20 insertions, 2 deletions
diff --git a/sysutils/cfengine3/files/patch-ad b/sysutils/cfengine3/files/patch-ad index 39fe0b6f9b16..f8a19a8ba386 100644 --- a/sysutils/cfengine3/files/patch-ad +++ b/sysutils/cfengine3/files/patch-ad @@ -1,3 +1,6 @@ +This moves the documentation out of /usr/local/share/cfengine/{doc,html} into +/usr/local/shared/doc/cfengine to keep it inline with the rest of the ports. + --- doc/Makefile.am.orig Fri Dec 1 19:24:39 2000 +++ doc/Makefile.am Tue Jan 23 02:07:04 2001 @@ -2,7 +2,7 @@ @@ -5,7 +8,7 @@ # Info used in building and installing HTML files -htmldir = $(pkgdatadir)/html -+htmldir = # $(pkgdatadir)/html ++htmldir = $(datadir)/doc/cfengine htmlfiles = cfengine-Reference.html cfengine-Tutorial.html html_DATA = $(htmlfiles) cf-security.html @@ -14,7 +17,7 @@ psfiles = $(ps1) # $(ps2) -psdir = $(pkgdatadir)/doc -+psdir = # $(pkgdatadir)/doc ++psdir = $(datadir)/doc/cfengine ps_DATA = $(psfiles) # Make sure these get distributed with everything else. diff --git a/sysutils/cfengine3/files/patch-ae b/sysutils/cfengine3/files/patch-ae new file mode 100644 index 000000000000..364e79ebecbb --- /dev/null +++ b/sysutils/cfengine3/files/patch-ae @@ -0,0 +1,15 @@ +This patch only makes sense if you subscribe to the FreeBSD port model. +Basically this only works if you have installed BerkleyDB from the ports +collection. + +--- src/misc.c.orig Wed Jan 24 07:28:01 2001 ++++ src/misc.c Wed Mar 28 12:41:06 2001 +@@ -39,7 +39,7 @@ + + + #ifdef HAVE_DB_H +-# include <db.h> ++#include <db3/db.h> + #endif + + /*******************************************************************/ |