summaryrefslogtreecommitdiffstats
path: root/abs/core/avahi
diff options
context:
space:
mode:
authorMichael Hanson <hansonorders@verizon.net>2010-11-21 05:09:28 (GMT)
committerMichael Hanson <hansonorders@verizon.net>2010-11-21 05:09:28 (GMT)
commitf57c270c999e03f761b37c74d22ebc645426cecf (patch)
tree5dd121eba3f434a85aabceaa3d1e51a9c5c6eac3 /abs/core/avahi
parentb94c1143e2b631304412a5af035a207e4953ba7a (diff)
downloadlinhes_pkgbuild-f57c270c999e03f761b37c74d22ebc645426cecf.zip
linhes_pkgbuild-f57c270c999e03f761b37c74d22ebc645426cecf.tar.gz
linhes_pkgbuild-f57c270c999e03f761b37c74d22ebc645426cecf.tar.bz2
avahi: recompile to fix execheck.sh errors
Diffstat (limited to 'abs/core/avahi')
-rw-r--r--abs/core/avahi/PKGBUILD9
-rw-r--r--abs/core/avahi/__changelog1
2 files changed, 6 insertions, 4 deletions
diff --git a/abs/core/avahi/PKGBUILD b/abs/core/avahi/PKGBUILD
index 690762e..3ab5c8b 100644
--- a/abs/core/avahi/PKGBUILD
+++ b/abs/core/avahi/PKGBUILD
@@ -3,7 +3,7 @@
pkgname=avahi
pkgver=0.6.27
-pkgrel=7
+pkgrel=8
pkgdesc='A multicast/unicast DNS-SD framework'
arch=('i686' 'x86_64')
url='http://www.avahi.org/'
@@ -17,7 +17,7 @@ optdepends=('gtk2: avahi-discover-standalone'
'mono: mono bindings'
'dbus-python: avahi-discover'
'nss-mdns: NSS support for mDNS')
-makedepends=('qt' 'qt3' 'pygtk' 'mono' 'intltool' 'dbus-python' 'gtk-sharp-2' 'gobject-introspection>=0.9.10')
+makedepends=('qt' 'pygtk' 'mono' 'intltool' 'dbus-python' 'gtk-sharp-2' 'gobject-introspection>=0.9.10')
backup=(etc/avahi/avahi-daemon.conf etc/avahi/services/{sftp-,}ssh.service)
install=avahi.install
conflicts=('howl' 'mdnsresponder')
@@ -45,6 +45,7 @@ build() {
--sysconfdir=/etc \
--localstatedir=/var \
--disable-gtk3 \
+ --disable-qt3 \
--disable-monodoc \
--disable-doxygen-doc \
--disable-xmltoman \
@@ -56,13 +57,13 @@ build() {
--with-autoipd-group=avahi \
--with-systemdsystemunitdir=/lib/systemd/system # See FS#20999
- make
+ make || return 1
}
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
- make DESTDIR="${pkgdir}" install
+ make DESTDIR="${pkgdir}" install || return 1
# howl and mdnsresponder compatability
cd "${pkgdir}"/usr/include
diff --git a/abs/core/avahi/__changelog b/abs/core/avahi/__changelog
new file mode 100644
index 0000000..f8fec40
--- /dev/null
+++ b/abs/core/avahi/__changelog
@@ -0,0 +1 @@
+disable qt3 in configure and remove make and optdepends on it.