diff options
author | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2006-01-27 06:09:27 +0000 |
---|---|---|
committer | Jean-Yves Lefort <jylefort@FreeBSD.org> | 2006-01-27 06:09:27 +0000 |
commit | 4019b070f6746eb2a0556fd6ac002eb6dce8ec70 (patch) | |
tree | d24afa98baa95e0b695620c127d103e5c2b0483f /irc/ircd-ratbox-devel/files/patch-doc_Makefile.in | |
parent | USE_MESA has been removed from bsd.port.mk. (diff) |
Add ircd-ratbox.
This is a port of the ircd-ratbox IRC daemon.
ircd-ratbox is the primary ircd used on EFnet; it combines the stability
of an ircd required for a large production network together with a rich
set of features, making it also suitable for use on smaller networks.
WWW: http://www.ircd-ratbox.org/
PR: ports/92404
Submitted by: Shaun Amott <shaun@inerd.com>
Notes
Notes:
svn path=/head/; revision=154556
Diffstat (limited to 'irc/ircd-ratbox-devel/files/patch-doc_Makefile.in')
-rw-r--r-- | irc/ircd-ratbox-devel/files/patch-doc_Makefile.in | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/irc/ircd-ratbox-devel/files/patch-doc_Makefile.in b/irc/ircd-ratbox-devel/files/patch-doc_Makefile.in new file mode 100644 index 000000000000..5d60cc8aab3d --- /dev/null +++ b/irc/ircd-ratbox-devel/files/patch-doc_Makefile.in @@ -0,0 +1,32 @@ +--- doc/Makefile.in.orig Fri Jun 18 01:19:00 2004 ++++ doc/Makefile.in Fri Jan 27 07:03:15 2006 +@@ -53,28 +53,9 @@ + fi + + install: install-mkdirs build +- @echo "ircd: installing example config files ($(CONFS))" +- @for i in $(CONFS); do \ +- if test -f $(DESTDIR)$(confdir)/$$i; then \ +- $(MV) $(DESTDIR)$(confdir)/$$i $(DESTDIR)$(confdir)/$$i.old; \ +- fi; \ +- $(INSTALL_DATA) $$i $(DESTDIR)$(confdir); \ +- done +- +- @for i in $(DEFAULTCONFS); do \ +- if test ! -f $(DESTDIR)$(confdir)/$$i; then \ +- echo "ircd: creating config file ($$i)"; \ +- ${TOUCH} $(DESTDIR)$(confdir)/$$i; \ +- fi; \ +- done +- + -@if test ! -f $(DESTDIR)$(confdir)/ircd.motd; then \ + echo "ircd: installing motd file (ircd.motd)"; \ +- $(INSTALL_DATA) ircd.motd $(DESTDIR)$(confdir); \ +- fi +- +- -@if test -f $(DESTDIR)$(confdir)/links.txt; then \ +- $(RM) $(DESTDIR)$(confdir)/links.txt; \ ++ $(INSTALL_DATA) ircd.motd $(DESTDIR)$(confdir)/ircd.motd.sample; \ + fi + + @echo "ircd: installing manpage" |