Guest User

Leopard Avahi makefile

a guest
Mar 8th, 2012
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Make 1.89 KB | None | 0 0
  1. # Copyright (C) 2011 RidgeRun (http://www.ridgerun.com)
  2. #
  3. # A license for this software is granted for evaluation purposes only.
  4. # Commercial use and/or redistribution is strictly forbidden without
  5. # written consent from RidgeRun.      
  6. # An evaluation license may be available for educational or personal
  7. # use.  Contact RidgeRun for permission.
  8. PKG_URL=http://postgresql.mirrorservice.org/sites/www.ibiblio.org/gentoo/distfiles
  9. PKG_TARBALL=avahi-0.6.19.tar.gz
  10. PKG_SHA1SUM=367322064a5dd66a0e69c75df9407ab3518aebdc
  11.  
  12. #CONFIG_SITE=$(DEVDIR)/fs/apps/avahi-0.6.19/config.site
  13.  
  14. # Since avahi hard codes configuration paths into the binaries we cross-compile with prefix=/usr
  15. # and use the DESTDIR parameter to place the output in $(FSDEVROOT)
  16. DESTDIR=$(FSDEVROOT)
  17.  
  18. AUTOTOOLS_PARAMS= ac_cv_func_malloc_0_nonnull=yes ac_cv_func_realloc_0_nonnull=yes \
  19. --prefix=/usr --sysconfdir=/etc --localstatedir=/var \
  20. --with-avahi-user=root --with-avahi-group=root --with-avahi-priv-access-group=root \
  21. --with-autoipd-user=root --with-autoipd-group=root --disable-glib --disable-qt3 \
  22. --disable-qt4 --disable-gtk --disable-dbus --disable-python --disable-pygtk \
  23. --disable-python-dbus --disable-mono --disable-monodoc --disable-doxygen-doc \
  24. --disable-doxygen-dot --disable-doxygen-html --disable-stack-protector \
  25. --disable-manpages --disable-xmltoman --with-distro=none --disable-gdbm \
  26. --disable-gtk3
  27.  
  28. INIT_SCRIPT=avahi-daemon.init
  29. INIT_SCRIPT_LEVEL=99
  30.  
  31. BINARIES= /usr/sbin/avahi-daemon /usr/sbin/avahi-autoipd /usr/sbin/avahi-dnsconfd
  32.  
  33. LIBRARIES= /usr/lib/libavahi-core.so.5.0.2 \
  34.         /usr/lib/libavahi-common.so.3.4.4
  35.  
  36. OTHERS= /etc/avahi/avahi-autoipd.action \
  37.         /etc/avahi/avahi-daemon.conf \
  38.         /etc/avahi/avahi-dnsconfd.action \
  39.         /etc/avahi/hosts \
  40.         /etc/avahi/services/sftp-ssh.service \
  41.         /etc/avahi/services/ssh.service
  42.  
  43. include ../../../bsp/classes/rrsdk.class
  44. include $(CLASSES)/autotools.class
Advertisement
Add Comment
Please, Sign In to add comment