]> git.meshlink.io Git - catta/commitdiff
* Updated doc/TODO
authorSebastien Estienne <sebastien.estienne@gmail.com>
Mon, 13 Feb 2006 08:07:45 +0000 (08:07 +0000)
committerSebastien Estienne <sebastien.estienne@gmail.com>
Mon, 13 Feb 2006 08:07:45 +0000 (08:07 +0000)
 * Welcome onboard to slackware thanx to Diffie (Paul Blazejowski)

git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1134 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe

configure.ac
docs/TODO
initscript/Makefile.am
initscript/slackware/Makefile.am [new file with mode: 0644]
initscript/slackware/avahi-daemon.in [new file with mode: 0644]
initscript/slackware/avahi-dnsconfd.in [new file with mode: 0644]

index be7c378530f68970dbf2ccd48d9166d02c7fd96a..900dd96c3435298fcb04a173b3993895da38bc3f 100644 (file)
@@ -115,7 +115,7 @@ AC_TRY_COMPILE([#include <netinet/in.h>], [
 #
 # Detecting the linux distribution for specific things like init scripts.
 #
-AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the distribution to target: One of debian, gentoo, archlinux, fedora, mandriva, darwin, netbsd, freebsd or none]))
+AC_ARG_WITH(distro, AS_HELP_STRING([--with-distro=DISTRO],[Specify the distribution to target: One of debian, gentoo, archlinux, fedora, mandriva, darwin, netbsd, freebsd, slackware or none]))
 if test "z$with_distro" = "z"; then
     AC_CHECK_FILE(/etc/SuSE-release,with_distro="suse")
     AC_CHECK_FILE(/etc/gentoo-release,with_distro="gentoo")
@@ -123,6 +123,7 @@ if test "z$with_distro" = "z"; then
     AC_CHECK_FILE(/etc/debian_version,with_distro="debian")
     AC_CHECK_FILE(/etc/redhat-release,with_distro="fedora")
     AC_CHECK_FILE(/etc/mandriva-release,with_distro="mandriva")
+    AC_CHECK_FILE(/etc/slackware-version,with_distro="slackware")
     if test "z$with_distro" = "z"; then
         with_distro=`uname -s`
     fi
@@ -130,7 +131,7 @@ fi
 with_distro=`echo ${with_distro} | tr '[[:upper:]]' '[[:lower:]]' `
 
 case $with_distro in
-    debian|gentoo|archlinux|suse|fedora|mandriva|darwin|freebsd|none)
+    debian|gentoo|archlinux|suse|fedora|mandriva|darwin|freebsd|slackware|none)
      ;;
     netbsd)
      AC_MSG_WARN([Your distribution (${with_distro}) is supported but no init script exist yet! (patches welcome)])
@@ -152,6 +153,7 @@ AM_CONDITIONAL(TARGET_MANDRIVA, test x"$with_distro" = xmandriva)
 AM_CONDITIONAL(TARGET_DARWIN, test x"$with_distro" = xdarwin)
 AM_CONDITIONAL(TARGET_NETBSD, test x"$with_distro" = xnetbsd)
 AM_CONDITIONAL(TARGET_FREEBSD, test x"$with_distro" = xfreebsd)
+AM_CONDITIONAL(TARGET_SLACKWARE, test x"$with_distro" = xslackware)
 
 test_gcc_flag() {
     AC_LANG_CONFTEST([int main() {}])
@@ -755,6 +757,7 @@ initscript/fedora/Makefile
 initscript/mandriva/Makefile
 initscript/darwin/Makefile
 initscript/freebsd/Makefile
+initscript/slackware/Makefile
 avahi-dnsconfd/Makefile
 avahi-utils/Makefile
 avahi-python/Makefile
index 55f1aad177759e0b19d6090fcfe45277b5a360be..9907ec677be233635bfaf210595ae2d3e744ceea 100644 (file)
--- a/docs/TODO
+++ b/docs/TODO
@@ -10,7 +10,6 @@ later:
 * libavahi-compat-libdns_sd: implement kDNSServiceFlagsNoAutoRename and missing functions
 * libavahi-compat-howl: implement missing functions
 * add API to allow user to tell the server that some service is not reachable
-* Add static host configuration like static services [lathiat]
 
 done:
 * drop glib from avahi-daemon
@@ -104,3 +103,4 @@ done:
 * fix python scripts
 * Expose AvahiSRecordBrowser over D-BUS and implement in avahi-client
 * avahi-publish-* rewrites in C, update man pages
+* Add static host configuration like static services [lathiat]
index dbce3a2a5d5a5ce35a034c98334aa6296e384047..7fcd15ffd4c0bcc454c3b9cf6edd42b1637ffcd7 100644 (file)
@@ -50,3 +50,7 @@ endif
 if TARGET_FREEBSD
 SUBDIRS += freebsd
 endif
+
+if TARGET_SLACKWARE
+SUBDIRS += slackware
+endif
diff --git a/initscript/slackware/Makefile.am b/initscript/slackware/Makefile.am
new file mode 100644 (file)
index 0000000..5763f7a
--- /dev/null
@@ -0,0 +1,34 @@
+# $Id$
+
+# This file is part of avahi.
+#
+# avahi is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation; either version 2 of the
+# License, or (at your option) any later version.
+#
+# avahi is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+# License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with avahi; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+# USA.
+
+initddir = $(sysconfdir)/rc.d
+
+EXTRA_DIST = avahi-daemon.in avahi-dnsconfd.in
+
+initd_SCRIPTS = rc.avahidaemon rc.avahidnsconfd
+
+CLEANFILES = avahi-daemon avahi-dnsconfd
+
+rc.avahidaemon: avahi-daemon.in
+       sed -e 's,@sbindir\@,$(sbindir),g' $< > $@
+       chmod +x $@
+
+rc.avahidnsconfd: avahi-dnsconfd.in
+       sed -e 's,@sbindir\@,$(sbindir),g' $< > $@
+       chmod +x $@
diff --git a/initscript/slackware/avahi-daemon.in b/initscript/slackware/avahi-daemon.in
new file mode 100644 (file)
index 0000000..acd377d
--- /dev/null
@@ -0,0 +1,80 @@
+#!/bin/bash
+
+# $Id$
+
+# This file is part of avahi.
+#
+# avahi is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation; either version 2 of the
+# License, or (at your option) any later version.
+#
+# avahi is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+# License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with avahi; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+# USA.
+
+# Start/stop/restart the avahi daemon:
+
+PATH=/sbin:/bin:/usr/sbin:/usr/bin
+DESC="Avahi mDNS/DNS-SD Daemon"
+NAME="avahi-daemon"
+DAEMON="@sbindir@/$NAME"
+
+avahid_start()
+{
+  echo "Starting $DESC:  $DAEMON -D"
+  $DAEMON -D
+}
+
+avahid_status()
+{
+  $DAEMON -c
+  [ $? = 0 ]
+}
+
+avahid_stop()
+{
+  echo -en "Stopping $DESC: "
+  $DAEMON -c
+  [ $? != 0 ]
+  echo "stopped";
+  $DAEMON -k 2>/dev/null
+}
+
+avahid_restart()
+{
+  avahid_stop
+  avahid_start
+}
+
+case "$1" in
+'start')
+  if ( ! avahid_status ); then
+    avahid_start
+  else
+    echo "$DESC is already running (will not start it twice)."
+  fi
+  ;;
+'stop')
+  avahid_stop
+  ;;
+'restart')
+  avahid_restart
+  ;;
+'status')
+  if ( avahid_status ); then
+    echo "$DESC is currently running"
+  else
+    echo "$DESC is not running."
+  fi
+  ;;
+*)
+  echo "usage $0 start|stop|status|restart"
+esac
+
diff --git a/initscript/slackware/avahi-dnsconfd.in b/initscript/slackware/avahi-dnsconfd.in
new file mode 100644 (file)
index 0000000..4da14fa
--- /dev/null
@@ -0,0 +1,80 @@
+#!/bin/bash
+
+# $Id$
+
+# This file is part of avahi.
+#
+# avahi is free software; you can redistribute it and/or modify it
+# under the terms of the GNU Lesser General Public License as
+# published by the Free Software Foundation; either version 2 of the
+# License, or (at your option) any later version.
+#
+# avahi is distributed in the hope that it will be useful, but WITHOUT
+# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+# or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public
+# License for more details.
+#
+# You should have received a copy of the GNU Lesser General Public
+# License along with avahi; if not, write to the Free Software
+# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
+# USA.
+
+# Start/stop/restart the avahi dnsconfd daemon:
+
+PATH=/sbin:/bin:/usr/sbin:/usr/bin
+DESC="Avahi mDNS/DNS-SD DNS Server Configuration Daemon"
+NAME="avahi-dnsconfd"
+DAEMON="@sbindir@/$NAME"
+
+avahidns_start()
+{
+  echo "Starting $DESC:  $DAEMON -D"
+  $DAEMON -D
+}
+
+avahidns_status()
+{
+  $DAEMON -c
+  [ $? = 0 ]
+}
+
+avahidns_stop()
+{
+  echo -en "Stopping $DESC: "
+  $DAEMON -c
+  [ $? != 0 ]
+  echo "stopped";
+  $DAEMON -k 2>/dev/null
+}
+
+avahidns_restart()
+{
+  avahidns_stop
+  avahidns_start
+}
+
+case "$1" in
+'start')
+  if ( ! avahidns_status ); then
+    avahidns_start
+  else
+    echo "$DESC is already running (will not start it twice)."
+  fi
+  ;;
+'stop')
+  avahidns_stop
+  ;;
+'restart')
+  avahidns_restart
+  ;;
+'status')
+  if ( avahidns_status ); then
+    echo "$DESC is currently running"
+  else
+    echo "$DESC is not running."
+  fi
+  ;;
+*)
+  echo "usage $0 start|stop|status|restart"
+esac
+