parent
3dbd7320d5
commit
4d9f86516f
@ -0,0 +1,6 @@
|
|||||||
|
avahi-tqt (0.6.30-0debian0) lenny; urgency=low
|
||||||
|
|
||||||
|
* Initial build
|
||||||
|
|
||||||
|
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Sat, 08 Oct 2011 22:38:00 -0600
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
7
|
@ -0,0 +1,55 @@
|
|||||||
|
Source: avahi-tqt
|
||||||
|
Section: net
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
XSBC-Original-Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
|
||||||
|
Uploaders: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
Build-Depends: debhelper,
|
||||||
|
pkg-config,
|
||||||
|
python-support (>= 0.6),
|
||||||
|
libglib2.0-dev (>= 2.4),
|
||||||
|
libgtk2.0-dev (>= 2.14.0),
|
||||||
|
libexpat-dev,
|
||||||
|
libdbus-1-dev (>= 0.60),
|
||||||
|
python-gdbm (>= 2.4.3),
|
||||||
|
python-dbus,
|
||||||
|
python-gtk2 (>= 2.8.6-2),
|
||||||
|
libtqtinterface-dev,
|
||||||
|
intltool (>= 0.35.0),
|
||||||
|
libavahi-common-dev,
|
||||||
|
libavahi-client-dev
|
||||||
|
Standards-Version: 3.9.1
|
||||||
|
|
||||||
|
Package: libavahi-tqt-1
|
||||||
|
Section: libs
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends},
|
||||||
|
${misc:Depends}
|
||||||
|
Pre-Depends: ${misc:Pre-Depends}
|
||||||
|
Multi-Arch: same
|
||||||
|
Description: Avahi TQt integration library
|
||||||
|
Avahi is a fully LGPL framework for Multicast DNS Service Discovery.
|
||||||
|
It allows programs to publish and discover services and hosts
|
||||||
|
running on a local network with no specific configuration. For
|
||||||
|
example you can plug into a network and instantly find printers to
|
||||||
|
print to, files to look at and people to talk to.
|
||||||
|
.
|
||||||
|
This library contains the interface to integrate the Avahi libraries
|
||||||
|
into a TQt main loop application.
|
||||||
|
|
||||||
|
Package: libavahi-tqt-dev
|
||||||
|
Section: libdevel
|
||||||
|
Architecture: any
|
||||||
|
Depends: libavahi-tqt-1 (= ${binary:Version}),
|
||||||
|
${misc:Depends},
|
||||||
|
libtqtinterface-dev,
|
||||||
|
libavahi-common-dev
|
||||||
|
Description: Development headers for the Avahi TQt integration library
|
||||||
|
Avahi is a fully LGPL framework for Multicast DNS Service Discovery.
|
||||||
|
It allows programs to publish and discover services and hosts
|
||||||
|
running on a local network with no specific configuration. For
|
||||||
|
example you can plug into a network and instantly find printers to
|
||||||
|
print to, files to look at and people to talk to.
|
||||||
|
.
|
||||||
|
This package contains the development headers for the interface
|
||||||
|
to integrate the Avahi libraries into a TQt main loop application.
|
@ -0,0 +1,17 @@
|
|||||||
|
License:
|
||||||
|
|
||||||
|
This library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with this library; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
See /usr/share/common-licenses/LGPL-2.1 on your debian system.
|
@ -0,0 +1 @@
|
|||||||
|
debian/tmp/usr/lib/libavahi-tqt.so.*
|
@ -0,0 +1 @@
|
|||||||
|
libavahi-tqt 1 libavahi-tqt-1 (>= 0.6.16)
|
@ -0,0 +1,2 @@
|
|||||||
|
libavahi-tqt.so.1 libavahi-tqt-1 #MINVER#
|
||||||
|
avahi_qt_poll_get@Base 0.6.16
|
@ -0,0 +1,5 @@
|
|||||||
|
debian/tmp/usr/include/avahi-tqt/qt-watch.h
|
||||||
|
debian/tmp/usr/lib/libavahi-tqt.so
|
||||||
|
debian/tmp/usr/lib/libavahi-tqt.la
|
||||||
|
debian/tmp/usr/lib/libavahi-tqt.a
|
||||||
|
debian/tmp/usr/lib/pkgconfig/avahi-tqt.pc
|
@ -0,0 +1,17 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
||||||
|
|
||||||
|
# Ensure at build time that the library has no dependencies on undefined
|
||||||
|
# symbols, and speed up loading.
|
||||||
|
export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) -Wl,-z,defs -Wl,-O1
|
||||||
|
|
||||||
|
override_dh_auto_configure:
|
||||||
|
./autogen.sh
|
||||||
|
dh_auto_configure -- $(CONFFLAGS) \
|
||||||
|
--enable-compat-libdns_sd \
|
||||||
|
--disable-mono --disable-monodoc \
|
||||||
|
--disable-gtk3 \
|
||||||
|
--with-systemdsystemunitdir=/lib/systemd/system
|
||||||
|
|
@ -0,0 +1,6 @@
|
|||||||
|
avahi-tqt (0.6.30-0debian0) squeeze; urgency=low
|
||||||
|
|
||||||
|
* Initial build
|
||||||
|
|
||||||
|
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Sat, 08 Oct 2011 22:38:00 -0600
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
7
|
@ -0,0 +1,55 @@
|
|||||||
|
Source: avahi-tqt
|
||||||
|
Section: net
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
XSBC-Original-Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
|
||||||
|
Uploaders: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
Build-Depends: debhelper,
|
||||||
|
pkg-config,
|
||||||
|
python-support (>= 0.6),
|
||||||
|
libglib2.0-dev (>= 2.4),
|
||||||
|
libgtk2.0-dev (>= 2.14.0),
|
||||||
|
libexpat-dev,
|
||||||
|
libdbus-1-dev (>= 0.60),
|
||||||
|
python-gdbm (>= 2.4.3),
|
||||||
|
python-dbus,
|
||||||
|
python-gtk2 (>= 2.8.6-2),
|
||||||
|
libtqtinterface-dev,
|
||||||
|
intltool (>= 0.35.0),
|
||||||
|
libavahi-common-dev,
|
||||||
|
libavahi-client-dev
|
||||||
|
Standards-Version: 3.9.1
|
||||||
|
|
||||||
|
Package: libavahi-tqt-1
|
||||||
|
Section: libs
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends},
|
||||||
|
${misc:Depends}
|
||||||
|
Pre-Depends: ${misc:Pre-Depends}
|
||||||
|
Multi-Arch: same
|
||||||
|
Description: Avahi TQt integration library
|
||||||
|
Avahi is a fully LGPL framework for Multicast DNS Service Discovery.
|
||||||
|
It allows programs to publish and discover services and hosts
|
||||||
|
running on a local network with no specific configuration. For
|
||||||
|
example you can plug into a network and instantly find printers to
|
||||||
|
print to, files to look at and people to talk to.
|
||||||
|
.
|
||||||
|
This library contains the interface to integrate the Avahi libraries
|
||||||
|
into a TQt main loop application.
|
||||||
|
|
||||||
|
Package: libavahi-tqt-dev
|
||||||
|
Section: libdevel
|
||||||
|
Architecture: any
|
||||||
|
Depends: libavahi-tqt-1 (= ${binary:Version}),
|
||||||
|
${misc:Depends},
|
||||||
|
libtqtinterface-dev,
|
||||||
|
libavahi-common-dev
|
||||||
|
Description: Development headers for the Avahi TQt integration library
|
||||||
|
Avahi is a fully LGPL framework for Multicast DNS Service Discovery.
|
||||||
|
It allows programs to publish and discover services and hosts
|
||||||
|
running on a local network with no specific configuration. For
|
||||||
|
example you can plug into a network and instantly find printers to
|
||||||
|
print to, files to look at and people to talk to.
|
||||||
|
.
|
||||||
|
This package contains the development headers for the interface
|
||||||
|
to integrate the Avahi libraries into a TQt main loop application.
|
@ -0,0 +1,17 @@
|
|||||||
|
License:
|
||||||
|
|
||||||
|
This library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with this library; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
See /usr/share/common-licenses/LGPL-2.1 on your debian system.
|
@ -0,0 +1 @@
|
|||||||
|
debian/tmp/usr/lib/libavahi-tqt.so.*
|
@ -0,0 +1 @@
|
|||||||
|
libavahi-tqt 1 libavahi-tqt-1 (>= 0.6.16)
|
@ -0,0 +1,2 @@
|
|||||||
|
libavahi-tqt.so.1 libavahi-tqt-1 #MINVER#
|
||||||
|
avahi_qt_poll_get@Base 0.6.16
|
@ -0,0 +1,5 @@
|
|||||||
|
debian/tmp/usr/include/avahi-tqt/qt-watch.h
|
||||||
|
debian/tmp/usr/lib/libavahi-tqt.so
|
||||||
|
debian/tmp/usr/lib/libavahi-tqt.la
|
||||||
|
debian/tmp/usr/lib/libavahi-tqt.a
|
||||||
|
debian/tmp/usr/lib/pkgconfig/avahi-tqt.pc
|
@ -0,0 +1,17 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
||||||
|
|
||||||
|
# Ensure at build time that the library has no dependencies on undefined
|
||||||
|
# symbols, and speed up loading.
|
||||||
|
export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) -Wl,-z,defs -Wl,-O1
|
||||||
|
|
||||||
|
override_dh_auto_configure:
|
||||||
|
./autogen.sh
|
||||||
|
dh_auto_configure -- $(CONFFLAGS) \
|
||||||
|
--enable-compat-libdns_sd \
|
||||||
|
--disable-mono --disable-monodoc \
|
||||||
|
--disable-gtk3 \
|
||||||
|
--with-systemdsystemunitdir=/lib/systemd/system
|
||||||
|
|
@ -0,0 +1,6 @@
|
|||||||
|
avahi-tqt (0.6.30-0ubuntu0) maverick; urgency=low
|
||||||
|
|
||||||
|
* Initial build
|
||||||
|
|
||||||
|
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Sat, 08 Oct 2011 22:38:00 -0600
|
||||||
|
|
@ -0,0 +1 @@
|
|||||||
|
7
|
@ -0,0 +1,55 @@
|
|||||||
|
Source: avahi-tqt
|
||||||
|
Section: net
|
||||||
|
Priority: optional
|
||||||
|
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
XSBC-Original-Maintainer: Ubuntu Developers <ubuntu-devel-discuss@lists.ubuntu.com>
|
||||||
|
Uploaders: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||||
|
Build-Depends: debhelper,
|
||||||
|
pkg-config,
|
||||||
|
python-support (>= 0.6),
|
||||||
|
libglib2.0-dev (>= 2.4),
|
||||||
|
libgtk2.0-dev (>= 2.14.0),
|
||||||
|
libexpat-dev,
|
||||||
|
libdbus-1-dev (>= 0.60),
|
||||||
|
python-gdbm (>= 2.4.3),
|
||||||
|
python-dbus,
|
||||||
|
python-gtk2 (>= 2.8.6-2),
|
||||||
|
libtqtinterface-dev,
|
||||||
|
intltool (>= 0.35.0),
|
||||||
|
libavahi-common-dev,
|
||||||
|
libavahi-client-dev
|
||||||
|
Standards-Version: 3.9.1
|
||||||
|
|
||||||
|
Package: libavahi-tqt-1
|
||||||
|
Section: libs
|
||||||
|
Architecture: any
|
||||||
|
Depends: ${shlibs:Depends},
|
||||||
|
${misc:Depends}
|
||||||
|
Pre-Depends: ${misc:Pre-Depends}
|
||||||
|
Multi-Arch: same
|
||||||
|
Description: Avahi TQt integration library
|
||||||
|
Avahi is a fully LGPL framework for Multicast DNS Service Discovery.
|
||||||
|
It allows programs to publish and discover services and hosts
|
||||||
|
running on a local network with no specific configuration. For
|
||||||
|
example you can plug into a network and instantly find printers to
|
||||||
|
print to, files to look at and people to talk to.
|
||||||
|
.
|
||||||
|
This library contains the interface to integrate the Avahi libraries
|
||||||
|
into a TQt main loop application.
|
||||||
|
|
||||||
|
Package: libavahi-tqt-dev
|
||||||
|
Section: libdevel
|
||||||
|
Architecture: any
|
||||||
|
Depends: libavahi-tqt-1 (= ${binary:Version}),
|
||||||
|
${misc:Depends},
|
||||||
|
libtqtinterface-dev,
|
||||||
|
libavahi-common-dev
|
||||||
|
Description: Development headers for the Avahi TQt integration library
|
||||||
|
Avahi is a fully LGPL framework for Multicast DNS Service Discovery.
|
||||||
|
It allows programs to publish and discover services and hosts
|
||||||
|
running on a local network with no specific configuration. For
|
||||||
|
example you can plug into a network and instantly find printers to
|
||||||
|
print to, files to look at and people to talk to.
|
||||||
|
.
|
||||||
|
This package contains the development headers for the interface
|
||||||
|
to integrate the Avahi libraries into a TQt main loop application.
|
@ -0,0 +1,17 @@
|
|||||||
|
License:
|
||||||
|
|
||||||
|
This library is free software; you can redistribute it and/or
|
||||||
|
modify it under the terms of the GNU Lesser General Public
|
||||||
|
License as published by the Free Software Foundation; either
|
||||||
|
version 2 of the License, or (at your option) any later version.
|
||||||
|
|
||||||
|
This library is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||||
|
Lesser General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU Lesser General Public
|
||||||
|
License along with this library; if not, write to the Free Software
|
||||||
|
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
|
See /usr/share/common-licenses/LGPL-2.1 on your debian system.
|
@ -0,0 +1 @@
|
|||||||
|
debian/tmp/usr/lib/libavahi-tqt.so.*
|
@ -0,0 +1 @@
|
|||||||
|
libavahi-tqt 1 libavahi-tqt-1 (>= 0.6.16)
|
@ -0,0 +1,2 @@
|
|||||||
|
libavahi-tqt.so.1 libavahi-tqt-1 #MINVER#
|
||||||
|
avahi_qt_poll_get@Base 0.6.16
|
@ -0,0 +1,5 @@
|
|||||||
|
debian/tmp/usr/include/avahi-tqt/qt-watch.h
|
||||||
|
debian/tmp/usr/lib/libavahi-tqt.so
|
||||||
|
debian/tmp/usr/lib/libavahi-tqt.la
|
||||||
|
debian/tmp/usr/lib/libavahi-tqt.a
|
||||||
|
debian/tmp/usr/lib/pkgconfig/avahi-tqt.pc
|
@ -0,0 +1,17 @@
|
|||||||
|
#!/usr/bin/make -f
|
||||||
|
|
||||||
|
%:
|
||||||
|
dh $@
|
||||||
|
|
||||||
|
# Ensure at build time that the library has no dependencies on undefined
|
||||||
|
# symbols, and speed up loading.
|
||||||
|
export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) -Wl,-z,defs -Wl,-O1
|
||||||
|
|
||||||
|
override_dh_auto_configure:
|
||||||
|
./autogen.sh
|
||||||
|
dh_auto_configure -- $(CONFFLAGS) \
|
||||||
|
--enable-compat-libdns_sd \
|
||||||
|
--disable-mono --disable-monodoc \
|
||||||
|
--disable-gtk3 \
|
||||||
|
--with-systemdsystemunitdir=/lib/systemd/system
|
||||||
|
|
Loading…
Reference in new issue