aboutsummaryrefslogtreecommitdiff
path: root/sysutils/cfengine3/files
diff options
context:
space:
mode:
Diffstat (limited to 'sysutils/cfengine3/files')
-rw-r--r--sysutils/cfengine3/files/cfexecd.in30
-rw-r--r--sysutils/cfengine3/files/cfservd.in30
-rw-r--r--sysutils/cfengine3/files/patch-Makefile.in40
-rw-r--r--sysutils/cfengine3/files/patch-contrib_Makefile.in18
-rw-r--r--sysutils/cfengine3/files/patch-doc_Makefile.in75
-rw-r--r--sysutils/cfengine3/files/patch-inputs_Makefile.in18
6 files changed, 0 insertions, 211 deletions
diff --git a/sysutils/cfengine3/files/cfexecd.in b/sysutils/cfengine3/files/cfexecd.in
deleted file mode 100644
index a892216ff80e..000000000000
--- a/sysutils/cfengine3/files/cfexecd.in
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# PROVIDE: cfexecd
-# REQUIRE: SERVERS
-# BEFORE: DAEMON
-# KEYWORD: shutdown
-#
-# Add the following line to /etc/rc.conf[.local] to enable cfexecd(8)
-#
-# cfexecd_enable (bool): Set to "NO" by default.
-# Set it to "YES" to enable cfexecd.
-# cfexecd_flags (str): Custom additional arguments to be passed
-# to cfexecd (default empty).
-#
-
-. %%RC_SUBR%%
-
-name="cfexecd"
-rcvar=${name}_enable
-
-command="%%PREFIX%%/sbin/${name}"
-
-load_rc_config $name
-
-: ${cfexecd_enable="NO"}
-: ${cfexecd_flags=""}
-
-run_rc_command "$1"
diff --git a/sysutils/cfengine3/files/cfservd.in b/sysutils/cfengine3/files/cfservd.in
deleted file mode 100644
index caa8300fd181..000000000000
--- a/sysutils/cfengine3/files/cfservd.in
+++ /dev/null
@@ -1,30 +0,0 @@
-#!/bin/sh
-#
-# $FreeBSD$
-#
-# PROVIDE: cfservd
-# REQUIRE: SERVERS
-# BEFORE: DAEMON
-# KEYWORD: shutdown
-#
-# Add the following line to /etc/rc.conf[.local] to enable cfservd(8)
-#
-# cfservd_enable (bool): Set to "NO" by default.
-# Set it to "YES" to enable cfservd.
-# cfservd_flags (str): Custom additional arguments to be passed
-# to cfservd (default empty).
-#
-
-. %%RC_SUBR%%
-
-name="cfservd"
-rcvar=${name}_enable
-
-command="%%PREFIX%%/sbin/${name}"
-
-load_rc_config $name
-
-: ${cfservd_enable="NO"}
-: ${cfservd_flags=""}
-
-run_rc_command "$1"
diff --git a/sysutils/cfengine3/files/patch-Makefile.in b/sysutils/cfengine3/files/patch-Makefile.in
deleted file mode 100644
index 558288e16305..000000000000
--- a/sysutils/cfengine3/files/patch-Makefile.in
+++ /dev/null
@@ -1,40 +0,0 @@
---- Makefile.in.orig Mon Aug 4 10:55:48 2008
-+++ Makefile.in Tue Aug 12 23:03:09 2008
-@@ -187,7 +187,7 @@
- builddir = @builddir@
- datadir = @datadir@
- datarootdir = @datarootdir@
--docdir = $(pkgdatadir)
-+docdir = $(prefix)/share/doc/cfengine
- dvidir = @dvidir@
- exec_prefix = @exec_prefix@
- host = @host@
-@@ -225,7 +225,11 @@
- @BUILD_DOC_TRUE@DOC_DIR = doc
- SUBDIRS = pub src contrib inputs $(DOC_DIR)
- EXTRA_DIST = acconfig.h doc/cfengine.8 COPYING ChangeLog INSTALL NEWS README LICENSE
--doc_DATA = README ChangeLog INSTALL NEWS
-+.if defined(NOPORTDOCS)
-+doc_DATA =
-+.else
-+doc_DATA = README ChangeLog INSTALL NEWS AUTHORS TODO
-+.endif
-
- #
- # Some basic clean ups
-@@ -300,6 +304,7 @@
- -rm -f libtool
- install-docDATA: $(doc_DATA)
- @$(NORMAL_INSTALL)
-+.if !defined(NOPORTDOCS)
- test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)"
- @list='$(doc_DATA)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-@@ -307,6 +312,7 @@
- echo " $(docDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(docdir)/$$f'"; \
- $(docDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \
- done
-+.endif
-
- uninstall-docDATA:
- @$(NORMAL_UNINSTALL)
diff --git a/sysutils/cfengine3/files/patch-contrib_Makefile.in b/sysutils/cfengine3/files/patch-contrib_Makefile.in
deleted file mode 100644
index 5dac09930b39..000000000000
--- a/sysutils/cfengine3/files/patch-contrib_Makefile.in
+++ /dev/null
@@ -1,18 +0,0 @@
---- contrib/Makefile.in.orig 2008-07-01 22:50:46.000000000 -0400
-+++ contrib/Makefile.in 2008-07-01 22:51:08.000000000 -0400
-@@ -251,6 +251,7 @@
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- install-pkgdataSCRIPTS: $(pkgdata_SCRIPTS)
- @$(NORMAL_INSTALL)
-+.if !defined(NOPORTEXAMPLES)
- test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
- @list='$(pkgdata_SCRIPTS)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-@@ -260,6 +261,7 @@
- $(pkgdataSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgdatadir)/$$f"; \
- else :; fi; \
- done
-+.endif
-
- uninstall-pkgdataSCRIPTS:
- @$(NORMAL_UNINSTALL)
diff --git a/sysutils/cfengine3/files/patch-doc_Makefile.in b/sysutils/cfengine3/files/patch-doc_Makefile.in
deleted file mode 100644
index d5a6b15f2fbf..000000000000
--- a/sysutils/cfengine3/files/patch-doc_Makefile.in
+++ /dev/null
@@ -1,75 +0,0 @@
---- doc/Makefile.in.orig 2008-08-04 21:55:47.000000000 +0400
-+++ doc/Makefile.in 2008-08-08 02:18:39.000000000 +0400
-@@ -214,7 +214,7 @@
- man_MANS = cfengine.8 cfagent.8 cfenvd.8 cfenvgraph.8 cfexecd.8 cfkey.8 cfrun.8 cfservd.8 cfshow.8 cfetoolcheck.8 cfetooldump.8 cfetoolimport.8 cfetoolupdate.8 cfetoolcreate.8 cfetoolgraph.8 cfetoolinfo.8
-
- # Info used in building the Info files
--info_TEXINFOS = cfengine-Reference.texinfo cfengine-Tutorial.texinfo # cfengine-Anomalies.texinfo
-+info_TEXINFOS =
- infofiles = $(info_TEXINFOS:.texinfo=.info)
- MAKEINFOHTML = $(MAKEINFO) --html --css-include=cfcomdoc.css --no-split
-
-@@ -476,6 +476,7 @@
- done
-
- dist-info: $(INFO_DEPS)
-+.if !defined(NOPORTDOCS)
- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
- list='$(INFO_DEPS)'; \
- for base in $$list; do \
-@@ -492,6 +493,7 @@
- else :; fi; \
- done; \
- done
-+.endif
-
- mostlyclean-aminfo:
- -rm -rf cfengine-Reference.aux cfengine-Reference.cp cfengine-Reference.cps \
-@@ -570,6 +572,7 @@
- done
- install-docDATA: $(doc_DATA)
- @$(NORMAL_INSTALL)
-+.if !defined(NOPORTDOCS)
- test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)"
- @list='$(doc_DATA)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-@@ -577,6 +580,7 @@
- echo " $(docDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(docdir)/$$f'"; \
- $(docDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(docdir)/$$f"; \
- done
-+.endif
-
- uninstall-docDATA:
- @$(NORMAL_UNINSTALL)
-@@ -587,6 +591,7 @@
- done
- install-htmlDATA: $(html_DATA)
- @$(NORMAL_INSTALL)
-+.if !defined(NOPORTDOCS)
- test -z "$(htmldir)" || $(MKDIR_P) "$(DESTDIR)$(htmldir)"
- @list='$(html_DATA)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-@@ -594,6 +599,7 @@
- echo " $(htmlDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
- $(htmlDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
- done
-+.endif
-
- uninstall-htmlDATA:
- @$(NORMAL_UNINSTALL)
-@@ -730,6 +736,7 @@
- install-info: install-info-am
-
- install-info-am: $(INFO_DEPS)
-+.if !defined(NOPORTDOCS)
- @$(NORMAL_INSTALL)
- test -z "$(infodir)" || $(MKDIR_P) "$(DESTDIR)$(infodir)"
- @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
-@@ -759,6 +766,7 @@
- install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
- done; \
- else : ; fi
-+.endif
- install-man: install-man8
-
- install-pdf: install-pdf-am
diff --git a/sysutils/cfengine3/files/patch-inputs_Makefile.in b/sysutils/cfengine3/files/patch-inputs_Makefile.in
deleted file mode 100644
index bac3996a6dc6..000000000000
--- a/sysutils/cfengine3/files/patch-inputs_Makefile.in
+++ /dev/null
@@ -1,18 +0,0 @@
---- inputs/Makefile.in.orig 2008-07-01 22:51:16.000000000 -0400
-+++ inputs/Makefile.in 2008-07-01 22:51:37.000000000 -0400
-@@ -267,6 +267,7 @@
- cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
- install-pkgdataSCRIPTS: $(pkgdata_SCRIPTS)
- @$(NORMAL_INSTALL)
-+.if !defined(NOPORTEXAMPLES)
- test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)"
- @list='$(pkgdata_SCRIPTS)'; for p in $$list; do \
- if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
-@@ -276,6 +277,7 @@
- $(pkgdataSCRIPT_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgdatadir)/$$f"; \
- else :; fi; \
- done
-+.endif
-
- uninstall-pkgdataSCRIPTS:
- @$(NORMAL_UNINSTALL)