blob: 38ff98b1686e4f67e245bb589cf3c6279163ee94 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
# Description: Service de DNS
# URL: http://www.avahi.org/
# Maintainer: NuTyX core team
# Packager: thierryn1 at hispeed dot ch
# Depends on: libdaemon, dbus, dbus-python, nss-mdns, libglade, libcap, pygtk
name=avahi
version=0.6.25
release=3
source=(http://www.avahi.org/download/avahi-$version.tar.gz\
network-wired.png)
build() {
cd $name-$version
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var/lib \
--disable-qt3 \
--disable-qt4 \
--disable-monodoc \
--disable-doxygen-doc \
--disable-xmltoman \
--enable-compat-libdns_sd \
--enable-compat-howl \
--with-distro=none \
--disable-gdbm \
--disable-mono \
--with-avahi-priv-access-group=network \
--enable-autoipd \
--with-autoipd-user=avahi \
--with-autoipd-group=avahi
make
make DESTDIR=$PKG install
sed -i -e 's/netdev/network/g' \
$PKG/etc/dbus-1/system.d/avahi-dbus.conf
mkdir -v -p $PKG/usr/share/pixmaps
install -m 644 ../network-wired.png \
$PKG/usr/share/pixmaps/network-wired.png
rm -r $PKG/{etc/avahi,var,usr/share/man/man8,usr/sbin}
}
|