summaryrefslogtreecommitdiffstats
path: root/abs/core-testing/avahi
diff options
context:
space:
mode:
Diffstat (limited to 'abs/core-testing/avahi')
-rw-r--r--abs/core-testing/avahi/ChangeLog17
-rw-r--r--abs/core-testing/avahi/PKGBUILD71
-rw-r--r--abs/core-testing/avahi/avahi-daemon-dbus.patch16
-rw-r--r--abs/core-testing/avahi/avahi.install42
-rw-r--r--abs/core-testing/avahi/gnome-nettool.pngbin4509 -> 0 bytes
5 files changed, 0 insertions, 146 deletions
diff --git a/abs/core-testing/avahi/ChangeLog b/abs/core-testing/avahi/ChangeLog
deleted file mode 100644
index 57984a3..0000000
--- a/abs/core-testing/avahi/ChangeLog
+++ /dev/null
@@ -1,17 +0,0 @@
-
-2009-04-23 Douglas Soares de Andrade <douglas@archlinux.org>
-
- * Updated for i686: 0.6.25
-
-2009-03-21 Eric Belanger <eric@archlinux.org>
-
- * Added optdepends for avahi-discover (close FS#11250)
-
-2009-01-04 Douglas Soares de Andrade <douglas@archlinux.org>
-
- * Updated for i686: 0.6.24
-
-2008-07-22 Douglas Soares de Andrade <douglas@archlinux.org>
-
- * Updated for i686: 0.6.23
-
diff --git a/abs/core-testing/avahi/PKGBUILD b/abs/core-testing/avahi/PKGBUILD
deleted file mode 100644
index f3d15bf..0000000
--- a/abs/core-testing/avahi/PKGBUILD
+++ /dev/null
@@ -1,71 +0,0 @@
-# $Id: PKGBUILD 70504 2010-02-27 03:24:54Z dgriffiths $
-# Contributor: Douglas Soares de Andrade <douglas@archlinux.org>
-
-pkgname=avahi
-pkgver=0.6.25
-pkgrel=3
-pkgdesc="A multicast/unicast DNS-SD framework"
-arch=('i686' 'x86_64')
-url="http://www.avahi.org/"
-license=('LGPL')
-depends=('dbus>=1.1.20-1' 'libcap>=2.16' 'libdaemon>=0.11' 'gdbm' 'glib2' 'expat')
-optdepends=('qt3: Qt3 UI support'
- 'libglade: avahi-discover-standalone'
- 'nss-mdns: NSS support for mDNS'
- 'pygtk: avahi-discover'
- 'dbus-python: avahi-discover')
-makedepends=('mono' 'pygtk' 'gtk-sharp-2' 'dbus-python' 'qt3' 'libglade' 'intltool')
-backup=(etc/avahi/avahi-daemon.conf etc/avahi/services/{sftp-,}ssh.service)
-install=avahi.install
-conflicts=('howl' 'mdnsresponder')
-provides=('howl' 'mdnsresponder')
-replaces=('howl' 'mdnsresponder')
-options=('!libtool')
-source=(http://www.avahi.org/download/avahi-${pkgver}.tar.gz gnome-nettool.png avahi-daemon-dbus.patch)
-
-build() {
- [ -z "${QTDIR}" ] && . /etc/profile.d/qt3.sh
- export MONO_SHARED_DIR=${srcdir}/.wabi
- mkdir -p ${MONO_SHARED_DIR}
-
- cd ${srcdir}/${pkgname}-${pkgver}
-
- sed -i 's|Requires.private|Requires|' avahi-qt3.pc.in
-
- ./configure --prefix=/usr \
- --sysconfdir=/etc \
- --localstatedir=/var \
- --disable-qt4 \
- --disable-monodoc \
- --disable-doxygen-doc \
- --disable-xmltoman \
- --enable-compat-libdns_sd \
- --enable-compat-howl \
- --with-distro=archlinux \
- --with-avahi-priv-access-group=network \
- --enable-autoipd \
- --with-autoipd-user=avahi \
- --with-autoipd-group=avahi
-
- make || return 1
- make DESTDIR=${pkgdir} install
-
- rm -rf ${MONO_SHARED_DIR}
-
- sed -i -e 's/netdev/network/g' ${pkgdir}/etc/dbus-1/system.d/avahi-dbus.conf
-
- # howl and mdnsresponder compatability
- cd ${pkgdir}/usr/include
- ln -s avahi-compat-libdns_sd/dns_sd.h dns_sd.h
- ln -s avahi-compat-howl howl
- cd ${pkgdir}/usr/lib/pkgconfig
- ln -s avahi-compat-howl.pc howl.pc
- mkdir -p ${pkgdir}/usr/share/pixmaps
- install -m 644 ${srcdir}/gnome-nettool.png ${pkgdir}/usr/share/pixmaps/gnome-nettool.png
-
- cd ${pkgdir}
- patch -p0 < ${srcdir}/avahi-daemon-dbus.patch || return 1
-}
-md5sums=('a83155a6e29e3988f07e5eea3287b21e'
- '42c2905307c7a5dc6ac4b75f4c3d65a3'
- '0e1f5900b56fcfa1bffddb4f233f539f')
diff --git a/abs/core-testing/avahi/avahi-daemon-dbus.patch b/abs/core-testing/avahi/avahi-daemon-dbus.patch
deleted file mode 100644
index fe82f41..0000000
--- a/abs/core-testing/avahi/avahi-daemon-dbus.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- etc/rc.d/avahi-daemon 2010-02-26 21:10:30.000000000 -0600
-+++ etc/rc.d/avahi-daemon 2010-02-26 21:09:44.000000000 -0600
-@@ -35,8 +35,11 @@
-
- case "$1" in
- start)
-- stat_busy "Starting $DESC"
-- $DAEMON -D > /dev/null 2>&1
-+ if ck_daemon dbus; then
-+ /etc/rc.d/dbus start
-+ fi
-+ stat_busy "Starting $DESC"
-+ modprobe capability > /dev/null 2>&1 ; $DAEMON -D > /dev/null 2>&1
- if [ $? -gt 0 ]; then
- stat_fail
- else
diff --git a/abs/core-testing/avahi/avahi.install b/abs/core-testing/avahi/avahi.install
deleted file mode 100644
index f0beca8..0000000
--- a/abs/core-testing/avahi/avahi.install
+++ /dev/null
@@ -1,42 +0,0 @@
-post_install() {
- echo -n "adding avahi system group... "
- groupadd -g 84 avahi && echo "done."
- echo -n "adding avahi system user... "
- useradd -c "Avahi daemon" -u 84 -d / -g avahi -s /bin/false avahi \
- && echo "done."
- passwd -l avahi &>/dev/null
-
- post_upgrade
- cat << 'EOM'
-==> The following daemons may be added to DAEMONS in /etc/rc.conf:
- -> avahi-daemon - the mdns responder, you probably want this.
- dbus needs to be running when you start it.
- -> avahi-dnsconfd - daemon used for peer-to-peer automatic dns
- configuration on dhcp-less networks.
-
-==> To use some of the client applications you will have to install python.
- -> In addition, pygtk is required for the graphical ones and
- twisted-web for avahi-bookmarks.
-
-EOM
-}
-
-post_upgrade() {
- true
-}
-
-pre_remove() {
- # pre_remove gets called whenever post_remove is defined.
- true
-}
-
-post_remove() {
- # post_remove doesn't start at a newline like the other post_* functions,
- # so we'll have to make one for ourselves.
- echo -n -e "\nremoving avahi system user... "
- userdel avahi && echo "done."
-}
-
-op=$1
-shift
-$op $*
diff --git a/abs/core-testing/avahi/gnome-nettool.png b/abs/core-testing/avahi/gnome-nettool.png
deleted file mode 100644
index 227d067..0000000
--- a/abs/core-testing/avahi/gnome-nettool.png
+++ /dev/null
Binary files differ