]> git.meshlink.io Git - catta/blobdiff - avahi-autoipd/Makefile.am
get rid of a lot of old svn cruft
[catta] / avahi-autoipd / Makefile.am
index 2c55241ddc835cc0ea981ee6e2812b9d01a87f6e..1911a805a32ee30fe038a06bcc36236f3a41f9b2 100644 (file)
@@ -1,7 +1,5 @@
-# $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
@@ -36,16 +34,61 @@ sbin_PROGRAMS = avahi-autoipd
 avahi_autoipd_SOURCES = \
        main.c main.h \
         ../avahi-daemon/setproctitle.c  ../avahi-daemon/setproctitle.h \
-       iface.h iface-linux.c \
+       iface.h \
        ../avahi-common/malloc.h ../avahi-common/malloc.c \
        ../avahi-common/timeval.h ../avahi-common/timeval.c
 
 avahi_autoipd_CFLAGS = $(AM_CFLAGS) $(LIBDAEMON_CFLAGS)
 avahi_autoipd_LDADD = $(AM_LDADD) $(LIBDAEMON_LIBS)
 
-pkgsysconf_SCRIPTS=avahi-autoipd.action
+if TARGET_FREEBSD
+avahi_autoipd_SOURCES += iface-bsd.c
+avahi_autoipd_LDADD += -lpcap
+else
+avahi_autoipd_SOURCES += iface-linux.c
+endif
+
+nodist_pkgsysconf_SCRIPTS = avahi-autoipd.action
+
+if TARGET_FREEBSD
+avahi-autoipd.action: avahi-autoipd.action.bsd
+       cp $< $@
+else
+avahi-autoipd.action: avahi-autoipd.action.linux
+       cp $< $@
+endif
+
+if TARGET_DEBIAN
+
+noinst_SCRIPTS = dhclient-enter-hook dhclient-exit-hook
+
+dhclient-enter-hook: dhclient-enter-hook.in
+       sed -e 's,@sbindir\@,$(sbindir),g' $< > $@
+       chmod +x $@
+
+dhclient-exit-hook: dhclient-exit-hook.in
+       sed -e 's,@sbindir\@,$(sbindir),g' $< > $@
+       chmod +x $@
+
+BUILD = dhclient-exit-hook dhclient-enter-hook
+
+dhcliententerdir = $(sysconfdir)/dhcp3/dhclient-enter-hooks.d
+dhclientexitdir = $(sysconfdir)/dhcp3/dhclient-exit-hooks.d
+
+install-exec-hook: dhclient-exit-hook dhclient-enter-hook
+       $(mkdir_p) $(DESTDIR)$(dhcliententerdir) $(DESTDIR)$(dhclientexitdir)
+       $(INSTALL) dhclient-enter-hook $(DESTDIR)$(dhcliententerdir)/avahi-autoipd
+       $(INSTALL) dhclient-exit-hook $(DESTDIR)$(dhclientexitdir)/avahi-autoipd
+
+uninstall-hook:
+       rm -f $(DESTDIR)$(dhcliententerdir)/avahi-autoipd $(DESTDIR)$(dhclientexitdir)/avahi-autoipd
 
 endif
+
+
 endif
+endif
+
+EXTRA_DIST = dhclient-enter-hook.in dhclient-exit-hook.in avahi-autoipd.action.linux avahi-autoipd.action.bsd
 
-EXTRA_DIST=avahi-autoipd.action
+CLEANFILES = dhclient-enter-hook dhclient-exit-hook avahi-autoipd.action