]> arthur.barton.de Git - ngircd-alex.git/blob - contrib/MacOSX/Makefile.am
Install a LaunchDaemon script to start/stop ngIRCd on Mac OS X.
[ngircd-alex.git] / contrib / MacOSX / Makefile.am
1 #
2 # ngIRCd -- The Next Generation IRC Daemon
3 # Copyright (c)2001-2008 Alexander Barton <alex@barton.de>
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 # Please read the file COPYING, README and AUTHORS for more information.
10 #
11 # $Id: Makefile.am,v 1.3 2008/02/17 15:31:15 alex Exp $
12 #
13
14 EXTRA_DIST = de.barton.ngircd.plist.tmpl config.h cvs-version.h
15
16 SUFFIXES = .tmpl .
17
18 .tmpl:
19         sed \
20             -e s@:SBINDIR:@${sbindir}@ \
21             <$< >$@
22
23 install-data-local:
24         [ `uname -s` != "Darwin" ] || make install-sys-darwin
25
26 install-sys-darwin:
27         @if [ `id -u` -eq 0 ]; then \
28           make install-sys-darwin-root; \
29         else \
30           echo; \
31           echo " ** NOTE: Not installing with root privileges, so the LaunchDaemon script"; \
32           echo " ** \"/Library/LaunchDaemons/de.barton.ngircd.plist\" can't be installed/updated!"; \
33           echo; \
34         fi
35
36 install-sys-darwin-root: de.barton.ngircd.plist
37         install -c -m 644 -b -o root -g wheel de.barton.ngircd.plist /Library/LaunchDaemons/de.barton.ngircd.plist
38         @echo
39         @echo " ** \"/Library/LaunchDaemons/de.barton.ngircd.plist\" has been installed,"
40         @echo " ** but is disabled. Use launchctl(8) to enable/run ngIRCd on Darwin/Mac OS X."
41         @echo
42
43 clean-local:
44         rm -rf build
45
46 maintainer-clean-local:
47         rm -f Makefile Makefile.in
48
49 # -eof-