]> arthur.barton.de Git - ngircd-alex.git/blobdiff - Makefile.am
Debian package ("make deb"): fix some lintian(1) warnings
[ngircd-alex.git] / Makefile.am
index 790f0df0b34c64d51b01c739eeaccffa84570629..701bf6b4d1481973ad68c95f506ad3a84cbdc6f7 100644 (file)
@@ -1,6 +1,6 @@
 #
 # ngIRCd -- The Next Generation IRC Daemon
-# Copyright (c)2001-2003 by Alexander Barton (alex@barton.de)
+# Copyright (c)2001-2008 Alexander Barton (alex@barton.de)
 #
 # This program is free software; you can redistribute it and/or modify
 # it under the terms of the GNU General Public License as published by
@@ -8,8 +8,6 @@
 # (at your option) any later version.
 # Please read the file COPYING, README and AUTHORS for more information.
 #
-# $Id: Makefile.am,v 1.17 2005/07/22 21:01:52 alex Exp $
-#
 
 AUTOMAKE_OPTIONS = gnu
 
@@ -17,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
@@ -24,6 +23,9 @@ maintainer-clean-local:
        rm -f mkinstalldirs missing depcomp install-sh
        rm -f config.log debian
 
+testsuite:
+       make -C src/testsuite check
+
 lint:
        make -C src/ngircd lint
 
@@ -31,9 +33,10 @@ srcdoc:
        make -C doc srcdoc
 
 xcode:
-       @xcodebuild -project contrib/MacOSX/ngIRCd.xcode -list >/dev/null 2>&1 \
+       @xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -list \
+        >/dev/null 2>&1 \
         || ( echo; echo "Error: \"xcodebuild\" not found!"; echo; exit 1 )
-       xcodebuild -project contrib/MacOSX/ngIRCd.xcode -alltargets \
+       xcodebuild -project contrib/MacOSX/ngIRCd.xcodeproj -alltargets \
         -buildstyle Development
 
 rpm: distcheck
@@ -41,6 +44,29 @@ rpm: distcheck
 
 deb:
        [ -f debian/rules ] || ln -s contrib/Debian debian
-       dpkg-buildpackage -rfakeroot
+       dpkg-buildpackage -rfakeroot -i
+
+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-