Signed-off-by: Slávek Banko <slavek.banko@axis.cz>pull/115/head
parent
69d976d353
commit
877f6830fd
@ -1,3 +0,0 @@
|
|||||||
This package uses the quilt patch management system.
|
|
||||||
|
|
||||||
Please refer to /usr/share/doc/quilt/README.source for further information.
|
|
@ -1,246 +0,0 @@
|
|||||||
# -*- mode: makefile; coding: utf-8 -*-
|
|
||||||
# Copyright © 2003 Christopher L Cheney <ccheney@debian.org>
|
|
||||||
# Copyright © 2019 TDE Team
|
|
||||||
# Description: A class for TDE packages; sets TDE environment variables, etc
|
|
||||||
#
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License as
|
|
||||||
# published by the Free Software Foundation; either version 2, or (at
|
|
||||||
# your option) any later version.
|
|
||||||
#
|
|
||||||
# This program 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
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
||||||
# 02111-1307 USA.
|
|
||||||
|
|
||||||
ifndef _cdbs_bootstrap
|
|
||||||
_cdbs_scripts_path ?= /usr/lib/cdbs
|
|
||||||
_cdbs_rules_path ?= /usr/share/cdbs/1/rules
|
|
||||||
_cdbs_class_path ?= /usr/share/cdbs/1/class
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifndef _cdbs_class_debian-qt-kde
|
|
||||||
_cdbs_class_debian-qt-kde := 1
|
|
||||||
|
|
||||||
# for dh_icons
|
|
||||||
CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4)
|
|
||||||
|
|
||||||
# Note: This _must_ be included before autotools.mk, or it won't work.
|
|
||||||
common-configure-arch common-configure-indep:: debian/stamp-cvs-make
|
|
||||||
debian/stamp-cvs-make:
|
|
||||||
ifndef _cdbs_class_cmake
|
|
||||||
cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
|
|
||||||
ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" ""
|
|
||||||
cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh
|
|
||||||
endif
|
|
||||||
ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" ""
|
|
||||||
cp -Rp /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh
|
|
||||||
endif
|
|
||||||
$(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist;
|
|
||||||
endif
|
|
||||||
touch debian/stamp-cvs-make
|
|
||||||
|
|
||||||
include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
|
|
||||||
|
|
||||||
ifdef _cdbs_tarball_dir
|
|
||||||
DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE)
|
|
||||||
else
|
|
||||||
DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE)
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifndef _cdbs_class_cmake
|
|
||||||
include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix)
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef _cdbs_class_cmake
|
|
||||||
ifneq "$(wildcard /usr/bin/ninja)" ""
|
|
||||||
MAKE = ninja -v
|
|
||||||
DEB_MAKE_ENVVARS += DESTDIR=$(DEB_DESTDIR)
|
|
||||||
DEB_MAKE_INSTALL_TARGET = install
|
|
||||||
DEB_CMAKE_NORMAL_ARGS += -GNinja
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifndef _cdbs_rules_patchsys_quilt
|
|
||||||
DEB_PATCHDIRS := debian/patches/common debian/patches
|
|
||||||
endif
|
|
||||||
|
|
||||||
export kde_cgidir = \$${libdir}/cgi-bin
|
|
||||||
export kde_confdir = \$${sysconfdir}/trinity
|
|
||||||
export kde_htmldir = \$${datadir}/doc/tde/HTML
|
|
||||||
|
|
||||||
DEB_KDE_ENABLE_FINAL := yes
|
|
||||||
DEB_INSTALL_DOCS_ALL :=
|
|
||||||
|
|
||||||
DEB_DH_MAKESHLIBS_ARGS_ALL := -V
|
|
||||||
DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib)
|
|
||||||
|
|
||||||
DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin
|
|
||||||
DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include"
|
|
||||||
DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el
|
|
||||||
|
|
||||||
# The default gzip compressor has been changed in dpkg >= 1.17.0.
|
|
||||||
deb_default_compress = $(shell LANG=C dpkg-deb --version | head -n1 | \
|
|
||||||
sed -e "s|.*version ||" -e "s| .*||" | \
|
|
||||||
xargs -r dpkg --compare-versions 1.17.0 lt \
|
|
||||||
&& echo xz || echo gzip)
|
|
||||||
ifeq ($(deb_default_compress),gzip)
|
|
||||||
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
|
||||||
&& echo xz || echo bzip2)
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
|
||||||
cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb
|
|
||||||
ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches)))
|
|
||||||
cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,)
|
|
||||||
else
|
|
||||||
cdbs_kde_enable_final =
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
|
|
||||||
cdbs_kde_enable_final =
|
|
||||||
cdbs_kde_enable_debug = --enable-debug=yes
|
|
||||||
else
|
|
||||||
cdbs_kde_enable_debug = --disable-debug
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS)))
|
|
||||||
cdbs_kde_enable_debug = --enable-debug=full
|
|
||||||
endif
|
|
||||||
|
|
||||||
DEB_BUILD_PARALLEL ?= true
|
|
||||||
|
|
||||||
cdbs_configure_flags += \
|
|
||||||
--with-qt-dir=/usr/share/qt3 \
|
|
||||||
--disable-rpath \
|
|
||||||
--with-xinerama \
|
|
||||||
$(cdbs_kde_enable_final) \
|
|
||||||
$(cdbs_kde_enable_debug)
|
|
||||||
|
|
||||||
|
|
||||||
# This is a convenience target for calling manually.
|
|
||||||
# It's not part of the build process.
|
|
||||||
buildprep: clean apply-patches
|
|
||||||
ifndef _cdbs_class_cmake
|
|
||||||
$(MAKE) -f admin/Makefile.common dist
|
|
||||||
endif
|
|
||||||
debian/rules clean
|
|
||||||
|
|
||||||
.tdepkginfo:
|
|
||||||
echo "# TDE package information" >.tdepkginfo
|
|
||||||
dpkg-parsechangelog | sed -n "s|^Source: |Name: |p" >>.tdepkginfo
|
|
||||||
dpkg-parsechangelog | sed -n "s|^Version: |Version: |p" >>.tdepkginfo
|
|
||||||
date +"DateTime: %m/%d/%Y %H:%M" -u -d "$$(dpkg-parsechangelog | sed -n 's|^Date: ||p')" >>.tdepkginfo
|
|
||||||
|
|
||||||
post-patches:: .tdepkginfo
|
|
||||||
|
|
||||||
common-build-arch:: debian/stamp-man-pages
|
|
||||||
debian/stamp-man-pages:
|
|
||||||
if ! test -d debian/man/out; then mkdir -p debian/man/out; fi
|
|
||||||
for f in $$(find debian/man -name '*.sgml'); do \
|
|
||||||
docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \
|
|
||||||
done
|
|
||||||
for f in $$(find debian/man -name '*.man'); do \
|
|
||||||
soelim -I debian/man $$f \
|
|
||||||
> debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \
|
|
||||||
done
|
|
||||||
touch debian/stamp-man-pages
|
|
||||||
|
|
||||||
common-binary-indep::
|
|
||||||
( set -e; \
|
|
||||||
tmpf=`mktemp debian/versions.XXXXXX`; \
|
|
||||||
perl debian/cdbs/versions.pl >$$tmpf; \
|
|
||||||
for p in $(DEB_INDEP_PACKAGES); do \
|
|
||||||
cat $$tmpf >>debian/$$p.substvars; \
|
|
||||||
done; \
|
|
||||||
rm -f $$tmpf )
|
|
||||||
|
|
||||||
common-binary-arch::
|
|
||||||
( set -e; \
|
|
||||||
tmpf=`mktemp debian/versions.XXXXXX`; \
|
|
||||||
perl debian/cdbs/versions.pl >$$tmpf; \
|
|
||||||
for p in $(DEB_ARCH_PACKAGES); do \
|
|
||||||
cat $$tmpf >>debian/$$p.substvars; \
|
|
||||||
done; \
|
|
||||||
rm -f $$tmpf )
|
|
||||||
# update multi-arch path in install files
|
|
||||||
ls -d debian/* | \
|
|
||||||
grep -E "(install|links)$$" | \
|
|
||||||
while read a; do \
|
|
||||||
[ -d $$a ] || [ -f $$a.arch ] || \
|
|
||||||
! grep -q "\$$(DEB_HOST_MULTIARCH)" $$a || \
|
|
||||||
sed -i.arch "s|\$$(DEB_HOST_MULTIARCH)|$(DEB_HOST_MULTIARCH)|g" $$a; \
|
|
||||||
done
|
|
||||||
|
|
||||||
clean::
|
|
||||||
rm -rf debian/man/out
|
|
||||||
-rmdir debian/man
|
|
||||||
rm -f debian/stamp-man-pages
|
|
||||||
rm -rf debian/shlibs-check
|
|
||||||
# revert multi-arch path in install files
|
|
||||||
ls -d debian/* | \
|
|
||||||
grep -E "(install|links)$$" | \
|
|
||||||
while read a; do \
|
|
||||||
[ ! -f $$a.arch ] || \
|
|
||||||
mv $$a.arch $$a; \
|
|
||||||
done
|
|
||||||
|
|
||||||
$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%:
|
|
||||||
if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi
|
|
||||||
if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi
|
|
||||||
if test -e debian/$(cdbs_curpkg).lintian; then \
|
|
||||||
install -p -D -m644 debian/$(cdbs_curpkg).lintian \
|
|
||||||
debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \
|
|
||||||
fi
|
|
||||||
if test -e debian/$(cdbs_curpkg).presubj; then \
|
|
||||||
install -p -D -m644 debian/$(cdbs_curpkg).presubj \
|
|
||||||
debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
binary-install/$(DEB_SOURCE_PACKAGE)-doc-html::
|
|
||||||
set -e; \
|
|
||||||
for doc in `cd $(DEB_DESTDIR)/opt/trinity/share/doc/tde/HTML/en; find . -name index.docbook`; do \
|
|
||||||
pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \
|
|
||||||
echo Building $$pkg HTML docs...; \
|
|
||||||
mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \
|
|
||||||
cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \
|
|
||||||
/opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/tde/HTML/en/$$pkg/index.docbook; \
|
|
||||||
done
|
|
||||||
for pkg in $(DOC_HTML_PRUNE) ; do \
|
|
||||||
rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \
|
|
||||||
done
|
|
||||||
|
|
||||||
common-build-indep:: debian/stamp-kde-apidox
|
|
||||||
debian/stamp-kde-apidox:
|
|
||||||
$(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox)
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
common-install-indep:: common-install-kde-apidox
|
|
||||||
common-install-kde-apidox::
|
|
||||||
$(if $(DEB_KDE_APIDOX),+DESTDIR=$(DEB_DESTDIR) $(DEB_MAKE_INVOKE) install-apidox)
|
|
||||||
|
|
||||||
cleanbuilddir::
|
|
||||||
-$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR))
|
|
||||||
|
|
||||||
clean::
|
|
||||||
ifndef _cdbs_class_cmake
|
|
||||||
if test -n "$(DEB_KDE_CVS_MAKE)" && test -d $(DEB_SRCDIR); then \
|
|
||||||
cd $(DEB_SRCDIR); \
|
|
||||||
find . -name Makefile.in -print | \
|
|
||||||
xargs --no-run-if-empty rm -f; \
|
|
||||||
rm -f Makefile.am acinclude.m4 aclocal.m4 config.h.in \
|
|
||||||
configure configure.files configure.in stamp-h.in \
|
|
||||||
subdirs; \
|
|
||||||
fi
|
|
||||||
endif
|
|
||||||
rm -f .tdepkginfo
|
|
||||||
rm -f debian/stamp-kde-apidox
|
|
||||||
rm -f debian/stamp-cvs-make
|
|
||||||
|
|
||||||
endif
|
|
@ -1,19 +0,0 @@
|
|||||||
#!/usr/bin/env perl
|
|
||||||
|
|
||||||
use strict;
|
|
||||||
use warnings;
|
|
||||||
|
|
||||||
my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`;
|
|
||||||
my ($version3, $version3_next);
|
|
||||||
my ($version2, $version2_next);
|
|
||||||
|
|
||||||
($version3 = $version) =~ s/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/;
|
|
||||||
($version2 = $version3) =~ s/\.[^.]+$//;
|
|
||||||
|
|
||||||
($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e;
|
|
||||||
($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e;
|
|
||||||
|
|
||||||
print "TDE-Version3=$version3\n";
|
|
||||||
print "TDE-Version2=$version2\n";
|
|
||||||
print "TDE-Next-Version3=$version3_next\n";
|
|
||||||
print "TDE-Next-Version2=$version2_next\n";
|
|
@ -1,373 +0,0 @@
|
|||||||
knetworkmanager8-trinity (1:0.8-0ubuntu12) karmic; urgency=low
|
|
||||||
|
|
||||||
* UI tweaks for discoverability
|
|
||||||
|
|
||||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Mon, 26 Oct 2009 17:44:00 -0600
|
|
||||||
|
|
||||||
knetworkmanager-trinity (1:0.8-0ubuntu10) karmic; urgency=low
|
|
||||||
|
|
||||||
* Fixed VPN reauthentication request dialog failure when used with the permanent storage option
|
|
||||||
|
|
||||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Tue, 06 Oct 2009 19:31:00 -0600
|
|
||||||
|
|
||||||
knetworkmanager-trinity (1:0.8-0ubuntu7) karmic; urgency=low
|
|
||||||
|
|
||||||
* Fixed various minor glitches
|
|
||||||
|
|
||||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Sat, 03 Oct 2009 12:29:00 -0600
|
|
||||||
|
|
||||||
knetworkmanager-trinity (1:0.8-0ubuntu6) karmic; urgency=low
|
|
||||||
|
|
||||||
* Repaired poor usability for new wireless connections
|
|
||||||
* Repaired poor usability for connection management
|
|
||||||
* VPN connections now remember login information when asked
|
|
||||||
|
|
||||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Tue, 29 Sep 2009 09:39:00 -0600
|
|
||||||
|
|
||||||
knetworkmanager-trinity (1:0.8-0ubuntu5) karmic; urgency=low
|
|
||||||
|
|
||||||
* Repaired VPN plugins
|
|
||||||
* VPNC now allows hashed group password
|
|
||||||
* PPTP repaired and enabled
|
|
||||||
|
|
||||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Mon, 28 Sep 2009 14:51:00 -0600
|
|
||||||
|
|
||||||
knetworkmanager-trinity (1:0.8-0ubuntu4) karmic; urgency=low
|
|
||||||
|
|
||||||
* Patched backend for new NM0.8 API
|
|
||||||
* Repaired poor usability in the "new connection" tasktray menu
|
|
||||||
* Repaired poor usability in the available devices tasktray menu
|
|
||||||
* Moved to /opt/trinity
|
|
||||||
|
|
||||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Sat, 22 Aug 2009 23:34:00 -0600
|
|
||||||
|
|
||||||
knetworkmanager (1:0.7~~svn941706-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Updated SVN snapshot (r941706).
|
|
||||||
* debian/patches/04-dbus_access.patch
|
|
||||||
- Most of the relevant changes have been merged upstream. The patch now
|
|
||||||
only contains the Debian specific group "netdev" section.
|
|
||||||
* debian/control
|
|
||||||
- Bump Standards-Version to 3.8.1. No further changes.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Fri, 20 Mar 2009 22:59:51 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.7~~svn931033-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* debian/patches/05-no_blank_psk.patch
|
|
||||||
- Do not set zero-length PSK and LEAP passwords otherwise libnm-util fails
|
|
||||||
to validate them. Closes: #517213
|
|
||||||
Patch by Dan Williams, thanks!
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Tue, 03 Mar 2009 00:34:15 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.7~~svn931033-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Merge experimental branch into unstable. Remaining changes:
|
|
||||||
- Remove 07-indicate_manual_config.patch, obsolete.
|
|
||||||
* debian/control
|
|
||||||
- Wrap Build-Depends.
|
|
||||||
- Bump Build-Depends on debhelper to (>= 7).
|
|
||||||
* debian/compat
|
|
||||||
- Bump debhelper compat level to 7.
|
|
||||||
* debian/rules
|
|
||||||
- Include debhelper.mk before any other files as recommended by the cdbs
|
|
||||||
documentation.
|
|
||||||
* Update SVN snapshot to r931033.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Wed, 25 Feb 2009 10:54:39 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.7~~svn908338-2) experimental; urgency=low
|
|
||||||
|
|
||||||
* debian/patches/04-dbus_access.patch
|
|
||||||
- Update D-Bus names and interfaces for NM 0.7. Closes: #511526
|
|
||||||
- Remove bare send_interface directives to avoid non-deterministic allow
|
|
||||||
messages with no interface. Closes: #510757
|
|
||||||
- Do not allow unpriviledged processes to ask for a users' connections.
|
|
||||||
- Allow introspection by default.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Thu, 05 Feb 2009 01:52:22 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.7~~svn908338-1) experimental; urgency=low
|
|
||||||
|
|
||||||
* Updated SVN snapshot (r908338).
|
|
||||||
* debian/rules
|
|
||||||
- Stop moving icons around, fixed upstream.
|
|
||||||
* debian/patches/01-configure_package_name.patch
|
|
||||||
- Make sure we set the correct PACKAGE name when generating the build
|
|
||||||
system so the translations are installed properly.
|
|
||||||
* debian/network-manager-kde.lintian-overrides
|
|
||||||
- Updated for the latest lintian changes.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Sun, 11 Jan 2009 06:52:06 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.7~~svn897092-1) experimental; urgency=low
|
|
||||||
|
|
||||||
* SVN snapshot of the upcoming 0.7 release (for NM 0.7).
|
|
||||||
* debian/control
|
|
||||||
- Add Build-Depends on pkg-config.
|
|
||||||
- Bump Build-Depends on nm-* packages to (>= 0.7.0).
|
|
||||||
- Add Build-Depends on libdbus-1-qt3-dev (>= 0.8.1).
|
|
||||||
- Bump Build-Depends on debhelper to (>= 6.0.7) for dh_lintian.
|
|
||||||
- Bump Depends on network-manager to (>= 0.7.0).
|
|
||||||
- Bump Standards-Version to 3.8.0. Add README.source as recommended by the
|
|
||||||
new policy.
|
|
||||||
* debian/rules
|
|
||||||
- Install autostart desktop file into /usr/share/autostart/.
|
|
||||||
- Install icons into /usr/share/icons/hicolor/ so KDE4 can find them.
|
|
||||||
Closes: #487303
|
|
||||||
- Add support for both libtool 1.x and 2.x.
|
|
||||||
* Switch patch management system to quilt.
|
|
||||||
* debian/patches/04-dbus_access.patch
|
|
||||||
- Refresh and update.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Tue, 16 Dec 2008 04:18:10 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2.2-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* debian/patches/07-indicate_manual_config.patch
|
|
||||||
- manual-means-online: If there are interfaces that are not managed by
|
|
||||||
NetworkManager because they have custom configuration in
|
|
||||||
/etc/network/interfaces, we assume to be online and show a wired network
|
|
||||||
icon indicating manual network configuration.
|
|
||||||
* debian/control
|
|
||||||
- Add Build-Depends on pkg-config.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Wed, 14 Jan 2009 08:22:11 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2.2-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* New upstream release.
|
|
||||||
- Improved tray icon animation using mng files. Closes: #394815
|
|
||||||
- Improved LEAP security. Closes: #470709
|
|
||||||
* Removed patches
|
|
||||||
- debian/patches/01-fix_french_translation.patch (merged upstream)
|
|
||||||
- debian/patches/02-linux_types.patch (obsolete)
|
|
||||||
- debian/patches/03-awk_path.patch (fixed upstream)
|
|
||||||
- debian/patches/05-desktop_file_fixes.patch (merged upstream)
|
|
||||||
* debian/knetworkmanager.linda
|
|
||||||
- Remove the linda override file, linda is dead.
|
|
||||||
* debian/{knetworkmanager.lintian -> network-manager-kde.lintian-overrides}
|
|
||||||
- Rename the lintian override file so it is automatically installed by
|
|
||||||
dh_lintian.
|
|
||||||
* debian/rules
|
|
||||||
- Drop the no longer required install rules for the override files.
|
|
||||||
- Drop the install rule for the autostart file. It's provided by upstream
|
|
||||||
now.
|
|
||||||
* debian/copyright
|
|
||||||
- Update the authors list.
|
|
||||||
* debian/control
|
|
||||||
- Bump Build-Depends on libnl-dev (>= 1.1).
|
|
||||||
- Drop Build-Depends on kapptemplate. The upstream tarball ships a proper
|
|
||||||
admin/ directory again.
|
|
||||||
* debian/watch
|
|
||||||
- New download location at ftp.kde.org.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Fri, 04 Apr 2008 19:41:02 +0200
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2-3) unstable; urgency=low
|
|
||||||
|
|
||||||
* debian/control
|
|
||||||
- Use the new "Homepage:" field to specify the upstream URL.
|
|
||||||
- The Vcs-* fields are now officially supported, so remove the XS- prefix.
|
|
||||||
- Bump Standards-Version to 3.7.3. No further changes required.
|
|
||||||
- Fix a few capitalization errors in the package description.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Fri, 11 Jan 2008 02:08:24 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* Rebuild against network-manager 0.6.5 to enable phase2 and leap
|
|
||||||
authentication support.
|
|
||||||
* debian/rules
|
|
||||||
- Remove debian/stamp-bootstrap on clean. This fixes a FTBFS if package is
|
|
||||||
built twice in a row. Closes: #442621
|
|
||||||
* debian/control
|
|
||||||
- Add Build-Conflicts: autoconf2.13. Closes: #441046
|
|
||||||
* debian/menu
|
|
||||||
- Set section to Applications/Network/Monitoring which seems to be the
|
|
||||||
most appropriate amongst the available sections.
|
|
||||||
* debian/patches/05-desktop_file_fixes.patch
|
|
||||||
- Fix the *.desktop files to be compliant to the fd.o menu and desktop
|
|
||||||
entry spec.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Sun, 16 Sep 2007 21:01:25 +0200
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* New upstream release.
|
|
||||||
* debian/patches/05-leap_support.patch
|
|
||||||
- Removed, merged upstream.
|
|
||||||
* debian/patches/06-version_check.patch
|
|
||||||
- Removed, merged upstream.
|
|
||||||
* The upstream tarball does not ship an admin/ directory. Build-Depend on
|
|
||||||
kapptemplate, so we can copy it from there.
|
|
||||||
* debian/menu
|
|
||||||
- Update to new menu hierarchy and add a longtitle.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Wed, 25 Jul 2007 17:10:36 +0200
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2~svn678822-3) unstable; urgency=low
|
|
||||||
|
|
||||||
* debian/patches/06-version_check.patch
|
|
||||||
- Added. Fixes the problem with knetworkmanager no longer connecting
|
|
||||||
automatically upon login. Closes: #431255
|
|
||||||
If you are upgrading from a previous 0.2 svn snapshot, you may have to
|
|
||||||
clear the list of trusted networks in the configuration dialog.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Sun, 01 Jul 2007 11:47:00 +0200
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2~svn678822-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* debian/patches/02-linux_types.patch
|
|
||||||
- Pass "-std=gnu++98" to CXXFLAGS. Otherwise the type __u64 is not defined
|
|
||||||
in linux-libc-dev for ANSI C/C89. Closes: #430795
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Thu, 28 Jun 2007 06:08:04 +0200
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2~svn678822-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* SVN snapshot of the upcoming 0.2 release which has native VPN plugin
|
|
||||||
support. Closes: #415742
|
|
||||||
* debian/control
|
|
||||||
- Add XS-Vcs-* fields.
|
|
||||||
- Add Recommends: network-manager-vpnc, network-manager-openvpn.
|
|
||||||
* debian/rules
|
|
||||||
- Compile with openvpn and vpnc support.
|
|
||||||
|
|
||||||
* Removed patches that were merged upstream:
|
|
||||||
- debian/patches/05-no_deserialize.patch
|
|
||||||
- debian/patches/06-pretty_notification.patch
|
|
||||||
- debian/patches/07-overlay_icon_vpn.patch
|
|
||||||
- debian/patches/08-disable_sm.patch
|
|
||||||
- debian/patches/09-dbus_bool_t.patch
|
|
||||||
|
|
||||||
* debian/patches/02-linux_types.patch
|
|
||||||
- Added. Needed to workaround a problem in libnl.
|
|
||||||
* debian/patches/03-awk_path.patch
|
|
||||||
- Added. In Debian awk is installed in /usr/bin.
|
|
||||||
* debian/patches/04-dbus_access.patch
|
|
||||||
- Do not remove the dbus at_console access check but make it an
|
|
||||||
alternative to the Debian netdev group policy. Closes: #426467
|
|
||||||
* debian/patches/05-leap_support.patch
|
|
||||||
- Added. Do not fail to compile if LEAP support is not available.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Fri, 22 Jun 2007 21:08:32 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.1-4) unstable; urgency=low
|
|
||||||
|
|
||||||
* Actually install the autostart file for knetworkmanager.
|
|
||||||
Thanks to Yannick Roehlly for spotting this glitch.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Fri, 12 Jan 2007 11:26:28 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.1-3) unstable; urgency=low
|
|
||||||
|
|
||||||
* Pull some features and bug fixes from svn:
|
|
||||||
- debian/patches/05-no_deserialize.patch
|
|
||||||
+ Don't call deserialize on encryption object to avoid warning of
|
|
||||||
libnm-util. Closes: #391486
|
|
||||||
- debian/patches/06-pretty_notification.patch
|
|
||||||
+ Prettify notification messages.
|
|
||||||
- debian/patches/07-overlay_icon_vpn.patch
|
|
||||||
+ Show overlay icon (lock) for active VPN connections.
|
|
||||||
- debian/patches/08-disable_sm.patch
|
|
||||||
+ Disable session management to avoid a deadlock when accessing tdewallet.
|
|
||||||
Install an autostart file into /usr/share/autostart/ instead.
|
|
||||||
Closes: #406162
|
|
||||||
- debian/patches/09-dbus_bool_t.patch
|
|
||||||
+ Use dbus_bool_t instead of bool. Closes: #398974
|
|
||||||
* debian/patches/01-fix_french_translation.patch
|
|
||||||
- Added patch from Emmanuel Bouthenot which fixes some errors in the
|
|
||||||
French translation. Closes: #402285
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Tue, 9 Jan 2007 16:31:52 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.1-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* Update maintainer email address to biebl@debian.org.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Fri, 20 Oct 2006 00:02:03 +0200
|
|
||||||
|
|
||||||
knetworkmanager (1:0.1-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Finally the 0.1 release. Woohoo!
|
|
||||||
- Use an epoch to fix the versioning scheme I managed to mess up.
|
|
||||||
- Fixes a crash when removing network objects for a nonexistent network
|
|
||||||
interface. Closes: #390052
|
|
||||||
* debian/patches/01-no_network_status.patch
|
|
||||||
- Removed, fixed upstream.
|
|
||||||
* debian/patches/03-configure.patch
|
|
||||||
- Removed, fixed upstream.
|
|
||||||
* Dropped the build-dep on kapptemplate. The upstream tarball now ships a
|
|
||||||
proper admin/ directory.
|
|
||||||
* debian/patches/02-dialup.patch
|
|
||||||
- Removed. Also dropped the Recommends: pppconfig. pppconfig can't
|
|
||||||
generate entries for /etc/network/interfaces yet.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Fri, 29 Sep 2006 19:18:08 +0200
|
|
||||||
|
|
||||||
knetworkmanager (0.09+0.1r586773-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Updated to svn revision 586773.
|
|
||||||
* Do not refer to non existent khelpcenter help:/knetworkmanager/ in man
|
|
||||||
page. Closes: #385642
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Wed, 20 Sep 2006 19:46:52 +0200
|
|
||||||
|
|
||||||
knetworkmanager (0.09+0.1r577960-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Updated to svn revision 577960.
|
|
||||||
- Access TDEWallet on demand, not on startup. Closes: #379606
|
|
||||||
* Added a Recommends: pppconfig. Closes: #380316
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Mon, 28 Aug 2006 01:14:29 +0200
|
|
||||||
|
|
||||||
knetworkmanager (0.09+0.1r560817-1) unstable; urgency=medium
|
|
||||||
|
|
||||||
* Updated to svn revision 560817.
|
|
||||||
* Removed 04-gnome_keyring_daemon.patch, fixed upstream.
|
|
||||||
* Added 04-dbus_access.patch. Fixes D-Bus access rights.
|
|
||||||
Closes: #379309, #379364
|
|
||||||
* Enabled dial up support. Set pppconfig as configuration utility.
|
|
||||||
Closes: #376071
|
|
||||||
* Reload D-Bus after installation. Closes: #379307
|
|
||||||
* Updated admin/cvs.sh to support autoconf-2.6. Closes: #379820
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Tue, 25 Jul 2006 23:33:31 +0200
|
|
||||||
|
|
||||||
knetworkmanager (0.09+0.1r550737-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Updated to svn revision 550737.
|
|
||||||
* Added 01-no_network_status.patch which removes a build dependency on
|
|
||||||
networkstatus.
|
|
||||||
* Removed 03-configure_notifications.patch, merged upstream.
|
|
||||||
* This version does not ship an admin/ directory. Added a build dependency
|
|
||||||
on kapptemplate and modified debian/rules to copy it from kapptemplate.
|
|
||||||
* Bumped Standards-Version to 3.7.2, no further changes required.
|
|
||||||
* Updated homepage URL.
|
|
||||||
* Added 04-gnome_keyring_daemon.patch which sets the correct path to the
|
|
||||||
gnome-keyring-daemon binary. VPN plugins use gnome-keyring-daemon to store
|
|
||||||
their passwords.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Wed, 14 Jun 2006 17:16:07 +0200
|
|
||||||
|
|
||||||
knetworkmanager (0.09+0.1r527269-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* New upstream release.
|
|
||||||
* Removed 01-xdg_app.patch, merged upstream.
|
|
||||||
* Added 03-configure_notifications.patch, this patch modifies the context
|
|
||||||
menu of the systray applet to provide quick access to the notification
|
|
||||||
settings.
|
|
||||||
* Added a "Provides: knetworkmanager" to make the package installable by its
|
|
||||||
upstream name.
|
|
||||||
* Initial upload. Closes: #351069
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Thu, 27 Apr 2006 08:01:39 +0200
|
|
||||||
|
|
||||||
knetworkmanager (0.09+0.1r5964-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Initial release.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Tue, 7 Feb 2006 21:43:56 +0100
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
9
|
|
@ -1,37 +0,0 @@
|
|||||||
Source: knetworkmanager8-trinity
|
|
||||||
Section: tde
|
|
||||||
Priority: optional
|
|
||||||
Maintainer: TDE Debian Team <team-debian@trinitydesktop.org>
|
|
||||||
Build-Depends: cdbs,
|
|
||||||
debhelper (>= 9~),
|
|
||||||
pkg-config,
|
|
||||||
tdelibs14-trinity-dev,
|
|
||||||
libnm-util-dev (>= 0.7.0),
|
|
||||||
libnm-glib-dev (>= 0.7.0),
|
|
||||||
network-manager-dev (>= 0.7.0),
|
|
||||||
network-manager-dev (<< 0.8.9),
|
|
||||||
libhal-dev,
|
|
||||||
libdbus-1-tqt-dev,
|
|
||||||
libiw-dev,
|
|
||||||
libnl-dev (>= 1.1),
|
|
||||||
quilt,
|
|
||||||
network-manager-vpnc,
|
|
||||||
network-manager-openvpn,
|
|
||||||
network-manager-strongswan,
|
|
||||||
network-manager-pptp,
|
|
||||||
automake, autoconf, libtool, libltdl-dev
|
|
||||||
Standards-Version: 3.8.4
|
|
||||||
Homepage: http://opensuse.org/Projects/KNetworkManager
|
|
||||||
|
|
||||||
Package: network-manager-kde-trinity
|
|
||||||
Architecture: any
|
|
||||||
Depends: ${shlibs:Depends}, ${misc:Depends}, network-manager (>= 0.7.0), network-manager (<< 0.8.9)
|
|
||||||
Replaces: network-manager-kde-trinity (<< 4:14.0.0~)
|
|
||||||
Breaks: network-manager-kde-trinity (<< 4:14.0.0~)
|
|
||||||
Recommends: tdewalletmanager-trinity, network-manager-vpnc, network-manager-openvpn, network-manager-strongswan, network-manager-pptp
|
|
||||||
Provides: knetworkmanager-trinity
|
|
||||||
Conflicts: network-manager-kde
|
|
||||||
Description: TDE systray applet for controlling NetworkManager [Trinity]
|
|
||||||
Systray applet for controlling network connections managed by
|
|
||||||
NetworkManager. It is mainly written for Trinity but also works for
|
|
||||||
other desktop environments like GNOME or Xfce.
|
|
@ -1,34 +0,0 @@
|
|||||||
This package was debianized by Michael Biebl <biebl@teco.edu> on
|
|
||||||
Fri, 3 Feb 2006 05:53:06 +0100.
|
|
||||||
|
|
||||||
It was downloaded from http://www.opensuse.org
|
|
||||||
|
|
||||||
Upstream Authors:
|
|
||||||
Timo Hoenig <thoenig@suse.de>
|
|
||||||
Will Stephenson <wstephenson@suse.de>
|
|
||||||
Stefan Bogner <sbogner@suse.de>
|
|
||||||
Helmut Schaa <hschaa@suse.de>
|
|
||||||
Valentine Sinitsyn <e_val@inbox.ru>
|
|
||||||
|
|
||||||
Copyright:
|
|
||||||
Copyright (C) 2005, 2006 Novell, Inc.
|
|
||||||
|
|
||||||
License:
|
|
||||||
|
|
||||||
This package is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This package 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 General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this package; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
|
|
||||||
On Debian systems, the complete text of the GNU General
|
|
||||||
Public License can be found in `/usr/share/common-licenses/GPL'.
|
|
||||||
|
|
@ -1,145 +0,0 @@
|
|||||||
.\" This file was generated by kdemangen.pl
|
|
||||||
.TH KNETWORKMANAGER 1 "Feb 2006" "Trinity Desktop Environment" "A NetworkManager front-end for TDE"
|
|
||||||
.SH NAME
|
|
||||||
knetworkmanager
|
|
||||||
\- A NetworkManager front-end for TDE
|
|
||||||
.SH SYNOPSIS
|
|
||||||
knetworkmanager [Qt\-options] [TDE\-options]
|
|
||||||
.SH DESCRIPTION
|
|
||||||
A NetworkManager front-end for TDE
|
|
||||||
.SH OPTIONS
|
|
||||||
.SS Generic options:
|
|
||||||
.TP
|
|
||||||
.B \-\-help
|
|
||||||
Show help about options
|
|
||||||
.TP
|
|
||||||
.B \-\-help\-qt
|
|
||||||
Show Qt specific options
|
|
||||||
.TP
|
|
||||||
.B \-\-help\-tde
|
|
||||||
Show TDE specific options
|
|
||||||
.TP
|
|
||||||
.B \-\-help\-all
|
|
||||||
Show all options
|
|
||||||
.TP
|
|
||||||
.B \-\-author
|
|
||||||
Show author information
|
|
||||||
.TP
|
|
||||||
.B \-v, \-\-version
|
|
||||||
Show version information
|
|
||||||
.TP
|
|
||||||
.B \-\-license
|
|
||||||
Show license information
|
|
||||||
.TP
|
|
||||||
.B \-\-
|
|
||||||
End of options
|
|
||||||
.SS
|
|
||||||
.SS TDE options:
|
|
||||||
.TP
|
|
||||||
.B \-\-caption <caption>
|
|
||||||
Use 'caption' as name in the titlebar
|
|
||||||
.TP
|
|
||||||
.B \-\-icon <icon>
|
|
||||||
Use 'icon' as the application icon
|
|
||||||
.TP
|
|
||||||
.B \-\-miniicon <icon>
|
|
||||||
Use 'icon' as the icon in the titlebar
|
|
||||||
.TP
|
|
||||||
.B \-\-config <filename>
|
|
||||||
Use alternative configuration file
|
|
||||||
.TP
|
|
||||||
.B \-\-dcopserver <server>
|
|
||||||
Use the DCOP Server specified by 'server'
|
|
||||||
.TP
|
|
||||||
.B \-\-nocrashhandler
|
|
||||||
Disable crash handler, to get core dumps
|
|
||||||
.TP
|
|
||||||
.B \-\-waitforwm
|
|
||||||
Waits for a WM_NET compatible windowmanager
|
|
||||||
.TP
|
|
||||||
.B \-\-style <style>
|
|
||||||
sets the application GUI style
|
|
||||||
.TP
|
|
||||||
.B \-\-geometry <geometry>
|
|
||||||
sets the client geometry of the main widget - see man X for the argument format
|
|
||||||
.TP
|
|
||||||
.B \-\-nofork
|
|
||||||
Don't run in the background.
|
|
||||||
.SS Qt options:
|
|
||||||
.TP
|
|
||||||
.B \-\-display <displayname>
|
|
||||||
Use the X-server display 'displayname'
|
|
||||||
.TP
|
|
||||||
.B \-\-session <sessionId>
|
|
||||||
Restore the application for the given 'sessionId'
|
|
||||||
.TP
|
|
||||||
.B \-\-cmap
|
|
||||||
Causes the application to install a private color
|
|
||||||
map on an 8-bit display
|
|
||||||
.TP
|
|
||||||
.B \-\-ncols <count>
|
|
||||||
Limits the number of colors allocated in the color
|
|
||||||
cube on an 8-bit display, if the application is
|
|
||||||
using the QApplication::ManyColor color
|
|
||||||
specification
|
|
||||||
.TP
|
|
||||||
.B \-\-nograb
|
|
||||||
tells Qt to never grab the mouse or the keyboard
|
|
||||||
.TP
|
|
||||||
.B \-\-dograb
|
|
||||||
running under a debugger can cause an implicit
|
|
||||||
-nograb, use -dograb to override
|
|
||||||
.TP
|
|
||||||
.B \-\-sync
|
|
||||||
switches to synchronous mode for debugging
|
|
||||||
.TP
|
|
||||||
.B \-\-fn, \-\-font <fontname>
|
|
||||||
defines the application font
|
|
||||||
.TP
|
|
||||||
.B \-\-bg, \-\-background <color>
|
|
||||||
sets the default background color and an
|
|
||||||
application palette (light and dark shades are
|
|
||||||
calculated)
|
|
||||||
.TP
|
|
||||||
.B \-\-fg, \-\-foreground <color>
|
|
||||||
sets the default foreground color
|
|
||||||
.TP
|
|
||||||
.B \-\-btn, \-\-button <color>
|
|
||||||
sets the default button color
|
|
||||||
.TP
|
|
||||||
.B \-\-name <name>
|
|
||||||
sets the application name
|
|
||||||
.TP
|
|
||||||
.B \-\-title <title>
|
|
||||||
sets the application title (caption)
|
|
||||||
.TP
|
|
||||||
.B \-\-visual TrueColor
|
|
||||||
forces the application to use a TrueColor visual on
|
|
||||||
an 8-bit display
|
|
||||||
.TP
|
|
||||||
.B \-\-inputstyle <inputstyle>
|
|
||||||
sets XIM (X Input Method) input style. Possible
|
|
||||||
values are onthespot, overthespot, offthespot and
|
|
||||||
root
|
|
||||||
.TP
|
|
||||||
.B \-\-im <XIM server>
|
|
||||||
set XIM server
|
|
||||||
.TP
|
|
||||||
.B \-\-noxim
|
|
||||||
disable XIM
|
|
||||||
.TP
|
|
||||||
.B \-\-reverse
|
|
||||||
mirrors the whole layout of widgets
|
|
||||||
.SS
|
|
||||||
|
|
||||||
.SH SEE ALSO
|
|
||||||
.BR networkmanager (1)
|
|
||||||
.SH AUTHORS
|
|
||||||
.nf
|
|
||||||
Timo Hoenig <thoenig@suse.de>
|
|
||||||
.br
|
|
||||||
Stefan Bogner <sbogner@suse.de>
|
|
||||||
.br
|
|
||||||
Will Stephenson <wstephenson@suse.de>
|
|
||||||
.br
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
debian/knetworkmanager.1
|
|
@ -1,6 +0,0 @@
|
|||||||
?package(network-manager-kde-trinity): \
|
|
||||||
needs="X11" \
|
|
||||||
section="Applications/Network/Monitoring" \
|
|
||||||
title="KNetworkManager" \
|
|
||||||
longtitle="A TDE frontend for NetworkManager" \
|
|
||||||
command="/opt/trinity/bin/knetworkmanager"
|
|
@ -1,2 +0,0 @@
|
|||||||
network-manager-kde: package-name-doesnt-match-sonames libtdeinit-knetworkmanager
|
|
||||||
network-manager-kde: shlib-without-versioned-soname opt/trinity/lib/libtdeinit_knetworkmanager.so libtdeinit_knetworkmanager.so
|
|
@ -1,16 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
configure)
|
|
||||||
# Ask D-Bus to reload the config file
|
|
||||||
if [ -x "/etc/init.d/dbus" ]; then
|
|
||||||
invoke-rc.d dbus force-reload || true
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
|
|
||||||
exit 0
|
|
@ -1,24 +0,0 @@
|
|||||||
#!/usr/bin/make -f
|
|
||||||
|
|
||||||
# Currently is not possible to build piklab with --enable-final
|
|
||||||
DEB_BUILD_OPTIONS += noopt
|
|
||||||
|
|
||||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
||||||
include debian/cdbs/debian-tde.mk
|
|
||||||
|
|
||||||
DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/tde
|
|
||||||
DEB_CONFIGURE_MANDIR := /opt/trinity/share/man
|
|
||||||
DEB_CONFIGURE_PREFIX := /opt/trinity
|
|
||||||
DEB_CONFIGURE_INFODIR := /opt/trinity/share/info
|
|
||||||
|
|
||||||
cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug)
|
|
||||||
|
|
||||||
DEB_INSTALL_DOCS_ALL := -XNEWS -XTODO
|
|
||||||
|
|
||||||
DEB_CONFIGURE_EXTRA_FLAGS := --with-openvpn --with-vpnc --with-pptp
|
|
||||||
|
|
||||||
binary-install/network-manager-kde-trinity::
|
|
||||||
# Install autostart file
|
|
||||||
install -D -m 644 knetworkmanager-0.8/src/knetworkmanager.desktop \
|
|
||||||
debian/network-manager-kde-trinity/opt/trinity/share/autostart/knetworkmanager-trinity.desktop
|
|
||||||
mv debian/network-manager-kde-trinity/usr/share/man debian/network-manager-kde-trinity/opt/trinity/share/
|
|
@ -1 +0,0 @@
|
|||||||
3.0 (quilt)
|
|
@ -1,6 +0,0 @@
|
|||||||
# Use xz instead of gzip
|
|
||||||
compression = "xz"
|
|
||||||
compression-level = 9
|
|
||||||
|
|
||||||
# Don't run differences
|
|
||||||
diff-ignore = .*
|
|
@ -1,2 +0,0 @@
|
|||||||
version=3
|
|
||||||
ftp://ftp.kde.org/pub/kde/stable/apps/Trinity.x/network/knetworkmanager-(.*)\.tar\.gz
|
|
@ -1,3 +0,0 @@
|
|||||||
This package uses the quilt patch management system.
|
|
||||||
|
|
||||||
Please refer to /usr/share/doc/quilt/README.source for further information.
|
|
@ -1,246 +0,0 @@
|
|||||||
# -*- mode: makefile; coding: utf-8 -*-
|
|
||||||
# Copyright © 2003 Christopher L Cheney <ccheney@debian.org>
|
|
||||||
# Copyright © 2019 TDE Team
|
|
||||||
# Description: A class for TDE packages; sets TDE environment variables, etc
|
|
||||||
#
|
|
||||||
# This program is free software; you can redistribute it and/or
|
|
||||||
# modify it under the terms of the GNU General Public License as
|
|
||||||
# published by the Free Software Foundation; either version 2, or (at
|
|
||||||
# your option) any later version.
|
|
||||||
#
|
|
||||||
# This program 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
|
|
||||||
# General Public License for more details.
|
|
||||||
#
|
|
||||||
# You should have received a copy of the GNU General Public License
|
|
||||||
# along with this program; if not, write to the Free Software
|
|
||||||
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
|
|
||||||
# 02111-1307 USA.
|
|
||||||
|
|
||||||
ifndef _cdbs_bootstrap
|
|
||||||
_cdbs_scripts_path ?= /usr/lib/cdbs
|
|
||||||
_cdbs_rules_path ?= /usr/share/cdbs/1/rules
|
|
||||||
_cdbs_class_path ?= /usr/share/cdbs/1/class
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifndef _cdbs_class_debian-qt-kde
|
|
||||||
_cdbs_class_debian-qt-kde := 1
|
|
||||||
|
|
||||||
# for dh_icons
|
|
||||||
CDBS_BUILD_DEPENDS := $(CDBS_BUILD_DEPENDS), debhelper (>= 5.0.7ubuntu4)
|
|
||||||
|
|
||||||
# Note: This _must_ be included before autotools.mk, or it won't work.
|
|
||||||
common-configure-arch common-configure-indep:: debian/stamp-cvs-make
|
|
||||||
debian/stamp-cvs-make:
|
|
||||||
ifndef _cdbs_class_cmake
|
|
||||||
cp -Rp /usr/share/aclocal/libtool.m4 admin/libtool.m4.in
|
|
||||||
ifneq "$(wildcard /usr/share/libtool/config/ltmain.sh)" ""
|
|
||||||
cp -Rp /usr/share/libtool/config/ltmain.sh admin/ltmain.sh
|
|
||||||
endif
|
|
||||||
ifneq "$(wildcard /usr/share/libtool/build-aux/ltmain.sh)" ""
|
|
||||||
cp -Rp /usr/share/libtool/build-aux/ltmain.sh admin/ltmain.sh
|
|
||||||
endif
|
|
||||||
$(MAKE) -C $(DEB_SRCDIR) -f admin/Makefile.common dist;
|
|
||||||
endif
|
|
||||||
touch debian/stamp-cvs-make
|
|
||||||
|
|
||||||
include $(_cdbs_rules_path)/buildcore.mk$(_cdbs_makefile_suffix)
|
|
||||||
|
|
||||||
ifdef _cdbs_tarball_dir
|
|
||||||
DEB_BUILDDIR = $(_cdbs_tarball_dir)/obj-$(DEB_BUILD_GNU_TYPE)
|
|
||||||
else
|
|
||||||
DEB_BUILDDIR = obj-$(DEB_BUILD_GNU_TYPE)
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifndef _cdbs_class_cmake
|
|
||||||
include $(_cdbs_class_path)/autotools.mk$(_cdbs_makefile_suffix)
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifdef _cdbs_class_cmake
|
|
||||||
ifneq "$(wildcard /usr/bin/ninja)" ""
|
|
||||||
MAKE = ninja -v
|
|
||||||
DEB_MAKE_ENVVARS += DESTDIR=$(DEB_DESTDIR)
|
|
||||||
DEB_MAKE_INSTALL_TARGET = install
|
|
||||||
DEB_CMAKE_NORMAL_ARGS += -GNinja
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifndef _cdbs_rules_patchsys_quilt
|
|
||||||
DEB_PATCHDIRS := debian/patches/common debian/patches
|
|
||||||
endif
|
|
||||||
|
|
||||||
export kde_cgidir = \$${libdir}/cgi-bin
|
|
||||||
export kde_confdir = \$${sysconfdir}/trinity
|
|
||||||
export kde_htmldir = \$${datadir}/doc/tde/HTML
|
|
||||||
|
|
||||||
DEB_KDE_ENABLE_FINAL := yes
|
|
||||||
DEB_INSTALL_DOCS_ALL :=
|
|
||||||
|
|
||||||
DEB_DH_MAKESHLIBS_ARGS_ALL := -V
|
|
||||||
DEB_SHLIBDEPS_INCLUDE = $(foreach p,$(PACKAGES_WITH_LIBS),debian/$(p)/usr/lib)
|
|
||||||
|
|
||||||
DEB_AC_AUX_DIR = $(DEB_SRCDIR)/admin
|
|
||||||
DEB_CONFIGURE_INCLUDEDIR = "\$${prefix}/include"
|
|
||||||
DEB_COMPRESS_EXCLUDE = .dcl .docbook -license .tag .sty .el
|
|
||||||
|
|
||||||
# The default gzip compressor has been changed in dpkg >= 1.17.0.
|
|
||||||
deb_default_compress = $(shell LANG=C dpkg-deb --version | head -n1 | \
|
|
||||||
sed -e "s|.*version ||" -e "s| .*||" | \
|
|
||||||
xargs -r dpkg --compare-versions 1.17.0 lt \
|
|
||||||
&& echo xz || echo gzip)
|
|
||||||
ifeq ($(deb_default_compress),gzip)
|
|
||||||
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
|
||||||
&& echo xz || echo bzip2)
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifeq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
|
|
||||||
cdbs_treat_me_gently_arches := arm m68k alpha ppc64 armel armeb
|
|
||||||
ifeq (,$(filter $(DEB_HOST_ARCH_CPU),$(cdbs_treat_me_gently_arches)))
|
|
||||||
cdbs_kde_enable_final = $(if $(DEB_KDE_ENABLE_FINAL),--enable-final,)
|
|
||||||
else
|
|
||||||
cdbs_kde_enable_final =
|
|
||||||
endif
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifneq (,$(filter nostrip,$(DEB_BUILD_OPTIONS)))
|
|
||||||
cdbs_kde_enable_final =
|
|
||||||
cdbs_kde_enable_debug = --enable-debug=yes
|
|
||||||
else
|
|
||||||
cdbs_kde_enable_debug = --disable-debug
|
|
||||||
endif
|
|
||||||
|
|
||||||
ifneq (,$(filter debug,$(DEB_BUILD_OPTIONS)))
|
|
||||||
cdbs_kde_enable_debug = --enable-debug=full
|
|
||||||
endif
|
|
||||||
|
|
||||||
DEB_BUILD_PARALLEL ?= true
|
|
||||||
|
|
||||||
cdbs_configure_flags += \
|
|
||||||
--with-qt-dir=/usr/share/qt3 \
|
|
||||||
--disable-rpath \
|
|
||||||
--with-xinerama \
|
|
||||||
$(cdbs_kde_enable_final) \
|
|
||||||
$(cdbs_kde_enable_debug)
|
|
||||||
|
|
||||||
|
|
||||||
# This is a convenience target for calling manually.
|
|
||||||
# It's not part of the build process.
|
|
||||||
buildprep: clean apply-patches
|
|
||||||
ifndef _cdbs_class_cmake
|
|
||||||
$(MAKE) -f admin/Makefile.common dist
|
|
||||||
endif
|
|
||||||
debian/rules clean
|
|
||||||
|
|
||||||
.tdepkginfo:
|
|
||||||
echo "# TDE package information" >.tdepkginfo
|
|
||||||
dpkg-parsechangelog | sed -n "s|^Source: |Name: |p" >>.tdepkginfo
|
|
||||||
dpkg-parsechangelog | sed -n "s|^Version: |Version: |p" >>.tdepkginfo
|
|
||||||
date +"DateTime: %m/%d/%Y %H:%M" -u -d "$$(dpkg-parsechangelog | sed -n 's|^Date: ||p')" >>.tdepkginfo
|
|
||||||
|
|
||||||
post-patches:: .tdepkginfo
|
|
||||||
|
|
||||||
common-build-arch:: debian/stamp-man-pages
|
|
||||||
debian/stamp-man-pages:
|
|
||||||
if ! test -d debian/man/out; then mkdir -p debian/man/out; fi
|
|
||||||
for f in $$(find debian/man -name '*.sgml'); do \
|
|
||||||
docbook-to-man $$f > debian/man/out/`basename $$f .sgml`.1; \
|
|
||||||
done
|
|
||||||
for f in $$(find debian/man -name '*.man'); do \
|
|
||||||
soelim -I debian/man $$f \
|
|
||||||
> debian/man/out/`basename $$f .man`.`head -n1 $$f | awk '{print $$NF}'`; \
|
|
||||||
done
|
|
||||||
touch debian/stamp-man-pages
|
|
||||||
|
|
||||||
common-binary-indep::
|
|
||||||
( set -e; \
|
|
||||||
tmpf=`mktemp debian/versions.XXXXXX`; \
|
|
||||||
perl debian/cdbs/versions.pl >$$tmpf; \
|
|
||||||
for p in $(DEB_INDEP_PACKAGES); do \
|
|
||||||
cat $$tmpf >>debian/$$p.substvars; \
|
|
||||||
done; \
|
|
||||||
rm -f $$tmpf )
|
|
||||||
|
|
||||||
common-binary-arch::
|
|
||||||
( set -e; \
|
|
||||||
tmpf=`mktemp debian/versions.XXXXXX`; \
|
|
||||||
perl debian/cdbs/versions.pl >$$tmpf; \
|
|
||||||
for p in $(DEB_ARCH_PACKAGES); do \
|
|
||||||
cat $$tmpf >>debian/$$p.substvars; \
|
|
||||||
done; \
|
|
||||||
rm -f $$tmpf )
|
|
||||||
# update multi-arch path in install files
|
|
||||||
ls -d debian/* | \
|
|
||||||
grep -E "(install|links)$$" | \
|
|
||||||
while read a; do \
|
|
||||||
[ -d $$a ] || [ -f $$a.arch ] || \
|
|
||||||
! grep -q "\$$(DEB_HOST_MULTIARCH)" $$a || \
|
|
||||||
sed -i.arch "s|\$$(DEB_HOST_MULTIARCH)|$(DEB_HOST_MULTIARCH)|g" $$a; \
|
|
||||||
done
|
|
||||||
|
|
||||||
clean::
|
|
||||||
rm -rf debian/man/out
|
|
||||||
-rmdir debian/man
|
|
||||||
rm -f debian/stamp-man-pages
|
|
||||||
rm -rf debian/shlibs-check
|
|
||||||
# revert multi-arch path in install files
|
|
||||||
ls -d debian/* | \
|
|
||||||
grep -E "(install|links)$$" | \
|
|
||||||
while read a; do \
|
|
||||||
[ ! -f $$a.arch ] || \
|
|
||||||
mv $$a.arch $$a; \
|
|
||||||
done
|
|
||||||
|
|
||||||
$(patsubst %,binary-install/%,$(DEB_PACKAGES)) :: binary-install/%:
|
|
||||||
if test -x /usr/bin/dh_icons; then dh_icons -p$(cdbs_curpkg) $(DEB_DH_ICONCACHE_ARGS); fi
|
|
||||||
if test -x /usr/bin/dh_desktop; then dh_desktop -p$(cdbs_curpkg) $(DEB_DH_DESKTOP_ARGS); fi
|
|
||||||
if test -e debian/$(cdbs_curpkg).lintian; then \
|
|
||||||
install -p -D -m644 debian/$(cdbs_curpkg).lintian \
|
|
||||||
debian/$(cdbs_curpkg)/usr/share/lintian/overrides/$(cdbs_curpkg); \
|
|
||||||
fi
|
|
||||||
if test -e debian/$(cdbs_curpkg).presubj; then \
|
|
||||||
install -p -D -m644 debian/$(cdbs_curpkg).presubj \
|
|
||||||
debian/$(cdbs_curpkg)/usr/share/bug/$(cdbs_curpkg)/presubj; \
|
|
||||||
fi
|
|
||||||
|
|
||||||
binary-install/$(DEB_SOURCE_PACKAGE)-doc-html::
|
|
||||||
set -e; \
|
|
||||||
for doc in `cd $(DEB_DESTDIR)/opt/trinity/share/doc/tde/HTML/en; find . -name index.docbook`; do \
|
|
||||||
pkg=$${doc%/index.docbook}; pkg=$${pkg#./}; \
|
|
||||||
echo Building $$pkg HTML docs...; \
|
|
||||||
mkdir -p $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \
|
|
||||||
cd $(CURDIR)/debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \
|
|
||||||
/opt/trinity/bin/meinproc $(DEB_DESTDIR)/opt/trinity/share/doc/tde/HTML/en/$$pkg/index.docbook; \
|
|
||||||
done
|
|
||||||
for pkg in $(DOC_HTML_PRUNE) ; do \
|
|
||||||
rm -rf debian/$(DEB_SOURCE_PACKAGE)-doc-html/opt/trinity/share/doc/tde/HTML/en/$$pkg; \
|
|
||||||
done
|
|
||||||
|
|
||||||
common-build-indep:: debian/stamp-kde-apidox
|
|
||||||
debian/stamp-kde-apidox:
|
|
||||||
$(if $(DEB_KDE_APIDOX),+$(DEB_MAKE_INVOKE) apidox)
|
|
||||||
touch $@
|
|
||||||
|
|
||||||
common-install-indep:: common-install-kde-apidox
|
|
||||||
common-install-kde-apidox::
|
|
||||||
$(if $(DEB_KDE_APIDOX),+DESTDIR=$(DEB_DESTDIR) $(DEB_MAKE_INVOKE) install-apidox)
|
|
||||||
|
|
||||||
cleanbuilddir::
|
|
||||||
-$(if $(call cdbs_streq,$(DEB_BUILDDIR),$(DEB_SRCDIR)),,rm -rf $(DEB_BUILDDIR))
|
|
||||||
|
|
||||||
clean::
|
|
||||||
ifndef _cdbs_class_cmake
|
|
||||||
if test -n "$(DEB_KDE_CVS_MAKE)" && test -d $(DEB_SRCDIR); then \
|
|
||||||
cd $(DEB_SRCDIR); \
|
|
||||||
find . -name Makefile.in -print | \
|
|
||||||
xargs --no-run-if-empty rm -f; \
|
|
||||||
rm -f Makefile.am acinclude.m4 aclocal.m4 config.h.in \
|
|
||||||
configure configure.files configure.in stamp-h.in \
|
|
||||||
subdirs; \
|
|
||||||
fi
|
|
||||||
endif
|
|
||||||
rm -f .tdepkginfo
|
|
||||||
rm -f debian/stamp-kde-apidox
|
|
||||||
rm -f debian/stamp-cvs-make
|
|
||||||
|
|
||||||
endif
|
|
@ -1,19 +0,0 @@
|
|||||||
#!/usr/bin/env perl
|
|
||||||
|
|
||||||
use strict;
|
|
||||||
use warnings;
|
|
||||||
|
|
||||||
my $version = `dpkg-parsechangelog | awk '/^Version/ {print \$2}'`;
|
|
||||||
my ($version3, $version3_next);
|
|
||||||
my ($version2, $version2_next);
|
|
||||||
|
|
||||||
($version3 = $version) =~ s/^(([^.]+\.){2}[^.+~-]+)[.+~-]?[^-]*-[^-]+$/$1/;
|
|
||||||
($version2 = $version3) =~ s/\.[^.]+$//;
|
|
||||||
|
|
||||||
($version3_next = $version3) =~ s/(?<=\.)(\d+)[a-z]?$/($1+1)/e;
|
|
||||||
($version2_next = $version2) =~ s/(?<=\.)(\d+)$/($1+1)/e;
|
|
||||||
|
|
||||||
print "TDE-Version3=$version3\n";
|
|
||||||
print "TDE-Version2=$version2\n";
|
|
||||||
print "TDE-Next-Version3=$version3_next\n";
|
|
||||||
print "TDE-Next-Version2=$version2_next\n";
|
|
@ -1,373 +0,0 @@
|
|||||||
knetworkmanager8-trinity (1:0.8-0ubuntu12) karmic; urgency=low
|
|
||||||
|
|
||||||
* UI tweaks for discoverability
|
|
||||||
|
|
||||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Mon, 26 Oct 2009 17:44:00 -0600
|
|
||||||
|
|
||||||
knetworkmanager-trinity (1:0.8-0ubuntu10) karmic; urgency=low
|
|
||||||
|
|
||||||
* Fixed VPN reauthentication request dialog failure when used with the permanent storage option
|
|
||||||
|
|
||||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Tue, 06 Oct 2009 19:31:00 -0600
|
|
||||||
|
|
||||||
knetworkmanager-trinity (1:0.8-0ubuntu7) karmic; urgency=low
|
|
||||||
|
|
||||||
* Fixed various minor glitches
|
|
||||||
|
|
||||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Sat, 03 Oct 2009 12:29:00 -0600
|
|
||||||
|
|
||||||
knetworkmanager-trinity (1:0.8-0ubuntu6) karmic; urgency=low
|
|
||||||
|
|
||||||
* Repaired poor usability for new wireless connections
|
|
||||||
* Repaired poor usability for connection management
|
|
||||||
* VPN connections now remember login information when asked
|
|
||||||
|
|
||||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Tue, 29 Sep 2009 09:39:00 -0600
|
|
||||||
|
|
||||||
knetworkmanager-trinity (1:0.8-0ubuntu5) karmic; urgency=low
|
|
||||||
|
|
||||||
* Repaired VPN plugins
|
|
||||||
* VPNC now allows hashed group password
|
|
||||||
* PPTP repaired and enabled
|
|
||||||
|
|
||||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Mon, 28 Sep 2009 14:51:00 -0600
|
|
||||||
|
|
||||||
knetworkmanager-trinity (1:0.8-0ubuntu4) karmic; urgency=low
|
|
||||||
|
|
||||||
* Patched backend for new NM0.8 API
|
|
||||||
* Repaired poor usability in the "new connection" tasktray menu
|
|
||||||
* Repaired poor usability in the available devices tasktray menu
|
|
||||||
* Moved to /opt/trinity
|
|
||||||
|
|
||||||
-- Timothy Pearson <kb9vqf@pearsoncomputing.net> Sat, 22 Aug 2009 23:34:00 -0600
|
|
||||||
|
|
||||||
knetworkmanager (1:0.7~~svn941706-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Updated SVN snapshot (r941706).
|
|
||||||
* debian/patches/04-dbus_access.patch
|
|
||||||
- Most of the relevant changes have been merged upstream. The patch now
|
|
||||||
only contains the Debian specific group "netdev" section.
|
|
||||||
* debian/control
|
|
||||||
- Bump Standards-Version to 3.8.1. No further changes.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Fri, 20 Mar 2009 22:59:51 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.7~~svn931033-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* debian/patches/05-no_blank_psk.patch
|
|
||||||
- Do not set zero-length PSK and LEAP passwords otherwise libnm-util fails
|
|
||||||
to validate them. Closes: #517213
|
|
||||||
Patch by Dan Williams, thanks!
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Tue, 03 Mar 2009 00:34:15 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.7~~svn931033-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Merge experimental branch into unstable. Remaining changes:
|
|
||||||
- Remove 07-indicate_manual_config.patch, obsolete.
|
|
||||||
* debian/control
|
|
||||||
- Wrap Build-Depends.
|
|
||||||
- Bump Build-Depends on debhelper to (>= 7).
|
|
||||||
* debian/compat
|
|
||||||
- Bump debhelper compat level to 7.
|
|
||||||
* debian/rules
|
|
||||||
- Include debhelper.mk before any other files as recommended by the cdbs
|
|
||||||
documentation.
|
|
||||||
* Update SVN snapshot to r931033.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Wed, 25 Feb 2009 10:54:39 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.7~~svn908338-2) experimental; urgency=low
|
|
||||||
|
|
||||||
* debian/patches/04-dbus_access.patch
|
|
||||||
- Update D-Bus names and interfaces for NM 0.7. Closes: #511526
|
|
||||||
- Remove bare send_interface directives to avoid non-deterministic allow
|
|
||||||
messages with no interface. Closes: #510757
|
|
||||||
- Do not allow unpriviledged processes to ask for a users' connections.
|
|
||||||
- Allow introspection by default.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Thu, 05 Feb 2009 01:52:22 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.7~~svn908338-1) experimental; urgency=low
|
|
||||||
|
|
||||||
* Updated SVN snapshot (r908338).
|
|
||||||
* debian/rules
|
|
||||||
- Stop moving icons around, fixed upstream.
|
|
||||||
* debian/patches/01-configure_package_name.patch
|
|
||||||
- Make sure we set the correct PACKAGE name when generating the build
|
|
||||||
system so the translations are installed properly.
|
|
||||||
* debian/network-manager-kde.lintian-overrides
|
|
||||||
- Updated for the latest lintian changes.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Sun, 11 Jan 2009 06:52:06 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.7~~svn897092-1) experimental; urgency=low
|
|
||||||
|
|
||||||
* SVN snapshot of the upcoming 0.7 release (for NM 0.7).
|
|
||||||
* debian/control
|
|
||||||
- Add Build-Depends on pkg-config.
|
|
||||||
- Bump Build-Depends on nm-* packages to (>= 0.7.0).
|
|
||||||
- Add Build-Depends on libdbus-1-qt3-dev (>= 0.8.1).
|
|
||||||
- Bump Build-Depends on debhelper to (>= 6.0.7) for dh_lintian.
|
|
||||||
- Bump Depends on network-manager to (>= 0.7.0).
|
|
||||||
- Bump Standards-Version to 3.8.0. Add README.source as recommended by the
|
|
||||||
new policy.
|
|
||||||
* debian/rules
|
|
||||||
- Install autostart desktop file into /usr/share/autostart/.
|
|
||||||
- Install icons into /usr/share/icons/hicolor/ so KDE4 can find them.
|
|
||||||
Closes: #487303
|
|
||||||
- Add support for both libtool 1.x and 2.x.
|
|
||||||
* Switch patch management system to quilt.
|
|
||||||
* debian/patches/04-dbus_access.patch
|
|
||||||
- Refresh and update.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Tue, 16 Dec 2008 04:18:10 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2.2-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* debian/patches/07-indicate_manual_config.patch
|
|
||||||
- manual-means-online: If there are interfaces that are not managed by
|
|
||||||
NetworkManager because they have custom configuration in
|
|
||||||
/etc/network/interfaces, we assume to be online and show a wired network
|
|
||||||
icon indicating manual network configuration.
|
|
||||||
* debian/control
|
|
||||||
- Add Build-Depends on pkg-config.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Wed, 14 Jan 2009 08:22:11 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2.2-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* New upstream release.
|
|
||||||
- Improved tray icon animation using mng files. Closes: #394815
|
|
||||||
- Improved LEAP security. Closes: #470709
|
|
||||||
* Removed patches
|
|
||||||
- debian/patches/01-fix_french_translation.patch (merged upstream)
|
|
||||||
- debian/patches/02-linux_types.patch (obsolete)
|
|
||||||
- debian/patches/03-awk_path.patch (fixed upstream)
|
|
||||||
- debian/patches/05-desktop_file_fixes.patch (merged upstream)
|
|
||||||
* debian/knetworkmanager.linda
|
|
||||||
- Remove the linda override file, linda is dead.
|
|
||||||
* debian/{knetworkmanager.lintian -> network-manager-kde.lintian-overrides}
|
|
||||||
- Rename the lintian override file so it is automatically installed by
|
|
||||||
dh_lintian.
|
|
||||||
* debian/rules
|
|
||||||
- Drop the no longer required install rules for the override files.
|
|
||||||
- Drop the install rule for the autostart file. It's provided by upstream
|
|
||||||
now.
|
|
||||||
* debian/copyright
|
|
||||||
- Update the authors list.
|
|
||||||
* debian/control
|
|
||||||
- Bump Build-Depends on libnl-dev (>= 1.1).
|
|
||||||
- Drop Build-Depends on kapptemplate. The upstream tarball ships a proper
|
|
||||||
admin/ directory again.
|
|
||||||
* debian/watch
|
|
||||||
- New download location at ftp.kde.org.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Fri, 04 Apr 2008 19:41:02 +0200
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2-3) unstable; urgency=low
|
|
||||||
|
|
||||||
* debian/control
|
|
||||||
- Use the new "Homepage:" field to specify the upstream URL.
|
|
||||||
- The Vcs-* fields are now officially supported, so remove the XS- prefix.
|
|
||||||
- Bump Standards-Version to 3.7.3. No further changes required.
|
|
||||||
- Fix a few capitalization errors in the package description.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Fri, 11 Jan 2008 02:08:24 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* Rebuild against network-manager 0.6.5 to enable phase2 and leap
|
|
||||||
authentication support.
|
|
||||||
* debian/rules
|
|
||||||
- Remove debian/stamp-bootstrap on clean. This fixes a FTBFS if package is
|
|
||||||
built twice in a row. Closes: #442621
|
|
||||||
* debian/control
|
|
||||||
- Add Build-Conflicts: autoconf2.13. Closes: #441046
|
|
||||||
* debian/menu
|
|
||||||
- Set section to Applications/Network/Monitoring which seems to be the
|
|
||||||
most appropriate amongst the available sections.
|
|
||||||
* debian/patches/05-desktop_file_fixes.patch
|
|
||||||
- Fix the *.desktop files to be compliant to the fd.o menu and desktop
|
|
||||||
entry spec.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Sun, 16 Sep 2007 21:01:25 +0200
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* New upstream release.
|
|
||||||
* debian/patches/05-leap_support.patch
|
|
||||||
- Removed, merged upstream.
|
|
||||||
* debian/patches/06-version_check.patch
|
|
||||||
- Removed, merged upstream.
|
|
||||||
* The upstream tarball does not ship an admin/ directory. Build-Depend on
|
|
||||||
kapptemplate, so we can copy it from there.
|
|
||||||
* debian/menu
|
|
||||||
- Update to new menu hierarchy and add a longtitle.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Wed, 25 Jul 2007 17:10:36 +0200
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2~svn678822-3) unstable; urgency=low
|
|
||||||
|
|
||||||
* debian/patches/06-version_check.patch
|
|
||||||
- Added. Fixes the problem with knetworkmanager no longer connecting
|
|
||||||
automatically upon login. Closes: #431255
|
|
||||||
If you are upgrading from a previous 0.2 svn snapshot, you may have to
|
|
||||||
clear the list of trusted networks in the configuration dialog.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Sun, 01 Jul 2007 11:47:00 +0200
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2~svn678822-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* debian/patches/02-linux_types.patch
|
|
||||||
- Pass "-std=gnu++98" to CXXFLAGS. Otherwise the type __u64 is not defined
|
|
||||||
in linux-libc-dev for ANSI C/C89. Closes: #430795
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Thu, 28 Jun 2007 06:08:04 +0200
|
|
||||||
|
|
||||||
knetworkmanager (1:0.2~svn678822-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* SVN snapshot of the upcoming 0.2 release which has native VPN plugin
|
|
||||||
support. Closes: #415742
|
|
||||||
* debian/control
|
|
||||||
- Add XS-Vcs-* fields.
|
|
||||||
- Add Recommends: network-manager-vpnc, network-manager-openvpn.
|
|
||||||
* debian/rules
|
|
||||||
- Compile with openvpn and vpnc support.
|
|
||||||
|
|
||||||
* Removed patches that were merged upstream:
|
|
||||||
- debian/patches/05-no_deserialize.patch
|
|
||||||
- debian/patches/06-pretty_notification.patch
|
|
||||||
- debian/patches/07-overlay_icon_vpn.patch
|
|
||||||
- debian/patches/08-disable_sm.patch
|
|
||||||
- debian/patches/09-dbus_bool_t.patch
|
|
||||||
|
|
||||||
* debian/patches/02-linux_types.patch
|
|
||||||
- Added. Needed to workaround a problem in libnl.
|
|
||||||
* debian/patches/03-awk_path.patch
|
|
||||||
- Added. In Debian awk is installed in /usr/bin.
|
|
||||||
* debian/patches/04-dbus_access.patch
|
|
||||||
- Do not remove the dbus at_console access check but make it an
|
|
||||||
alternative to the Debian netdev group policy. Closes: #426467
|
|
||||||
* debian/patches/05-leap_support.patch
|
|
||||||
- Added. Do not fail to compile if LEAP support is not available.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Fri, 22 Jun 2007 21:08:32 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.1-4) unstable; urgency=low
|
|
||||||
|
|
||||||
* Actually install the autostart file for knetworkmanager.
|
|
||||||
Thanks to Yannick Roehlly for spotting this glitch.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Fri, 12 Jan 2007 11:26:28 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.1-3) unstable; urgency=low
|
|
||||||
|
|
||||||
* Pull some features and bug fixes from svn:
|
|
||||||
- debian/patches/05-no_deserialize.patch
|
|
||||||
+ Don't call deserialize on encryption object to avoid warning of
|
|
||||||
libnm-util. Closes: #391486
|
|
||||||
- debian/patches/06-pretty_notification.patch
|
|
||||||
+ Prettify notification messages.
|
|
||||||
- debian/patches/07-overlay_icon_vpn.patch
|
|
||||||
+ Show overlay icon (lock) for active VPN connections.
|
|
||||||
- debian/patches/08-disable_sm.patch
|
|
||||||
+ Disable session management to avoid a deadlock when accessing tdewallet.
|
|
||||||
Install an autostart file into /usr/share/autostart/ instead.
|
|
||||||
Closes: #406162
|
|
||||||
- debian/patches/09-dbus_bool_t.patch
|
|
||||||
+ Use dbus_bool_t instead of bool. Closes: #398974
|
|
||||||
* debian/patches/01-fix_french_translation.patch
|
|
||||||
- Added patch from Emmanuel Bouthenot which fixes some errors in the
|
|
||||||
French translation. Closes: #402285
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Tue, 9 Jan 2007 16:31:52 +0100
|
|
||||||
|
|
||||||
knetworkmanager (1:0.1-2) unstable; urgency=low
|
|
||||||
|
|
||||||
* Update maintainer email address to biebl@debian.org.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@debian.org> Fri, 20 Oct 2006 00:02:03 +0200
|
|
||||||
|
|
||||||
knetworkmanager (1:0.1-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Finally the 0.1 release. Woohoo!
|
|
||||||
- Use an epoch to fix the versioning scheme I managed to mess up.
|
|
||||||
- Fixes a crash when removing network objects for a nonexistent network
|
|
||||||
interface. Closes: #390052
|
|
||||||
* debian/patches/01-no_network_status.patch
|
|
||||||
- Removed, fixed upstream.
|
|
||||||
* debian/patches/03-configure.patch
|
|
||||||
- Removed, fixed upstream.
|
|
||||||
* Dropped the build-dep on kapptemplate. The upstream tarball now ships a
|
|
||||||
proper admin/ directory.
|
|
||||||
* debian/patches/02-dialup.patch
|
|
||||||
- Removed. Also dropped the Recommends: pppconfig. pppconfig can't
|
|
||||||
generate entries for /etc/network/interfaces yet.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Fri, 29 Sep 2006 19:18:08 +0200
|
|
||||||
|
|
||||||
knetworkmanager (0.09+0.1r586773-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Updated to svn revision 586773.
|
|
||||||
* Do not refer to non existent khelpcenter help:/knetworkmanager/ in man
|
|
||||||
page. Closes: #385642
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Wed, 20 Sep 2006 19:46:52 +0200
|
|
||||||
|
|
||||||
knetworkmanager (0.09+0.1r577960-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Updated to svn revision 577960.
|
|
||||||
- Access TDEWallet on demand, not on startup. Closes: #379606
|
|
||||||
* Added a Recommends: pppconfig. Closes: #380316
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Mon, 28 Aug 2006 01:14:29 +0200
|
|
||||||
|
|
||||||
knetworkmanager (0.09+0.1r560817-1) unstable; urgency=medium
|
|
||||||
|
|
||||||
* Updated to svn revision 560817.
|
|
||||||
* Removed 04-gnome_keyring_daemon.patch, fixed upstream.
|
|
||||||
* Added 04-dbus_access.patch. Fixes D-Bus access rights.
|
|
||||||
Closes: #379309, #379364
|
|
||||||
* Enabled dial up support. Set pppconfig as configuration utility.
|
|
||||||
Closes: #376071
|
|
||||||
* Reload D-Bus after installation. Closes: #379307
|
|
||||||
* Updated admin/cvs.sh to support autoconf-2.6. Closes: #379820
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Tue, 25 Jul 2006 23:33:31 +0200
|
|
||||||
|
|
||||||
knetworkmanager (0.09+0.1r550737-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Updated to svn revision 550737.
|
|
||||||
* Added 01-no_network_status.patch which removes a build dependency on
|
|
||||||
networkstatus.
|
|
||||||
* Removed 03-configure_notifications.patch, merged upstream.
|
|
||||||
* This version does not ship an admin/ directory. Added a build dependency
|
|
||||||
on kapptemplate and modified debian/rules to copy it from kapptemplate.
|
|
||||||
* Bumped Standards-Version to 3.7.2, no further changes required.
|
|
||||||
* Updated homepage URL.
|
|
||||||
* Added 04-gnome_keyring_daemon.patch which sets the correct path to the
|
|
||||||
gnome-keyring-daemon binary. VPN plugins use gnome-keyring-daemon to store
|
|
||||||
their passwords.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Wed, 14 Jun 2006 17:16:07 +0200
|
|
||||||
|
|
||||||
knetworkmanager (0.09+0.1r527269-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* New upstream release.
|
|
||||||
* Removed 01-xdg_app.patch, merged upstream.
|
|
||||||
* Added 03-configure_notifications.patch, this patch modifies the context
|
|
||||||
menu of the systray applet to provide quick access to the notification
|
|
||||||
settings.
|
|
||||||
* Added a "Provides: knetworkmanager" to make the package installable by its
|
|
||||||
upstream name.
|
|
||||||
* Initial upload. Closes: #351069
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Thu, 27 Apr 2006 08:01:39 +0200
|
|
||||||
|
|
||||||
knetworkmanager (0.09+0.1r5964-1) unstable; urgency=low
|
|
||||||
|
|
||||||
* Initial release.
|
|
||||||
|
|
||||||
-- Michael Biebl <biebl@teco.edu> Tue, 7 Feb 2006 21:43:56 +0100
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
9
|
|
@ -1,37 +0,0 @@
|
|||||||
Source: knetworkmanager8-trinity
|
|
||||||
Section: tde
|
|
||||||
Priority: optional
|
|
||||||
Maintainer: TDE Debian Team <team-debian@trinitydesktop.org>
|
|
||||||
Build-Depends: cdbs,
|
|
||||||
debhelper (>= 9~),
|
|
||||||
pkg-config,
|
|
||||||
tdelibs14-trinity-dev,
|
|
||||||
libnm-util-dev (>= 0.7.0),
|
|
||||||
libnm-glib-dev (>= 0.7.0),
|
|
||||||
network-manager-dev (>= 0.7.0),
|
|
||||||
network-manager-dev (<< 0.8.9),
|
|
||||||
libhal-dev,
|
|
||||||
libdbus-1-tqt-dev,
|
|
||||||
libiw-dev,
|
|
||||||
libnl-dev (>= 1.1),
|
|
||||||
quilt,
|
|
||||||
network-manager-vpnc,
|
|
||||||
network-manager-openvpn,
|
|
||||||
network-manager-strongswan,
|
|
||||||
network-manager-pptp,
|
|
||||||
automake, autoconf, libtool, libltdl-dev
|
|
||||||
Standards-Version: 3.8.4
|
|
||||||
Homepage: http://opensuse.org/Projects/KNetworkManager
|
|
||||||
|
|
||||||
Package: network-manager-kde-trinity
|
|
||||||
Architecture: any
|
|
||||||
Depends: ${shlibs:Depends}, ${misc:Depends}, network-manager (>= 0.7.0), network-manager (<< 0.8.9)
|
|
||||||
Replaces: network-manager-kde-kde3 (<< 4:14.0.0~), network-manager-kde-trinity (<< 4:14.0.0~)
|
|
||||||
Breaks: network-manager-kde-kde3 (<< 4:14.0.0~), network-manager-kde-trinity (<< 4:14.0.0~)
|
|
||||||
Recommends: tdewalletmanager-trinity, network-manager-vpnc, network-manager-openvpn, network-manager-strongswan, network-manager-pptp
|
|
||||||
Provides: knetworkmanager-trinity
|
|
||||||
Conflicts: network-manager-kde
|
|
||||||
Description: TDE systray applet for controlling NetworkManager [Trinity]
|
|
||||||
Systray applet for controlling network connections managed by
|
|
||||||
NetworkManager. It is mainly written for Trinity but also works for
|
|
||||||
other desktop environments like GNOME or Xfce.
|
|
@ -1,34 +0,0 @@
|
|||||||
This package was debianized by Michael Biebl <biebl@teco.edu> on
|
|
||||||
Fri, 3 Feb 2006 05:53:06 +0100.
|
|
||||||
|
|
||||||
It was downloaded from http://www.opensuse.org
|
|
||||||
|
|
||||||
Upstream Authors:
|
|
||||||
Timo Hoenig <thoenig@suse.de>
|
|
||||||
Will Stephenson <wstephenson@suse.de>
|
|
||||||
Stefan Bogner <sbogner@suse.de>
|
|
||||||
Helmut Schaa <hschaa@suse.de>
|
|
||||||
Valentine Sinitsyn <e_val@inbox.ru>
|
|
||||||
|
|
||||||
Copyright:
|
|
||||||
Copyright (C) 2005, 2006 Novell, Inc.
|
|
||||||
|
|
||||||
License:
|
|
||||||
|
|
||||||
This package is free software; you can redistribute it and/or modify
|
|
||||||
it under the terms of the GNU General Public License as published by
|
|
||||||
the Free Software Foundation; either version 2 of the License, or
|
|
||||||
(at your option) any later version.
|
|
||||||
|
|
||||||
This package 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 General Public License for more details.
|
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
|
||||||
along with this package; if not, write to the Free Software
|
|
||||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
||||||
|
|
||||||
On Debian systems, the complete text of the GNU General
|
|
||||||
Public License can be found in `/usr/share/common-licenses/GPL'.
|
|
||||||
|
|
@ -1,145 +0,0 @@
|
|||||||
.\" This file was generated by kdemangen.pl
|
|
||||||
.TH KNETWORKMANAGER 1 "Feb 2006" "Trinity Desktop Environment" "A NetworkManager front-end for TDE"
|
|
||||||
.SH NAME
|
|
||||||
knetworkmanager
|
|
||||||
\- A NetworkManager front-end for TDE
|
|
||||||
.SH SYNOPSIS
|
|
||||||
knetworkmanager [Qt\-options] [TDE\-options]
|
|
||||||
.SH DESCRIPTION
|
|
||||||
A NetworkManager front-end for TDE
|
|
||||||
.SH OPTIONS
|
|
||||||
.SS Generic options:
|
|
||||||
.TP
|
|
||||||
.B \-\-help
|
|
||||||
Show help about options
|
|
||||||
.TP
|
|
||||||
.B \-\-help\-qt
|
|
||||||
Show Qt specific options
|
|
||||||
.TP
|
|
||||||
.B \-\-help\-tde
|
|
||||||
Show TDE specific options
|
|
||||||
.TP
|
|
||||||
.B \-\-help\-all
|
|
||||||
Show all options
|
|
||||||
.TP
|
|
||||||
.B \-\-author
|
|
||||||
Show author information
|
|
||||||
.TP
|
|
||||||
.B \-v, \-\-version
|
|
||||||
Show version information
|
|
||||||
.TP
|
|
||||||
.B \-\-license
|
|
||||||
Show license information
|
|
||||||
.TP
|
|
||||||
.B \-\-
|
|
||||||
End of options
|
|
||||||
.SS
|
|
||||||
.SS TDE options:
|
|
||||||
.TP
|
|
||||||
.B \-\-caption <caption>
|
|
||||||
Use 'caption' as name in the titlebar
|
|
||||||
.TP
|
|
||||||
.B \-\-icon <icon>
|
|
||||||
Use 'icon' as the application icon
|
|
||||||
.TP
|
|
||||||
.B \-\-miniicon <icon>
|
|
||||||
Use 'icon' as the icon in the titlebar
|
|
||||||
.TP
|
|
||||||
.B \-\-config <filename>
|
|
||||||
Use alternative configuration file
|
|
||||||
.TP
|
|
||||||
.B \-\-dcopserver <server>
|
|
||||||
Use the DCOP Server specified by 'server'
|
|
||||||
.TP
|
|
||||||
.B \-\-nocrashhandler
|
|
||||||
Disable crash handler, to get core dumps
|
|
||||||
.TP
|
|
||||||
.B \-\-waitforwm
|
|
||||||
Waits for a WM_NET compatible windowmanager
|
|
||||||
.TP
|
|
||||||
.B \-\-style <style>
|
|
||||||
sets the application GUI style
|
|
||||||
.TP
|
|
||||||
.B \-\-geometry <geometry>
|
|
||||||
sets the client geometry of the main widget - see man X for the argument format
|
|
||||||
.TP
|
|
||||||
.B \-\-nofork
|
|
||||||
Don't run in the background.
|
|
||||||
.SS Qt options:
|
|
||||||
.TP
|
|
||||||
.B \-\-display <displayname>
|
|
||||||
Use the X-server display 'displayname'
|
|
||||||
.TP
|
|
||||||
.B \-\-session <sessionId>
|
|
||||||
Restore the application for the given 'sessionId'
|
|
||||||
.TP
|
|
||||||
.B \-\-cmap
|
|
||||||
Causes the application to install a private color
|
|
||||||
map on an 8-bit display
|
|
||||||
.TP
|
|
||||||
.B \-\-ncols <count>
|
|
||||||
Limits the number of colors allocated in the color
|
|
||||||
cube on an 8-bit display, if the application is
|
|
||||||
using the QApplication::ManyColor color
|
|
||||||
specification
|
|
||||||
.TP
|
|
||||||
.B \-\-nograb
|
|
||||||
tells Qt to never grab the mouse or the keyboard
|
|
||||||
.TP
|
|
||||||
.B \-\-dograb
|
|
||||||
running under a debugger can cause an implicit
|
|
||||||
-nograb, use -dograb to override
|
|
||||||
.TP
|
|
||||||
.B \-\-sync
|
|
||||||
switches to synchronous mode for debugging
|
|
||||||
.TP
|
|
||||||
.B \-\-fn, \-\-font <fontname>
|
|
||||||
defines the application font
|
|
||||||
.TP
|
|
||||||
.B \-\-bg, \-\-background <color>
|
|
||||||
sets the default background color and an
|
|
||||||
application palette (light and dark shades are
|
|
||||||
calculated)
|
|
||||||
.TP
|
|
||||||
.B \-\-fg, \-\-foreground <color>
|
|
||||||
sets the default foreground color
|
|
||||||
.TP
|
|
||||||
.B \-\-btn, \-\-button <color>
|
|
||||||
sets the default button color
|
|
||||||
.TP
|
|
||||||
.B \-\-name <name>
|
|
||||||
sets the application name
|
|
||||||
.TP
|
|
||||||
.B \-\-title <title>
|
|
||||||
sets the application title (caption)
|
|
||||||
.TP
|
|
||||||
.B \-\-visual TrueColor
|
|
||||||
forces the application to use a TrueColor visual on
|
|
||||||
an 8-bit display
|
|
||||||
.TP
|
|
||||||
.B \-\-inputstyle <inputstyle>
|
|
||||||
sets XIM (X Input Method) input style. Possible
|
|
||||||
values are onthespot, overthespot, offthespot and
|
|
||||||
root
|
|
||||||
.TP
|
|
||||||
.B \-\-im <XIM server>
|
|
||||||
set XIM server
|
|
||||||
.TP
|
|
||||||
.B \-\-noxim
|
|
||||||
disable XIM
|
|
||||||
.TP
|
|
||||||
.B \-\-reverse
|
|
||||||
mirrors the whole layout of widgets
|
|
||||||
.SS
|
|
||||||
|
|
||||||
.SH SEE ALSO
|
|
||||||
.BR networkmanager (1)
|
|
||||||
.SH AUTHORS
|
|
||||||
.nf
|
|
||||||
Timo Hoenig <thoenig@suse.de>
|
|
||||||
.br
|
|
||||||
Stefan Bogner <sbogner@suse.de>
|
|
||||||
.br
|
|
||||||
Will Stephenson <wstephenson@suse.de>
|
|
||||||
.br
|
|
||||||
|
|
@ -1 +0,0 @@
|
|||||||
debian/knetworkmanager.1
|
|
@ -1,6 +0,0 @@
|
|||||||
?package(network-manager-kde-trinity): \
|
|
||||||
needs="X11" \
|
|
||||||
section="Applications/Network/Monitoring" \
|
|
||||||
title="KNetworkManager" \
|
|
||||||
longtitle="A TDE frontend for NetworkManager" \
|
|
||||||
command="/opt/trinity/bin/knetworkmanager"
|
|
@ -1,2 +0,0 @@
|
|||||||
network-manager-kde: package-name-doesnt-match-sonames libtdeinit-knetworkmanager
|
|
||||||
network-manager-kde: shlib-without-versioned-soname opt/trinity/lib/libtdeinit_knetworkmanager.so libtdeinit_knetworkmanager.so
|
|
@ -1,16 +0,0 @@
|
|||||||
#!/bin/sh
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
case "$1" in
|
|
||||||
configure)
|
|
||||||
# Ask D-Bus to reload the config file
|
|
||||||
if [ -x "/etc/init.d/dbus" ]; then
|
|
||||||
invoke-rc.d dbus force-reload || true
|
|
||||||
fi
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
#DEBHELPER#
|
|
||||||
|
|
||||||
exit 0
|
|
@ -1,24 +0,0 @@
|
|||||||
#!/usr/bin/make -f
|
|
||||||
|
|
||||||
# Currently is not possible to build piklab with --enable-final
|
|
||||||
DEB_BUILD_OPTIONS += noopt
|
|
||||||
|
|
||||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
|
||||||
include debian/cdbs/debian-tde.mk
|
|
||||||
|
|
||||||
DEB_CONFIGURE_INCLUDEDIR := /opt/trinity/include/tde
|
|
||||||
DEB_CONFIGURE_MANDIR := /opt/trinity/share/man
|
|
||||||
DEB_CONFIGURE_PREFIX := /opt/trinity
|
|
||||||
DEB_CONFIGURE_INFODIR := /opt/trinity/share/info
|
|
||||||
|
|
||||||
cdbs_configure_flags := --with-qt-dir=/usr/share/qt3 --disable-rpath --with-xinerama $(cdbs_kde_enable_final) $(cdbs_kde_enable_debug)
|
|
||||||
|
|
||||||
DEB_INSTALL_DOCS_ALL := -XNEWS -XTODO
|
|
||||||
|
|
||||||
DEB_CONFIGURE_EXTRA_FLAGS := --with-openvpn --with-vpnc --with-pptp
|
|
||||||
|
|
||||||
binary-install/network-manager-kde-trinity::
|
|
||||||
# Install autostart file
|
|
||||||
install -D -m 644 knetworkmanager-0.8/src/knetworkmanager.desktop \
|
|
||||||
debian/network-manager-kde-trinity/opt/trinity/share/autostart/knetworkmanager-trinity.desktop
|
|
||||||
mv debian/network-manager-kde-trinity/usr/share/man debian/network-manager-kde-trinity/opt/trinity/share/
|
|
@ -1 +0,0 @@
|
|||||||
3.0 (quilt)
|
|
@ -1,6 +0,0 @@
|
|||||||
# Use xz instead of gzip
|
|
||||||
compression = "xz"
|
|
||||||
compression-level = 9
|
|
||||||
|
|
||||||
# Don't run differences
|
|
||||||
diff-ignore = .*
|
|
@ -1,2 +0,0 @@
|
|||||||
version=3
|
|
||||||
ftp://ftp.kde.org/pub/kde/stable/apps/Trinity.x/network/knetworkmanager-(.*)\.tar\.gz
|
|
Loading…
Reference in new issue