works for qt5-base

This commit is contained in:
Ertuğrul Erata
2015-07-05 13:08:35 +03:00
parent 8c5873bb15
commit 1a71026d39
26 changed files with 1288 additions and 13 deletions
+63
View File
@@ -0,0 +1,63 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
def setup():
pisitools.dosed("avahi-daemon/avahi-daemon.conf", "^#(disallow-other-stacks=)no", "\\1yes")
# fix avahi socket path
pisitools.dosed('configure.ac', '^(avahi_runtime_dir=")\$\{localstatedir\}(\/run")', r'\1\2')
autotools.autoreconf("-fi")
# --with-systemdsystemunitdir=/lib/systemd/system
autotools.configure("\
--with-distro=none \
--disable-monodoc \
--disable-static \
--disable-xmltoman \
--disable-qt3 \
--disable-qt4 \
--disable-doxygen-doc \
--enable-glib \
--enable-gobject \
--enable-introspection \
--disable-mono \
--enable-gtk3 \
--enable-compat-howl \
--enable-compat-libdns_sd \
--with-avahi-user=avahi \
--with-avahi-group=avahi \
--with-autoipd-user=avahi-autoipd \
--with-autoipd-group=avahi-autoipd \
--with-avahi-priv-access-group=avahi \
--with-dbus-system-address=unix:path=/run/dbus/system_bus_socket \
")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
# Add missing symlinks for avahi-compat-howl and avahi-compat-dns-sd
pisitools.dosym("/usr/lib/pkgconfig/avahi-compat-howl.pc", "/usr/lib/pkgconfig/howl.pc")
pisitools.dosym("/usr/lib/pkgconfig/avahi-compat-libdns_sd.pc", "/usr/lib/pkgconfig/libdns_sd.pc")
pisitools.dosym("/usr/include/avahi-compat-libdns_sd/dns_sd.h", "/usr/include/dns_sd.h")
# Remove example
pisitools.remove("/etc/avahi/services/sftp-ssh.service")
pisitools.dodir("/run/avahi-daemon")
pisitools.dodir("/var/lib/avahi-autoipd")
pisitools.dodoc("docs/AUTHORS", "docs/README", "docs/TODO")
pisitools.removeDir("var/run")
@@ -0,0 +1,19 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
import os
import shutil
ownerships = {
"/run/avahi-daemon" : "avahi:avahi",
}
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
for directory,owners in ownerships.items():
if os.path.exists(directory):
os.system("/bin/chown %s %s" % (owners, directory))
if os.path.exists("/etc/localtime"):
if not os.path.isdir("/etc/avahi/etc"):
os.makedirs("/etc/avahi/etc")
shutil.copy("/etc/localtime", "/etc/avahi/etc/localtime")
@@ -0,0 +1,25 @@
from comar.service import *
serviceType="server"
serviceDesc = _({"en": "Avahi Server",
"tr": "Avahi Hizmeti"})
@synchronized
def start():
startService(command="/usr/sbin/avahi-daemon",
args="-D",
donotify=True)
@synchronized
def stop():
stopService(command="/usr/sbin/avahi-daemon",
args="-k",
donotify=True)
def reload():
stopService(command="/usr/sbin/avahi-daemon",
args="-r",
donotify=True)
def status():
return isServiceRunning("/run/avahi-daemon/pid")
@@ -0,0 +1,29 @@
from comar.service import *
import signal
serviceType="server"
serviceDesc = _({"en": "Avahi DNS Configuration Daemon",
"tr": "Avahi DNS Yapılandırma Hizmeti"})
PIDFILE = "/run/avahi-dnsconfd.pid"
DAEMON = "/usr/sbin/avahi-dnsconfd"
@synchronized
def start():
startDependencies("avahi")
startService(command=DAEMON,
args="-D",
donotify=True)
@synchronized
def stop():
stopService(pidfile=PIDFILE,
donotify=True)
@synchronized
def reload():
stopService(command=DAEMON,
signal=signal.SIGHUP)
def status():
return isServiceRunning(pidfile=PIDFILE)
@@ -0,0 +1,22 @@
--- avahi-0.6.31/avahi-ui/Makefile.am.orig 2013-09-21 16:47:28.677659361 +0200
+++ avahi-0.6.31/avahi-ui/Makefile.am 2013-09-21 16:47:34.852520537 +0200
@@ -15,7 +15,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.
-AM_CFLAGS=-I$(top_srcdir) -DG_DISABLE_DEPRECATED=1 -DGDK_DISABLE_DEPRECATED=1 -DGTK_DISABLE_DEPRECATED=1
+AM_CFLAGS=-I$(top_srcdir)
# This cool debug trap works on i386/gcc only
AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")'
--- avahi-0.6.31/configure.ac.orig 2013-09-21 16:46:43.750669413 +0200
+++ avahi-0.6.31/configure.ac 2013-09-21 16:47:02.566246400 +0200
@@ -92,7 +92,7 @@
AC_MSG_CHECKING([whether stack-smashing protection is available])
ssp_old_cflags="$CFLAGS"
ssp_old_ldflags="$LDFLAGS"
- CFLAGS="$CFLAGS -Werror -fstack-protector-all -fPIC"
+ CFLAGS="$CFLAGS -fstack-protector-all -fPIC"
LDFLAGS="$LDFLAGS -Wl,-z,defs"
cat confdefs.h > conftest.c
cat >>conftest.c <<_ACEOF
+1
View File
@@ -0,0 +1 @@
d /run/avahi-daemon 0755 avahi avahi
+404
View File
@@ -0,0 +1,404 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>avahi</Name>
<Homepage>http://avahi.org/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2</License>
<IsA>app:console</IsA>
<Summary>Local network service discovery</Summary>
<Description>avahi is a system which facilitates service discovery on a local network. This means that you can plug your laptop or computer into a network and instantly be able to view other people who you can chat with, find printers to print to or find files being shared.</Description>
<Archive sha1sum="7e05bd78572c9088b03b1207a0ad5aba38490684" type="targz">http://avahi.org/download/avahi-0.6.31.tar.gz</Archive>
<BuildDependencies>
<Dependency>gtk2-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<!--not mono <Dependency>mono-devel</Dependency>
<Dependency>gtk-sharp-devel</Dependency>-->
<Dependency>libcap-devel</Dependency>
<Dependency>libdaemon-devel</Dependency>
<Dependency>python-gtk-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">avahi-0.6.31-no-deprecations.patch</Patch>
</Patches>
</Source>
<Package>
<Name>avahi-glib</Name>
<Summary>Libraries for easy use of avahi from glib applications</Summary>
<RuntimeDependencies>
<Dependency release="current">avahi</Dependency>
<Dependency release="current">avahi-libs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/libavahi-glib.*</Path>
<Path fileType="library">/usr/lib/libavahi-gobject.*</Path>
</Files>
</Package>
<Package>
<Name>avahi-glib-devel</Name>
<Summary>Development files for avahi-glib</Summary>
<RuntimeDependencies>
<Dependency release="current">avahi-glib</Dependency>
<Dependency release="current">avahi-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/avahi-glib</Path>
<Path fileType="header">/usr/include/avahi-gobject</Path>
<Path fileType="data">/usr/lib/pkgconfig/avahi-glib.pc</Path>
<Path fileType="data">/usr/lib/pkgconfig/avahi-gobject.pc</Path>
</Files>
</Package>
<!--<Package>
<Name>avahi-sharp</Name>
<Summary>Mono language bindings for avahi mono development</Summary>
<RuntimeDependencies>
<Dependency>mono-runtime</Dependency>
<Dependency release="current">avahi</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/mono/avahi-sharp</Path>
<Path fileType="library">/usr/lib/mono/gac/avahi-sharp</Path>
<Path fileType="data">/usr/lib/pkgconfig/avahi-sharp.pc</Path>
</Files>
</Package>
<Package>
<Name>avahi-ui-sharp</Name>
<Summary>Mono language bindings for avahi-ui</Summary>
<RuntimeDependencies>
<Dependency>mono-runtime</Dependency>
<Dependency>gtk-sharp</Dependency>
<Dependency release="current">avahi</Dependency>
<Dependency release="current">avahi-ui</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/mono/avahi-ui-sharp</Path>
<Path fileType="library">/usr/lib/mono/gac/avahi-ui-sharp</Path>
</Files>
</Package>
<Package>
<Name>avahi-ui-sharp-devel</Name>
<Summary>Development files for avahi-ui-sharp</Summary>
<RuntimeDependencies>
<Dependency release="current">avahi-ui-sharp</Dependency>
<Dependency>gtk-sharp-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/lib/pkgconfig/avahi-ui-sharp.pc</Path>
</Files>
</Package>-->
<Package>
<Name>avahi-ui</Name>
<Summary>Gtk user interface library for Avahi</Summary>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency release="current">avahi-libs</Dependency>
<Dependency release="current">avahi-glib</Dependency>
<Dependency>atk</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>fontconfig</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/libavahi-ui.so*</Path>
</Files>
</Package>
<Package>
<Name>avahi-ui-devel</Name>
<Summary>Development files for avahi-ui</Summary>
<RuntimeDependencies>
<Dependency>gtk2-devel</Dependency>
<Dependency release="current">avahi-ui</Dependency>
<Dependency release="current">avahi-devel</Dependency>
<Dependency release="current">avahi-glib-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/avahi-ui</Path>
<Path fileType="data">/usr/lib/pkgconfig/avahi-ui.pc</Path>
</Files>
</Package>
<Package>
<Name>avahi-ui-gtk3</Name>
<Summary>Gtk3 user interface library for Avahi</Summary>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<Dependency release="current">avahi-libs</Dependency>
<Dependency release="current">avahi-glib</Dependency>
<Dependency>atk</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>gdk-pixbuf</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/libavahi-ui-gtk3.so*</Path>
</Files>
</Package>
<Package>
<Name>avahi-ui-gtk3-devel</Name>
<Summary>Development files for avahi-ui-gtk3</Summary>
<RuntimeDependencies>
<Dependency>gtk2-devel</Dependency>
<Dependency release="current">avahi-ui-gtk3</Dependency>
<Dependency release="current">avahi-devel</Dependency>
<Dependency release="current">avahi-glib-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/lib/pkgconfig/avahi-ui-gtk3.pc</Path>
</Files>
</Package>
<Package>
<Name>avahi-ui-tools</Name>
<Summary>UI tools for mDNS browsing</Summary>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<Dependency>python-gtk</Dependency>
<Dependency release="current">avahi</Dependency>
<Dependency release="current">avahi-ui</Dependency>
<Dependency release="current">avahi-glib</Dependency>
<Dependency release="current">avahi-ui-gtk3</Dependency>
<Dependency release="current">avahi-libs</Dependency>
<Dependency>gtk3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python*/site-packages</Path>
<Path fileType="executable">/usr/bin/b*</Path>
<Path fileType="executable">/usr/bin/avahi-discover*</Path>
<Path fileType="executable">/usr/bin/avahi-bookmarks</Path>
<Path fileType="man">/usr/share/man/man1/b*</Path>
<Path fileType="man">/usr/share/man/man1/avahi-discover*</Path>
<Path fileType="man">/usr/share/man/man1/avahi-bookmarks*</Path>
<Path fileType="data">/usr/share/avahi/interfaces</Path>
<Path fileType="data">/usr/share/applications/b*</Path>
<Path fileType="data">/usr/share/applications/avahi-discover.desktop</Path>
</Files>
</Package>
<Package>
<Name>avahi-compat-howl</Name>
<Summary>Libraries for howl compatibility</Summary>
<RuntimeDependencies>
<Dependency release="current">avahi</Dependency>
<Dependency release="current">avahi-libs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/libhowl.so*</Path>
</Files>
</Package>
<Package>
<Name>avahi-compat-howl-devel</Name>
<Summary>Development files for avahi-compat-howl</Summary>
<RuntimeDependencies>
<Dependency release="current">avahi-compat-howl</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/avahi-compat-howl</Path>
<Path fileType="data">/usr/lib/pkgconfig/avahi-compat-howl.pc</Path>
<Path fileType="data">/usr/lib/pkgconfig/howl.pc</Path>
</Files>
</Package>
<Package>
<Name>avahi-compat-libdns_sd</Name>
<Summary>Libraries for Apple Bonjour mDNSResponder compatibility</Summary>
<RuntimeDependencies>
<Dependency release="current">avahi</Dependency>
<Dependency release="current">avahi-libs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/libdns_sd.so*</Path>
</Files>
</Package>
<Package>
<Name>avahi-compat-libdns_sd-devel</Name>
<Summary>Development files for avahi-compat-libdns_sd</Summary>
<RuntimeDependencies>
<Dependency release="current">avahi-compat-libdns_sd</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include/avahi-compat-libdns_sd</Path>
<Path fileType="header">/usr/include/dns_sd.h</Path>
<Path fileType="data">/usr/lib/pkgconfig/avahi-compat-libdns_sd.pc</Path>
<Path fileType="data">/usr/lib/pkgconfig/libdns_sd.pc</Path>
</Files>
</Package>
<Package>
<Name>avahi-libs</Name>
<Summary>Libraries needed to run programs that use avahi</Summary>
<Files>
<Path fileType="library">/usr/lib/libavahi-common.so*</Path>
<Path fileType="library">/usr/lib/libavahi-client.so*</Path>
</Files>
</Package>
<Package>
<Name>avahi</Name>
<RuntimeDependencies>
<Dependency>libdaemon</Dependency>
<Dependency release="current">avahi-libs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/sbin/avahi-daemon</Path>
<Path fileType="library">/usr/lib/libavahi-core.so*</Path>
<Path fileType="config">/etc/avahi/avahi-daemon.conf</Path>
<Path fileType="config">/etc/avahi/hosts</Path>
<Path fileType="data">/etc/avahi/services/ssh.service</Path>
<Path fileType="data">/etc/dbus-1/system.d/avahi-dbus.conf</Path>
<Path fileType="data">/usr/share/avahi</Path>
<Path fileType="data">/usr/share/dbus-1/interfaces/*.xml</Path>
<Path fileType="data">/usr/share/dbus-1/system-services</Path>
<Path fileType="data">/usr/lib/avahi/service*</Path>
<Path fileType="data">/lib/systemd/system</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="man">/usr/share/man/man5/*</Path>
<Path fileType="man">/usr/share/man/man8/avahi-daemon.*</Path>
<Path fileType="data">/run/avahi-daemon</Path>
<Path fileType="config">/usr/lib/tmpfiles.d/avahi.conf</Path>
</Files>
<AdditionalFiles>
<AdditionalFile owner="root" permission="0644" target="/usr/lib/tmpfiles.d/avahi.conf">avahi.conf</AdditionalFile>
</AdditionalFiles>
<Provides>
<COMAR script="avahi-daemon-service.py">System.Service</COMAR>
<COMAR script="avahi-daemon-package.py">System.Package</COMAR>
</Provides>
</Package>
<Package>
<Name>avahi-autoipd</Name>
<Summary>Link-local IPv4 address automatic configuration daemon (IPv4LL)</Summary>
<RuntimeDependencies>
<Dependency>libdaemon</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/etc/avahi/avahi-autoipd.action</Path>
<Path fileType="executable">/usr/sbin/avahi-autoipd</Path>
<Path fileType="man">/usr/share/man/man8/avahi-autoipd.*</Path>
<Path fileType="data">/var/lib/avahi-autoipd</Path>
</Files>
</Package>
<Package>
<Name>avahi-dnsconfd</Name>
<Summary>Configure local unicast DNS settings based on information published in mDNS</Summary>
<RuntimeDependencies>
<Dependency>libdaemon</Dependency>
<Dependency release="current">avahi</Dependency>
<Dependency release="current">avahi-libs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/etc/avahi/avahi-dnsconfd.action</Path>
<Path fileType="executable">/usr/sbin/avahi-dnsconfd</Path>
<Path fileType="man">/usr/share/man/man8/avahi-dnsconfd.*</Path>
</Files>
<Provides>
<COMAR script="avahi-dnsconfd-service.py" name="avahi_dnsconfd">System.Service</COMAR>
</Provides>
</Package>
<Package>
<Name>avahi-tools</Name>
<Summary>Command line tools for mDNS browsing and publishing</Summary>
<RuntimeDependencies>
<Dependency release="current">avahi</Dependency>
<Dependency release="current">avahi-libs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="man">/usr/share/man/man1</Path>
</Files>
</Package>
<Package>
<Name>avahi-devel</Name>
<Summary>Development files for avahi</Summary>
<RuntimeDependencies>
<Dependency release="current">avahi-libs</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/lib/pkgconfig/avahi-core.pc</Path>
<Path fileType="data">/usr/lib/pkgconfig/avahi-client.pc</Path>
<Path fileType="data">/usr/lib/girepository-1.0</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
<Path fileType="header">/usr/include/avahi-client</Path>
<Path fileType="header">/usr/include/avahi-common</Path>
<Path fileType="header">/usr/include/avahi-core</Path>
</Files>
</Package>
<History>
<Update release="8">
<Date>2014-05-20</Date>
<Version>0.6.31</Version>
<Comment>Rebuild.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2014-01-24</Date>
<Version>0.6.31</Version>
<Comment>rebuild for unused</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2014-01-08</Date>
<Version>0.6.31</Version>
<Comment>Add avahi.conf, fix build</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2013-08-17</Date>
<Version>0.6.31</Version>
<Comment>Fix deps</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="4">
<Date>2013-06-27</Date>
<Version>0.6.31</Version>
<Comment>Fix avahi-daemon.conf</Comment>
<Name>Marcin Bojara</Name>
<Email>marcin@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-05-03</Date>
<Version>0.6.31</Version>
<Comment>Avahi-ui-gtk3 added</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-04-23</Date>
<Version>0.6.31</Version>
<Comment>Dep fixed</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2012-10-05</Date>
<Version>0.6.31</Version>
<Comment>First release</Comment>
<Name>Erdem Artan</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
+103
View File
@@ -0,0 +1,103 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>avahi</Name>
<Summary xml:lang="tr">Yerel ağ hizmeti bulma sistemi</Summary>
<Description xml:lang="tr">avahi yerel ağ üzerindeki hizmetleri tespit etmeyi kolaylaştıran bir sistemdir. Bu sayede, bilgisayarınızı ağa dahil ettikten sonra anında mevcut bilgisayarları ve yazıcıları görebilir ve kullanabilirsiniz.</Description>
</Source>
<Package>
<Name>avahi-devel</Name>
<Summary xml:lang="tr">avahi için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>avahi-glib</Name>
<Summary xml:lang="tr">Glib uygulamalarında avahi kullanımını kolaylaştıran kitaplıklar</Summary>
</Package>
<Package>
<Name>avahi-glib-devel</Name>
<Summary xml:lang="tr">avahi-glib için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>avahi-sharp</Name>
<Summary xml:lang="tr">Mono uygulamalarında avahi kullanımını kolaylaştıran kitaplıklar</Summary>
</Package>
<Package>
<Name>avahi-ui-sharp</Name>
<Summary xml:lang="tr">avahi-ui için Mono dil bağlayıcıları</Summary>
</Package>
<Package>
<Name>avahi-ui-sharp-devel</Name>
<Summary xml:lang="tr">avahi-ui-sharp için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>avahi-ui</Name>
<Summary xml:lang="tr">avahi için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>avahi-ui-devel</Name>
<Summary xml:lang="tr">avahi-ui için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>avahi-ui-gtk3</Name>
<Summary xml:lang="tr">avahi-gtk3, Gtk3 user interface library for Avahi</Summary>
</Package>
<Package>
<Name>avahi-ui-gtk3-devel</Name>
<Summary xml:lang="tr">avahi-ui-gtk3 için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>avahi-ui-tools</Name>
<Summary xml:lang="tr">Grafiksel mDNS tarama araçları</Summary>
</Package>
<Package>
<Name>avahi-compat-howl</Name>
<Summary xml:lang="tr">howl uyumluluk kitaplıkları</Summary>
</Package>
<Package>
<Name>avahi-compat-howl-devel</Name>
<Summary xml:lang="tr">avahi-compat-howl için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>avahi-compat-libdns_sd</Name>
<Summary xml:lang="tr">libdns_sd uyumluluk kitaplıkları</Summary>
</Package>
<Package>
<Name>avahi-compat-libdns_sd-devel</Name>
<Summary xml:lang="tr">avahi-compat-libdns_sd için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>avahi-libs</Name>
<Summary xml:lang="tr">Avahi kullanan uygulamaları çalıştırmak için gerekli kitaplıklar</Summary>
</Package>
<Package>
<Name>avahi-autoipd</Name>
<Summary xml:lang="tr">Link-local IPv4 adresi otomatik yapılandırma hizmeti (IPv4LL)</Summary>
</Package>
<Package>
<Name>avahi-dnsconfd</Name>
<Summary xml:lang="tr">Yerel unicast DNS ayarlarını mDNS üzerinden gelen bilgilere göre yapılandırma hizmeti</Summary>
</Package>
<Package>
<Name>avahi-tools</Name>
<Summary xml:lang="tr">mDNS taramak ve yayınlamak için komut satırı araçları</Summary>
</Package>
</PISI>
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>network.analyzer</Name>
</PISI>