]> git.immae.eu Git - perso/Immae/Config/AUR.git/blobdiff - PKGBUILD
Move sample config files so they don't pollute the config directory on updates
[perso/Immae/Config/AUR.git] / PKGBUILD
index 84e901bcc0613ba7841fef6b8bb400486bb8c199..7068a06744e0da82004e5cc19cdfeaf0530be581 100644 (file)
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,28 +1,31 @@
 # Maintainer: Jonathan Steel <jsteel at archlinux.org>
 
-pkgbase=naemon
-pkgname=('naemon-core' 'naemon-livestatus' 'naemon-thruk')
-pkgver=1.0.3
+pkgname=naemon
+pkgver=1.0.6
 pkgrel=2
+pkgdesc="System and network monitoring application"
 arch=('i686' 'x86_64')
 url="http://naemon.org"
 license=('GPL2')
-makedepends=('gperf' 'rsync' 'gd' 'mariadb-clients')
-source=(http://labs.consol.de/naemon/release/v$pkgver/src/$pkgbase-$pkgver.tar.gz
-        $pkgbase.service)
-md5sums=('0d6873669bd44375978c97174529e258'
+depends=('icu' 'glib2')
+optdepends=('logrotate'
+            'thruk: Web interface for Naemon'
+            'monitoring-plugins')
+makedepends=('gperf' 'help2man')
+provides=('naemon-core' 'naemon-livestatus')
+conflicts=('naemon-core' 'naemon-livestatus')
+replaces=('naemon-core' 'naemon-livestatus')
+source=(http://labs.consol.de/naemon/release/v$pkgver/src/$pkgname-$pkgver.tar.gz
+        $pkgname.service)
+md5sums=('6c9b95a737a8f232e114f4cff200ff92'
          'd6a77534e612e8f65ff3360336faec77')
-
-prepare() {
-  cd $pkgbase-$pkgver
-
-  # Break up the install process so we can package the separate components
-  sed -i '60iinstall-livestatus:' Makefile
-  sed -i '62iinstall-thruk:' Makefile
-}
+backup=('etc/logrotate.d/naemon'
+        'etc/naemon/naemon.cfg'
+        'etc/naemon/resource.cfg')
+install=$pkgname.install
 
 build() {
-  cd $pkgbase-$pkgver
+  cd $pkgname-$pkgver
 
   ./configure --prefix=/usr \
               --bindir=/usr/bin \
@@ -54,67 +57,31 @@ build() {
 }
 
 check() {
-  cd $pkgbase-$pkgver/naemon-core
+  cd $pkgname-$pkgver/naemon-core
 
   make check
 }
 
-package_naemon-core() {
-pkgdesc="System and network monitoring application"
-depends=('bash')
-optdepends=('logrotate'
-            'monitoring-plugins')
-backup=('etc/logrotate.d/naemon' 'etc/naemon/conf.d/commands.cfg'
-  'etc/naemon/conf.d/contacts.cfg' 'etc/naemon/conf.d/localhost.cfg'
-  'etc/naemon/conf.d/printer.cfg' 'etc/naemon/conf.d/switch.cfg'
-  'etc/naemon/conf.d/templates/contacts.cfg'
-  'etc/naemon/conf.d/templates/hosts.cfg'
-  'etc/naemon/conf.d/templates/services.cfg'
-  'etc/naemon/conf.d/timeperiods.cfg' 'etc/naemon/conf.d/windows.cfg'
-  'etc/naemon/naemon.cfg' 'etc/naemon/resource.cfg')
-install=$pkgbase.install
-
-  cd $pkgbase-$pkgver
+package() {
+  cd $pkgname-$pkgver
 
   make DESTDIR="$pkgdir" install
 
-  chown -R 44:44 "$pkgdir"/var/{cache,log}/$pkgbase
-  chmod -R 770 "$pkgdir"/var/{cache,log}/$pkgbase
-
-  install -Dm644 "$srcdir"/$pkgbase.service \
-    "$pkgdir"/usr/lib/systemd/system/$pkgbase.service
-
-  # Remove init script
-  rm -rf "$pkgdir"/etc/init.d
-}
-
-package_naemon-livestatus() {
-pkgdesc="Standard API for Naemon"
-depends=('icu')
-
-  cd $pkgbase-$pkgver
-
-  make DESTDIR="$pkgdir" install-livestatus
-}
-
-package_naemon-thruk() {
-pkgdesc="Monitoring Webinterface for Naemon"
-depends=('gd' 'mariadb-clients' 'apache' 'mod_fcgid')
-backup=('etc/naemon/cgi.cfg' 'etc/naemon/htpasswd'
-  'etc/naemon/log4perl.conf' 'etc/naemon/menu_local.conf'
-  'etc/naemon/naglint.conf' 'etc/httpd/conf/extra/thruk.conf'
-  'etc/httpd/conf/extra/thruk_cookie_auth_vhost.conf'
-  'etc/naemon/thruk_local.conf' 'etc/naemon/thruk.conf'
-  'etc/naemon/conf.d/thruk_bp_generated.cfg'
-  'etc/naemon/conf.d/thruk_templates.cfg' 'etc/logrotate.d/thruk')
+  install -d "$pkgdir"/etc/naemon/module-conf.d
+  install -d "$pkgdir"/var/lib/naemon/spool/checkresults
 
-  cd $pkgbase-$pkgver
+  chown -R 44:44 "$pkgdir"/var/{cache,lib,log}/$pkgname
+  chown -R 44:44 "$pkgdir"/etc/naemon
+  chmod -R 770 "$pkgdir"/var/{cache,lib,log}/$pkgname
 
-  make DESTDIR="$pkgdir" install-thruk
+  install -Dm644 "$srcdir"/$pkgname.service \
+    "$pkgdir"/usr/lib/systemd/system/$pkgname.service
 
-  chown -R 44:44 "$pkgdir"/var/{cache,lib,log}/$pkgbase
-  chmod -R 770 "$pkgdir"/var/{cache,lib,log}/$pkgbase
+  # Move sample config files
+  mv "$pkgdir"/etc/naemon/conf.d "$pkgdir"/etc/naemon/examples
+  install -d "$pkgdir"/etc/naemon/conf.d/templates
 
-  # Remove init script
+  # Remove non-Arch directories
   rm -rf "$pkgdir"/etc/init.d
+  rm -rf "$pkgdir"/etc/apache2
 }