diff options
Diffstat (limited to 'extra/avahi/PKGBUILD')
-rw-r--r-- | extra/avahi/PKGBUILD | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/extra/avahi/PKGBUILD b/extra/avahi/PKGBUILD index ed8eac791..1475f8834 100644 --- a/extra/avahi/PKGBUILD +++ b/extra/avahi/PKGBUILD @@ -8,7 +8,7 @@ pkgrel=11 pkgdesc='Multicast/unicast DNS-SD framework' url='http://www.avahi.org/' license=('LGPL') -arch=('i686' 'x86_64') +arch=('i686' 'x86_64' 'mips64el') options=('!emptydirs') depends=('expat' 'libdaemon' 'glib2' 'libcap' 'gdbm' 'dbus') optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc' @@ -16,12 +16,13 @@ optdepends=('gtk3: avahi-discover-standalone, bshell, bssh, bvnc' 'qt3: qt3 bindings' 'qt4: qt4 bindings' 'pygtk: avahi-bookmarks, avahi-discover' - 'twisted: avahi-bookmarks' - 'mono: mono bindings' - 'python2-dbus: avahi-discover' + 'twisted: avahi-bookmarks') +[ "$CARCH" != "mips64el" ] && optdepends+=('mono: mono bindings') +optdepends+=('dbus-python: avahi-discover' 'nss-mdns: NSS support for mDNS') -makedepends=('qt3' 'qt4' 'pygtk' 'mono' 'intltool' 'python2-dbus' - 'gtk-sharp-2' 'gobject-introspection' 'gtk3' 'xmltoman') +makedepends=('qt3' 'qt4' 'pygtk' 'intltool' 'python2-dbus' + 'gobject-introspection' 'gtk3' 'xmltoman') +[ "$CARCH" != "mips64el" ] && makedepends+=('mono' 'gtk-sharp-2') backup=('etc/avahi/hosts' 'etc/avahi/avahi-daemon.conf' 'etc/avahi/services/ssh.service' @@ -49,6 +50,7 @@ build() { export MOC_QT3=/usr/bin/moc-qt3 export MOC_QT4=/usr/bin/moc-qt4 export PYTHON=/usr/bin/python2 + [ "$CARCH" = "mips64el" ] && extra="--disable-mono" ./configure \ --prefix=/usr \ @@ -63,6 +65,7 @@ build() { --with-autoipd-user=avahi \ --with-autoipd-group=avahi \ --with-systemdsystemunitdir=/usr/lib/systemd/system \ + $extra make } |