summary refs log tree commit diff
path: root/Makefile.am
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2008-08-12 17:30:38 +0200
committerAlexander Barton <alex@barton.de>2008-08-12 17:30:38 +0200
commit707cc42dec2439da1fdee4ed3eb0e0a44d5ea9fe (patch)
tree9dcfde47b5a9832df6353ef4445c436fd5101f02 /Makefile.am
parent30f1ed211d5014b964f147539970befcd7c9f7d2 (diff)
downloadngircd-707cc42dec2439da1fdee4ed3eb0e0a44d5ea9fe.tar.gz
ngircd-707cc42dec2439da1fdee4ed3eb0e0a44d5ea9fe.zip
New make target: "osxpkg" to create an Mac OS X installer package.
This patch adds a new make target, "osxpkg", to the main Makefile which
gereates a Apple Mac OS X installer package of ngIRCd. The packagemaker(1)
project bundle is stored in contrib/MacOSX/ngIRCd.pmdoc.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am24
1 files changed, 24 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index d678f171..23ed90bc 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -15,6 +15,7 @@ SUBDIRS = doc src man contrib
 
 clean-local:
 	rm -f build-stamp*
+	rm -rf ngircd.dest
 
 maintainer-clean-local:
 	rm -rf autom4te.cache
@@ -45,4 +46,27 @@ deb:
 	[ -f debian/rules ] || ln -s contrib/Debian debian
 	dpkg-buildpackage -rfakeroot
 
+osxpkg:
+	@packagemaker >/dev/null 2>&1; [ $$? -ge 1 ] \
+	 || ( echo; echo "Error: \"packagemaker\" not found!"; echo; exit 2)
+	make clean
+	./configure --prefix=/opt/ngircd
+	make xcode
+	make -C contrib/MacOSX de.barton.ngircd.plist
+	mkdir -p ngircd.dest/opt/ngircd/sbin
+	DESTDIR="$$PWD/ngircd.dest" make -C doc install
+	DESTDIR="$$PWD/ngircd.dest" make -C contrib install
+	DESTDIR="$$PWD/ngircd.dest" make -C man install
+	cp contrib/MacOSX/build/Default/ngIRCd \
+	 ngircd.dest/opt/ngircd/sbin/ngircd
+	rm ngircd.dest/opt/ngircd/etc/ngircd.conf
+	echo "Have a nice day IRCing!" >ngircd.dest/opt/ngircd/etc/ngircd.motd
+	chmod -R a-s,og-w,a+rX ngircd.dest
+	cd contrib/MacOSX && packagemaker \
+	 --doc ngIRCd.pmdoc \
+	 --out ../../$(distdir).mpkg
+	rm -f $(distdir).mpkg.zip
+	zip -ro9 $(distdir).mpkg.zip $(distdir).mpkg
+	rm -rf ngircd.dest $(distdir).mpkg
+
 # -eof-