freebsd-ports/irc/ratbox-services/files/patch-Makefile.in
Pav Lucistnik b873fc159a ratbox-services is a services package written mostly from scratch for
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>
2006-05-01 12:45:14 +00:00

29 lines
886 B
Text

--- Makefile.in.orig Wed May 18 00:33:18 2005
+++ Makefile.in Sat Jan 28 22:58:12 2006
@@ -6,7 +6,7 @@
LIBS=@LIBS@
LDFLAGS=@LDFLAGS@
-SUBDIRS=@SQLITE_SUBDIR@ src help
+SUBDIRS=src help
prefix=@prefix@
exec_prefix=@prefix@
@@ -36,17 +36,6 @@
done
install: build
- $(INSTALL) -m 750 -d $(DESTDIR)$(prefix)
- $(INSTALL) -m 750 -d $(DESTDIR)$(bindir)
- $(INSTALL) -m 750 -d $(DESTDIR)$(sbindir)
- $(INSTALL) -m 750 -d $(DESTDIR)$(sysconfdir)
- $(INSTALL) -m 750 -d $(DESTDIR)$(logdir)
- $(INSTALL) -m 750 -d $(DESTDIR)$(rundir)
- $(INSTALL) -m 750 -d $(DESTDIR)$(helpdir)
- $(INSTALL) -m 750 tools/ircd-shortcut.pl $(DESTDIR)$(bindir)
- $(INSTALL) -m 750 src/$(BIN) $(DESTDIR)$(sbindir)
- $(INSTALL) -m 640 doc/example.conf $(DESTDIR)$(sysconfdir)
- $(INSTALL) -m 640 doc/schema.txt $(DESTDIR)$(sysconfdir)
@for i in $(SUBDIRS); do \
echo "install -> $$i"; \
cd $$i; \