debian/0000775000000000000000000000000012221004701007155 5ustar debian/network-manager-pptp.docs0000664000000000000000000000002412155511626014124 0ustar README NEWS AUTHORS debian/patches/0000775000000000000000000000000012155511626010623 5ustar debian/patches/series0000664000000000000000000000024712155511626012043 0ustar # Patches for network-manager-pptp 01-fix-path-to-connection-editor-plugin-in-service-file.patch gtk_table_to_gtk_grid.patch lp960685_auth_methods_dialog_sizing.patch debian/patches/lp960685_auth_methods_dialog_sizing.patch0000664000000000000000000000220012155511626020421 0ustar From: Mathieu Trudel-Lapierre Subject: Set a minimum content height of 120px so that methods are visible. Otherwise the auth methods are barely visible and hard to navigate; 120px makes the dialog got up to about 500 pixels, which caters down to a 600px height screen, which is still reasonable. --- properties/nm-pptp-dialog.ui | 1 + 1 file changed, 1 insertion(+) Index: b/properties/nm-pptp-dialog.ui =================================================================== --- a/properties/nm-pptp-dialog.ui +++ b/properties/nm-pptp-dialog.ui @@ -345,6 +345,7 @@ True GTK_POLICY_NEVER GTK_POLICY_AUTOMATIC + 120 GTK_SHADOW_IN debian/patches/gtk_table_to_gtk_grid.patch0000664000000000000000000000342612155511626016161 0ustar From: Mathieu Trudel-Lapierre Subject: Port GtkTable uses to GtkGrid. Index: network-manager-pptp/auth-dialog/vpn-password-dialog.c =================================================================== --- network-manager-pptp.orig/auth-dialog/vpn-password-dialog.c 2012-02-15 11:24:03.803503000 -0500 +++ network-manager-pptp/auth-dialog/vpn-password-dialog.c 2012-02-15 11:30:20.344710680 -0500 @@ -124,8 +124,8 @@ label = gtk_label_new_with_mnemonic (label_text); gtk_misc_set_alignment (GTK_MISC (label), 0.0, 0.5); - gtk_table_attach_defaults (GTK_TABLE (table), label, 0, 1, row, row + 1); - gtk_table_attach_defaults (GTK_TABLE (table), entry, 1, 2, row, row + 1); + gtk_grid_attach (GTK_GRID (table), label, 0, row, 1, 1); + gtk_grid_attach (GTK_GRID (table), entry, 1, row, 1, 1); gtk_label_set_mnemonic_widget (GTK_LABEL (label), entry); } @@ -154,7 +154,7 @@ if (priv->show_password_secondary) add_row (priv->table, row++, priv->secondary_password_label, priv->password_entry_secondary); - gtk_table_attach_defaults (GTK_TABLE (priv->table), priv->show_passwords_checkbox, 1, 2, row, row + 1); + gtk_grid_attach (GTK_GRID (priv->table), priv->show_passwords_checkbox, 1, row, 1, 1); gtk_widget_show_all (priv->table); } @@ -228,9 +228,9 @@ priv->group = gtk_size_group_new (GTK_SIZE_GROUP_HORIZONTAL); - priv->table = gtk_table_new (4, 2, FALSE); - gtk_table_set_col_spacings (GTK_TABLE (priv->table), 12); - gtk_table_set_row_spacings (GTK_TABLE (priv->table), 6); + priv->table = gtk_grid_new (); + gtk_grid_set_column_spacing (GTK_GRID (priv->table), 12); + gtk_grid_set_row_spacing (GTK_GRID (priv->table), 6); gtk_container_add (GTK_CONTAINER (priv->table_alignment), priv->table); priv->password_entry = gtk_entry_new (); debian/patches/01-fix-path-to-connection-editor-plugin-in-service-file.patch0000664000000000000000000000216712155511626024124 0ustar From e0d51f57f9e9a24f6beaa55d682e31cd0bcd080f Mon Sep 17 00:00:00 2001 From: Dan Winship Date: Mon, 10 Jun 2013 13:23:58 -0300 Subject: [PATCH] Fix path to connection-editor plugin in service file --- Makefile.am | 2 +- nm-pptp-service.name.in | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.am b/Makefile.am index 1b21733..8cf1ebe 100644 --- a/Makefile.am +++ b/Makefile.am @@ -28,7 +28,7 @@ endif nm-pptp-service.name: $(srcdir)/nm-pptp-service.name.in sed -e 's|[@]LIBEXECDIR[@]|$(libexecdir)|g' \ - -e 's|[@]LIBDIR[@]|$(libdir)|g' \ + -e 's|[@]PLUGINDIR[@]|$(libdir)/NetworkManager|g' \ $< >$@ DISTCHECK_CONFIGURE_FLAGS = --enable-more-warnings=yes diff --git a/nm-pptp-service.name.in b/nm-pptp-service.name.in index 0936a9a..af69a5f 100644 --- a/nm-pptp-service.name.in +++ b/nm-pptp-service.name.in @@ -5,5 +5,5 @@ program=@LIBEXECDIR@/nm-pptp-service [GNOME] auth-dialog=@LIBEXECDIR@/nm-pptp-auth-dialog -properties=@LIBDIR@/libnm-pptp-properties +properties=@PLUGINDIR@/libnm-pptp-properties supports-external-ui-mode=true -- 1.7.10.4 debian/rules0000775000000000000000000000065312155511626010260 0ustar #!/usr/bin/make -f DPKG_EXPORT_BUILDFLAGS = 1 include /usr/share/dpkg/buildflags.mk %: dh $@ --with autoreconf override_dh_auto_configure: dh_auto_configure -- \ --libexecdir=/usr/lib/NetworkManager \ --disable-static \ --with-pppd-plugin-dir=/usr/lib/pppd/2.4.5 \ --with-gtkver=3 override_dh_makeshlibs: dh_makeshlibs -X/usr/lib/NetworkManager/ -X/usr/lib/pppd/ override_dh_install: dh_install --list-missing debian/source/0000775000000000000000000000000012155511626010474 5ustar debian/source/format0000664000000000000000000000001412155511626011702 0ustar 3.0 (quilt) debian/network-manager-pptp.postinst0000664000000000000000000000177412155511626015074 0ustar #! /bin/sh # postinst script for network-manager-pptp set -e # summary of how this script can be called: # * `configure' # * `abort-upgrade' # * `abort-remove' `in-favour' # # * `abort-deconfigure' `in-favour' # `removing' # # for details, see http://www.debian.org/doc/debian-policy/ or # the debian-policy package case "$1" in configure) # Ask the bus to reload the config file if [ -x "/etc/init.d/dbus" ]; then invoke-rc.d dbus force-reload || true fi ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "postinst called with unknown argument \`$1'" >&2 exit 1 ;; esac # dh_installdeb will replace this with shell code automatically # generated by other debhelper scripts. #DEBHELPER# exit 0 debian/changelog0000664000000000000000000003351212221004674011044 0ustar network-manager-pptp (0.9.8.2-1ubuntu2) saucy; urgency=low * plasma-widget-networkmanagement was replaced by plasma-nm, changing Recommends accordingly. -- Harald Sitter Thu, 26 Sep 2013 12:16:51 +0200 network-manager-pptp (0.9.8.2-1ubuntu1) saucy; urgency=low * Sync with Debian. Remaining changes: - debian/control: + Recommend network-manager-pptp-gnome or plasma-widget-networkmanagement - debian/patches/gtk_table_to_gtk_grid.patch: port GtkTable uses to GtkGrid - debian/patches/lp960685_auth_methods_dialog_sizing.patch: set a default visible content size of 120 pixels for the auth methods scrolled window, so that the methods in are properly visible. * Dropped changes: - debian/patches/auth_dialog_libexecdir.patch: Applied in new version -- Jeremy Bicha Mon, 10 Jun 2013 23:03:26 -0400 network-manager-pptp (0.9.8.2-1) unstable; urgency=low * New upstream release. * Bump network-manager Build-Depends to (>= 0.9.8). * Fix path to connection-editor plugin in service file. Patch cherry-picked from upstream Git. * Use dh-autoreconf to update the build system. -- Michael Biebl Tue, 11 Jun 2013 00:27:10 +0200 network-manager-pptp (0.9.8.0-2) unstable; urgency=low * Mark binary packages as linux-any. * Upload to unstable. * Bump Standards-Version to 3.9.4. No further changes. -- Michael Biebl Mon, 06 May 2013 18:07:17 +0200 network-manager-pptp (0.9.8.0-1) experimental; urgency=low * New upstream release. -- Michael Biebl Thu, 21 Feb 2013 15:14:02 +0100 network-manager-pptp (0.9.6.0-1) experimental; urgency=low * New upstream release. * Remove Enrico Tassi from Uploaders on his request. Thank you Enrico for your work! * Bump Build-Depends on libnm-*-dev and network-manager-dev to (>= 0.9.6). * Use --list-missing to show uninstalled files. -- Michael Biebl Sat, 27 Oct 2012 00:16:16 +0200 network-manager-pptp (0.9.4.0-2) unstable; urgency=low * Fix Upstream-Name and Source in debian/copyright. -- Michael Biebl Sat, 24 Mar 2012 23:50:06 +0100 network-manager-pptp (0.9.4.0-1) unstable; urgency=low * New upstream release. * Fix versioned Build-Depends on dpkg-dev. The buildflags.mk snippet was added in version 1.16.1, not 1.6.1. * Bump Build-Depends on libnm-*-dev and network-manager-dev to (>= 0.9.4). * Drop Build-Depends on libgconf2-dev. * Update debian/copyright using the machine-readable copyright format 1.0. * Bump Standards-Version to 3.9.3. -- Michael Biebl Sat, 24 Mar 2012 23:39:59 +0100 network-manager-pptp (0.9.2.0-1) unstable; urgency=low * New upstream release. * debian/control - Bump Build-Depends on libnm-*-dev and network-manager-dev to (>= 0.9.2). * Enable default hardening options from dpkg-buildflags. - Use buildflags.mk snippet in debian/rules. - Add Build-Depends on dpkg-dev (>= 1.6.1). -- Michael Biebl Sat, 12 Nov 2011 06:22:39 +0100 network-manager-pptp (0.9.0-3) unstable; urgency=low * debian/watch: Track .xz tarballs. * Build against GTK 3. -- Michael Biebl Sun, 16 Oct 2011 09:12:23 +0200 network-manager-pptp (0.9.0-2) unstable; urgency=low * Upload to unstable. -- Michael Biebl Fri, 16 Sep 2011 21:32:43 +0200 network-manager-pptp (0.9.0-1) experimental; urgency=low * New upstream release. * debian/control - Bump Build-Depends on libnm-*-dev and network-manager-dev to (>= 0.9). -- Michael Biebl Wed, 24 Aug 2011 15:31:30 +0200 network-manager-pptp (0.8.999-1) experimental; urgency=low * New upstream release (0.9 rc2). -- Michael Biebl Wed, 04 May 2011 23:58:04 +0200 network-manager-pptp (0.8.998-1) experimental; urgency=low * New upstream release (0.9 rc1). * debian/control - Bump Build-Depends on libnm-*-dev and network-manager-dev to (>= 0.8.998). - Bump Build-Depends on libgtk2.0-dev to (>= 2.20). * debian/rules - Build against GTK+ version 2. -- Michael Biebl Tue, 03 May 2011 01:35:53 +0200 network-manager-pptp (0.8.4-1) unstable; urgency=low * New upstream release. * debian/control - Bump Build-Depends on libnm-*-dev and network-manager-dev to (>= 0.8.4). - Update package descriptions. - Bump Standards-Version to 3.9.2. No further changes. * debian/watch - Switch to bzip2. -- Michael Biebl Thu, 21 Apr 2011 17:22:08 +0200 network-manager-pptp (0.8.3.995-1) unstable; urgency=low * New upstream release (0.8.4 beta1). * Bump debhelper compatibility level to 8. * debian/control - Drop Build-Depends on libglade2-dev, converted to GtkBuilder. - Bump Build-Depends on libnm-*-dev and network-manager-dev to (>= 0.8.3.995). -- Michael Biebl Sat, 19 Mar 2011 10:40:53 +0100 network-manager-pptp (0.8.2-3) unstable; urgency=low * Upload to unstable. -- Michael Biebl Mon, 07 Feb 2011 01:30:12 +0100 network-manager-pptp (0.8.2-2) experimental; urgency=low * Switch from cdbs to dh - Drop Build-Depends on cdbs. - Bump Build-Depends on debhelper to (>= 7.0.50~) for override targets. - Convert debian/rules to use dh. - Add debian/network-manager-pptp.docs. -- Michael Biebl Wed, 22 Dec 2010 04:48:01 +0100 network-manager-pptp (0.8.2-1) experimental; urgency=low * New upstream release. * Update Vcs-* fields: Move packaging from svn to git. * debian/control - Bump Build-Depends on libnm-* packages to (>= 0.8.2). -- Michael Biebl Sat, 18 Dec 2010 11:58:40 +0100 network-manager-pptp (0.8.1-1) unstable; urgency=low * New upstream release. * Switch to source format 3.0 (quilt). - Add debian/source/format. - Drop Build-Depends on quilt. - Remove /usr/share/cdbs/1/rules/patchsys-quilt.mk from debian/rules. - Remove debian/README.source. * Build against ppp 2.4.5. (Closes: #589695) - Bump Build-Depends on ppp-dev to (>= 2.4.5). - Add Depends on ppp (>= 2.4.5), ppp (<< 2.4.6) to avoid future breakage when the plugin dir changes again. - Set --with-pppd-plugin-dir configure option to /usr/lib/pppd/2.4.5. * debian/control - Bump Build-Depends on libnm-* packages to (>= 0.8.1). - Bump Standards-Version to 3.9.1. No further changes. -- Michael Biebl Tue, 27 Jul 2010 14:47:47 +0200 network-manager-pptp (0.8-2) unstable; urgency=low * debian/control - Remove Recommends: network-manager-pptp-gnome from network-manager-pptp. Otherwise installing network-manager-kde will pull half of GNOME as Recommends are installed by default nowadays. -- Michael Biebl Wed, 17 Mar 2010 20:19:51 +0100 network-manager-pptp (0.8-1) unstable; urgency=low * New upstream release. * debian/control - Bump Build-Depends on libnm-* packages to (>= 0.8). - Bump Standards-Version to 3.8.4. No further changes. * debian/network-manager-pptp-gnome.install - Remove .desktop file and icons, no longer installed upstream. (Closes: #489288) -- Michael Biebl Mon, 22 Feb 2010 19:11:15 +0100 network-manager-pptp (0.7.999-2) unstable; urgency=low * Upload to unstable. -- Michael Biebl Wed, 27 Jan 2010 01:00:27 +0100 network-manager-pptp (0.7.999-1) experimental; urgency=low * New upstream release (0.8 RC3). * No longer install outdated TODO file. * debian/control - Bump Build-Depends on libnm-* packages to (>= 0.7.999). - Bump Build-Depends on libdbus-glib-1-dev to (>= 0.74). -- Michael Biebl Sat, 23 Jan 2010 00:46:29 +0100 network-manager-pptp (0.7.2-1) unstable; urgency=low * New upstream release. * debian/control - Bump build dependencies on nm packages to (>= 0.7.2). - Bump Standards-Version to 3.8.3. No further changes. -- Michael Biebl Fri, 27 Nov 2009 10:32:39 +0100 network-manager-pptp (0.7.1-1) unstable; urgency=low * New upstream release. * Bump Standards-Version to 3.8.1. No further changes. -- Michael Biebl Thu, 16 Apr 2009 17:31:06 +0200 network-manager-pptp (0.7.0.99-1) unstable; urgency=low * New upstream release (0.7.1 rc3). -- Michael Biebl Thu, 05 Mar 2009 13:40:27 +0100 network-manager-pptp (0.7.0.97-1) unstable; urgency=low * New upstream release. * debian/patches/01-dbus_policy.patch - Removed, merged upstream. * debian/patches/02-icon_name.patch - Removed, merged upstream. * debian/control - Drop libgnomeui-dev from Build-Depends, no longer required. -- Michael Biebl Wed, 25 Feb 2009 10:52:47 +0100 network-manager-pptp (0.7.0-2) experimental; urgency=low * debian/control - Wrap build dependencies. - Bump build dependency on debhelper to (>= 7). * debian/compat - Bump to debhelper v7 compat mode. * debian/patches/01-dbus_policy.patch - Remove bare send_interface policy rules. (Closes: #510732) * debian/rules - Include gnome.mk cdbs class instead of autotools.mk. -- Michael Biebl Sat, 14 Feb 2009 15:18:46 +0100 network-manager-pptp (0.7.0-1) experimental; urgency=low * New upstream release. * debian/control - Set Utopia Maintenance Team as Maintainer, add myself and Enrico to Uploaders. - Update Vcs-* fields. - Add Homepage: field. - Update build dependencies. - Bump Standards-Version to 3.8.0. Add README.source as recommended by the new policy. * debian/rules - Install plugins into /usr/lib/NetworkManager, so NetworkManager can find them. * debian/*.install - Update accordingly. * Switch patch management system to quilt. * debian/patches/icon-name.patch - Rename and refresh patch to apply cleanly. * debian/{nm-ppp-starter.1,network-manager-pptp.manpages} - Remove obsolete man page. * debian/watch - Add watch file which allows to track new upstream releases. * debian/copyright - Revised and updated. * debian/network-manager-pptp.preinst - Remove obsolete conffiles /etc/NetworkManager/VPN/nm-ppp-starter.name and /etc/dbus-1/system.d/nm-ppp-starter.conf on upgrades. If they have been locally modified, save them as .dpkg-bak. -- Michael Biebl Fri, 26 Dec 2008 18:24:20 +0100 network-manager-pptp (0.6.5+svnhead2574+dfsg-2) unstable; urgency=low * Added recommendation over nm-ppp-gnome (Closes: #484163) * Install the .png icon (Closes: #474324) -- Enrico Tassi Sat, 28 Jun 2008 16:06:28 +0200 network-manager-pptp (0.6.6+dfsg-2) experimental; urgency=low * install binaries to /usr/lib/network-manager-pptp * modified .name file to point to the correct path of binaries * installed again the desktop file -- Enrico Tassi Tue, 08 Apr 2008 10:35:36 +0200 network-manager-pptp (0.6.6+dfsg-1) experimental; urgency=low * Fixed some omissions in the copyright file, thanks Thomas Viehmann for spotting them. * New upstream release * Install the .png icon (Closes: #474324) * Added some patches that have been (probably erroneously) removed from the upstream: - vi.po is not available and should not be compiled - pppd plugin should not be installed in /usr/bin - use ppp headers in /usr/include and not the local ones -- Enrico Tassi Thu, 03 Apr 2008 10:14:36 +0200 network-manager-pptp (0.6.5+svnhead2574+dfsg-1) unstable; urgency=low * Firs upload in Debian (Closes: #390708, #356944) * Moved to CDBS to better handle autotools * Added Vcs-Svn control field * Split the package in the n-m-pptp and n-m-pptp-gnome * Fixed copyright file and removed from the source package some files that are not redistributable under the GPL license. -- Enrico Tassi Thu, 20 Mar 2008 19:05:53 +0100 network-manager-pptp (0.6.5+svnhead2574-0ubuntu1) gutsy; urgency=low * Due to misscomprehension with original maintainer, my previous svn sync was a regression, as I synched with 0.6.5 branch while he did with 0.7 beta and backported the sources for 0.6.x. Reverting the packaging for the moment as we are late in the dev cycle to resync from svn and get potentially something unstable. * Applyed patch 01_no_icon.dpatch * Removed network-manager-gnome dependency * Added missing build-dep libnm-util-dev -- Anthony Mercatante Fri, 15 Jun 2007 18:20:23 +0200 network-manager-pptp (0.6.5+svn2595-0ubuntu1) gutsy; urgency=low * New svn snapshot * Fixes dependencies. Shouldn't depend on network-manager-gnome. * Added missing build-dep libnm-util-dev according to new network-manager * Dropped obsolete patches * Switched packaging to cdbs * Build-deps on network-manager 0.6.5 -- Anthony Mercatante Fri, 15 Jun 2007 18:20:22 +0200 network-manager-pptp (0.6.4+svn2574-0ubuntu1) gutsy; urgency=low * New upstream release (fixes LP: #67881, LP: #80541). * Fix properties dialog so an option is always selected. (fixes LP: #89120) * Set NoDisplay=true in the .desktop file to hide spurious menu item (fixes LP: #109856). * Bump Standards-version to 3.7.2 and fix Maintainer: field in debian/control. -- Craig Box Sun, 4 Jun 2007 11:18:03 +1200 network-manager-pptp (0.6.3+cvs20060819-0ubuntu2) edgy; urgency=low * Add mss field in VPN properties structure, and update documentation to point out that this patch only applies to NM 0.6.2 (dapper). -- Craig Box Sun, 1 Oct 2006 16:04:54 +1300 network-manager-pptp (0.6.3+cvs20060819-0ubuntu1) edgy; urgency=low * Initial release. -- Craig Box Wed, 26 Oct 2006 21:06:54 +1200 debian/copyright0000664000000000000000000000374312155511626011136 0ustar Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ Upstream-Name: NetworkManager-pptp Source: http://ftp.gnome.org/pub/GNOME/sources/NetworkManager-pptp/ Files: * Copyright: 2008 - 2011 Red Hat, Inc. 2007 - 2008 Novell, Inc. 2008 Dan Williams License: GPL-2+ Files: auth-dialog/vpn-password-dialog.* Copyright: 1999, 2000 Eazel, Inc. 2011 Red Hat, Inc. License: LGPL-2+ License: GPL-2+ 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 program. If not, see . On Debian systems, the complete text of the GNU General Public License version 2 can be found in "/usr/share/common-licenses/GPL-2". License: LGPL-2+ This package 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 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 Lesser General Public License for more details. . You should have received a copy of the GNU General Public License along with this program. If not, see . . On Debian systems, the complete text of the GNU Lesser General Public License can be found in "/usr/share/common-licenses/LGPL-2". debian/network-manager-pptp.preinst0000664000000000000000000000253412155511626014670 0ustar #!/bin/sh set -e # This script can be called in the following ways: # # Before the package is installed: # install # # Before removed package is upgraded: # install # # Before the package is upgraded: # upgrade # # # If postrm fails during upgrade or fails on failed upgrade: # abort-upgrade # remove a no-longer used conffile rm_conffile() { PKGNAME="$1" CONFFILE="$2" if [ -e "$CONFFILE" ]; then md5sum="`md5sum \"$CONFFILE\" | sed -e \"s/ .*//\"`" old_md5sum="`dpkg-query -W -f='${Conffiles}' $PKGNAME | sed -n -e \"\\\\' $CONFFILE'{s/ obsolete$//;s/.* //p}\"`" if [ "$md5sum" != "$old_md5sum" ]; then echo "Obsolete conffile $CONFFILE has been modified by you." echo "Saving as $CONFFILE.dpkg-bak ..." mv -f "$CONFFILE" "$CONFFILE".dpkg-bak else echo "Removing obsolete conffile $CONFFILE ..." rm -f "$CONFFILE" fi fi } case "$1" in install|upgrade) if dpkg --compare-versions "$2" lt "0.7.0-1"; then rm_conffile network-manager-pptp /etc/NetworkManager/VPN/nm-ppp-starter.name rm_conffile network-manager-pptp /etc/dbus-1/system.d/nm-ppp-starter.conf fi ;; abort-upgrade) ;; *) echo "$0 called with unknown argument \`$1'" 1>&2 exit 1 ;; esac #DEBHELPER# exit 0 debian/watch0000664000000000000000000000015412155511626010225 0ustar version=3 http://download.gnome.org/sources/NetworkManager-pptp/([\d\.]+)/NetworkManager-pptp-(.*)\.tar\.xz debian/network-manager-pptp.install0000664000000000000000000000007712155511626014652 0ustar etc usr/lib/pppd/*/*.so usr/lib/NetworkManager/nm-pptp-service debian/control0000664000000000000000000000404712221004602010565 0ustar Source: network-manager-pptp Section: net Priority: optional Maintainer: Ubuntu Developers XSBC-Original-Maintainer: Utopia Maintenance Team Uploaders: Michael Biebl Build-Depends: debhelper (>= 8), dpkg-dev (>= 1.16.1), dh-autoreconf, network-manager-dev (>= 0.9.8), libnm-util-dev (>= 0.9.8), libnm-glib-dev (>= 0.9.8), libnm-glib-vpn-dev (>= 0.9.8), ppp-dev (>= 2.4.5), intltool, libdbus-glib-1-dev (>= 0.74), libgnome-keyring-dev, libgtk-3-dev (>= 3.0), libglib2.0-dev Standards-Version: 3.9.4 Vcs-Git: git://git.debian.org/git/pkg-utopia/network-manager-pptp.git Vcs-Browser: http://git.debian.org/?p=pkg-utopia/network-manager-pptp.git;a=summary Homepage: http://www.gnome.org/projects/NetworkManager/ Package: network-manager-pptp Architecture: linux-any Depends: ${shlibs:Depends}, ${misc:Depends}, pptp-linux, ppp (>= 2.4.5), ppp (<< 2.4.6) Recommends: network-manager-pptp-gnome | plasma-nm Description: network management framework (PPTP plugin core) NetworkManager is a system network service that manages your network devices and connections, attempting to keep active network connectivity when available. It manages ethernet, WiFi, mobile broadband (WWAN), and PPPoE devices, and provides VPN integration with a variety of different VPN services. . This package provides a VPN plugin for PPTP, commonly used for connecting to Microsoft VPN servers. Package: network-manager-pptp-gnome Architecture: linux-any Depends: ${shlibs:Depends}, ${misc:Depends}, network-manager-pptp (= ${binary:Version}) Description: network management framework (PPTP plugin GNOME GUI) NetworkManager is a system network service that manages your network devices and connections, attempting to keep active network connectivity when available. It manages ethernet, WiFi, mobile broadband (WWAN), and PPPoE devices, and provides VPN integration with a variety of different VPN services. . This package provides the GNOME bits of NetworkManager's PPTP plugin. debian/compat0000664000000000000000000000000212155511626010372 0ustar 8 debian/gbp.conf0000664000000000000000000000006512155511626010614 0ustar [DEFAULT] pristine-tar = True debian-branch = master debian/network-manager-pptp-gnome.install0000664000000000000000000000017012155511626015747 0ustar usr/lib/NetworkManager/*.so* usr/lib/NetworkManager/nm-pptp-auth-dialog usr/share/gnome-vpn-properties usr/share/locale