mirror of
https://git.freebsd.org/ports.git
synced 2025-06-29 08:30:37 -04:00
use with ircd-ratbox. It is highly configurable, with nearly all options being set in a config that can be rehashed rather than set at compile time. It also uses the SQLite database backend, which works as a database interface to a normal file, meaning no seperate database software must be running. Features: - User, nick and channel services - Jupe service - Global message service - Oper services - Opered bot - List service WWW: http://services.ircd-ratbox.org/ PR: ports/92520 Submitted by: Shaun Amott <shaun@inerd.com>
15 lines
529 B
Text
15 lines
529 B
Text
--- help/Makefile.in.orig Wed Jun 15 15:21:39 2005
|
|
+++ help/Makefile.in Sat Jan 28 23:15:11 2006
|
|
@@ -10,10 +10,10 @@
|
|
SUBDIRS=alis main operbot chanserv userserv jupeserv operserv nickserv global banserv
|
|
|
|
install:
|
|
- $(INSTALL) -m 750 -d $(DESTDIR)$(helpdir)
|
|
+ $(INSTALL) -d $(DESTDIR)$(helpdir)
|
|
|
|
@for i in $(SUBDIRS); do \
|
|
- $(INSTALL) -m 750 -d $(DESTDIR)$(helpdir)/$$i; \
|
|
+ $(INSTALL) -d $(DESTDIR)$(helpdir)/$$i; \
|
|
for j in $$i/*; do \
|
|
if [ -f $$j ]; then \
|
|
$(INSTALL_DATA) $$j $(DESTDIR)$(helpdir)/$$i; \
|