summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Biebl <biebl@debian.org>2007-03-29 01:38:27 +0200
committerMichael Biebl <biebl@debian.org>2009-07-14 17:40:54 +0200
commit33c868669d70aa24e749762338e10e93b76d2ed0 (patch)
tree3f0f599450159e75470a72f805cd13d6df5ce0a9
parentb4c56fb4b5f0c496b544080c5dd38d3cf93c10e8 (diff)
downloadconsolekit-33c868669d70aa24e749762338e10e93b76d2ed0.tar.gz
Imported Debian patch 0.2.1-1debian/0.2.1-1
-rw-r--r--debian/README.Debian8
-rw-r--r--debian/changelog6
-rw-r--r--debian/compat1
-rw-r--r--debian/consolekit.init127
-rw-r--r--debian/consolekit.install5
-rw-r--r--debian/control58
-rw-r--r--debian/copyright67
-rw-r--r--debian/libck-connector-dev.install4
-rw-r--r--debian/libck-connector0.install1
-rw-r--r--debian/libpam-ck-connector.install2
-rwxr-xr-xdebian/rules13
-rw-r--r--debian/watch2
12 files changed, 294 insertions, 0 deletions
diff --git a/debian/README.Debian b/debian/README.Debian
new file mode 100644
index 0000000..31cd315
--- /dev/null
+++ b/debian/README.Debian
@@ -0,0 +1,8 @@
+ConsoleKit for Debian
+---------------------
+
+ConsoleKit allows to track seats and sessions. It either needs integration
+into the login manager, like gdm, or it can go through a pam module.
+Install the package libpam-ck-connector for that.
+
+ -- Michael Biebl <biebl@debian.org> Thu, 29 Mar 2007 01:38:27 +0200
diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..37c6146
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+consolekit (0.2.1-1) experimental; urgency=low
+
+ * Initial release. (Closes: #416568)
+
+ -- Michael Biebl <biebl@debian.org> Thu, 29 Mar 2007 01:38:27 +0200
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/consolekit.init b/debian/consolekit.init
new file mode 100644
index 0000000..71db269
--- /dev/null
+++ b/debian/consolekit.init
@@ -0,0 +1,127 @@
+#! /bin/sh
+### BEGIN INIT INFO
+# Provides: ConsoleKit
+# Required-Start: $local_fs dbus
+# Required-Stop: $local_fs dbus
+# Default-Start: 2 3 4 5
+# Default-Stop: S 0 1 6
+# Short-Description: ConsoleKit daemon
+# Description: The ConsoleKit maintains a list of sessions,
+# seats and users
+### END INIT INFO
+
+# Author: Michael Biebl <biebl@debian.org>
+#
+
+DESC="ConsoleKit daemon"
+NAME=console-kit-daemon
+DAEMON=/usr/sbin/$NAME
+DAEMON_ARGS=""
+PIDFILE=/var/run/$NAME.pid
+SCRIPTNAME=/etc/init.d/consolekit
+
+# Exit if the package is not installed
+[ -x "$DAEMON" ] || exit 0
+
+# Read configuration variable file if it is present
+[ -r /etc/default/consolekit ] && . /etc/default/consolekit
+
+# Load the VERBOSE setting and other rcS variables
+[ -f /etc/default/rcS ] && . /etc/default/rcS
+
+# Define LSB log_* functions.
+# Depend on lsb-base (>= 3.0-6) to ensure that this file is present.
+. /lib/lsb/init-functions
+
+#
+# Function that starts the daemon/service
+#
+do_start()
+{
+ # Return
+ # 0 if daemon has been started
+ # 1 if daemon was already running
+ # 2 if daemon could not be started
+ start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON --test > /dev/null \
+ || return 1
+ start-stop-daemon --start --quiet --pidfile $PIDFILE --exec $DAEMON -- \
+ $DAEMON_ARGS \
+ || return 2
+ # Add code here, if necessary, that waits for the process to be ready
+ # to handle requests from services started subsequently which depend
+ # on this one. As a last resort, sleep for some time.
+}
+
+#
+# Function that stops the daemon/service
+#
+do_stop()
+{
+ # Return
+ # 0 if daemon has been stopped
+ # 1 if daemon was already stopped
+ # 2 if daemon could not be stopped
+ # other if a failure occurred
+ start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 --pidfile $PIDFILE --exec $DAEMON
+ RETVAL="$?"
+ [ "$RETVAL" = 2 ] && return 2
+ # Many daemons don't delete their pidfiles when they exit.
+ rm -f $PIDFILE
+ return "$RETVAL"
+}
+
+#
+# Send a SIGUSR1 to console-kit-daemon to switch between debug/non-debug mode.
+#
+do_reload() {
+ start-stop-daemon --stop --signal USR1 --quiet --pidfile $PIDFILE --exec $DAEMON
+ return 0
+}
+
+case "$1" in
+ start)
+ log_daemon_msg "Starting $DESC" "$NAME"
+ do_start
+ case "$?" in
+ 0|1) log_end_msg 0 ;;
+ 2) log_end_msg 1 ;;
+ esac
+ ;;
+ stop)
+ log_daemon_msg "Stopping $DESC" "$NAME"
+ do_stop
+ case "$?" in
+ 0|1) log_end_msg 0 ;;
+ 2) log_end_msg 1 ;;
+ esac
+ ;;
+ reload|force-reload)
+ log_daemon_msg "Reloading $DESC" "$NAME"
+ do_reload
+ log_end_msg $?
+ ;;
+ restart)
+ log_daemon_msg "Restarting $DESC" "$NAME"
+ do_stop
+ case "$?" in
+ 0|1)
+ do_start
+ case "$?" in
+ 0) log_end_msg 0 ;;
+ 1) log_end_msg 1 ;; # Old process is still running
+ *) log_end_msg 1 ;; # Failed to start
+ esac
+ ;;
+ *)
+ # Failed to stop
+ log_end_msg 1
+ ;;
+ esac
+ ;;
+ *)
+ echo "Usage: $SCRIPTNAME {start|stop|restart|reload|force-reload}" >&2
+ exit 3
+ ;;
+esac
+
+:
diff --git a/debian/consolekit.install b/debian/consolekit.install
new file mode 100644
index 0000000..e570f5c
--- /dev/null
+++ b/debian/consolekit.install
@@ -0,0 +1,5 @@
+debian/tmp/etc/dbus-1/system.d/ConsoleKit.conf
+debian/tmp/usr/bin/ck-list-sessions
+debian/tmp/usr/lib/consolekit/ck-get-x11-server-pid
+debian/tmp/usr/lib/consolekit/ck-collect-session-info
+debian/tmp/usr/sbin/console-kit-daemon
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..b180582
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,58 @@
+Source: consolekit
+Section: admin
+Priority: optional
+Maintainer: Utopia Maintenance Team <pkg-utopia-maintainers@lists.alioth.debian.org>
+Uploaders: Michael Biebl <biebl@debian.org>
+Build-Depends: cdbs, debhelper (>= 5), autotools-dev, libdbus-glib-1-dev (>= 0.30), libglib2.0-dev (>= 2.7.0), libx11-dev (>= 1.0.0), xmlto, libpam0g-dev
+Standards-Version: 3.7.2
+XS-Vcs-Svn: svn://svn.debian.org/svn/pkg-utopia/packages/experimental/consolekit
+XS-Vcs-Browser: http://svn.debian.org/wsvn/pkg-utopia/packages/experimental/consolekit
+
+Package: consolekit
+Section: admin
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, dbus
+Recommends: libpam-ck-connector
+Description: framework for defining and tracking users, sessions and seats
+ ConsoleKit is a system daemon for tracking what users are logged
+ into the system and how they interact with the computer (e.g.
+ which keyboard and mouse they use).
+ .
+ It provides asynchronous notification via the system message bus.
+ .
+ This package provides the system daemon and tools to interact with it.
+
+Package: libck-connector0
+Section: libs
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: ConsoleKit libraries
+ ConsoleKit is a system daemon for tracking what users are logged
+ into the system and how they interact with the computer (e.g.
+ which keyboard and mouse they use).
+ .
+ This package provides libraries.
+
+Package: libck-connector-dev
+Section: libdevel
+Architecture: any
+Depends: libck-connector0 (= ${binary:Version}), libdbus-1-dev
+Description: ConsoleKit development files
+ ConsoleKit is a system daemon for tracking what users are logged
+ into the system and how they interact with the computer (e.g.
+ which keyboard and mouse they use).
+ .
+ This package provides the development libraries and headers.
+
+Package: libpam-ck-connector
+Section: admin
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: ConsoleKit PAM module
+ ConsoleKit is a system daemon for tracking what users are logged
+ into the system and how they interact with the computer (e.g.
+ which keyboard and mouse they use).
+ .
+ This package provides a PAM module which can be used for console logins.
+ Graphical login managers should talk to the ConsoleKit directly.
+
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..e9941a0
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,67 @@
+This package was debianized by Michael Biebl <biebl@debian.org> on
+Thu, 29 Mar 2007 01:38:27 +0200.
+
+It was downloaded from http://people.freedesktop.org/~mccann/dist/.
+
+Upstream Author:
+ William Jon McCann <mccann@jhu.edu>
+
+Copyright:
+ Copyright (C) 2006 William Jon McCann <mccann@jhu.edu>
+
+License: GPL v2 or later
+
+ 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'.
+
+===============================================================================
+
+libck-connector/*
+pam-ck-connector/*
+
+Copyright:
+ Copyright (c) 2007 David Zeuthen <davidz@redhat.com>
+ Copyright (c) 2007 William Jon McCann <mccann@jhu.edu>
+
+License: MIT license
+
+ Permission is hereby granted, free of charge, to any person
+ obtaining a copy of this software and associated documentation
+ files (the "Software"), to deal in the Software without
+ restriction, including without limitation the rights to use,
+ copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the
+ Software is furnished to do so, subject to the following
+ conditions:
+
+ The above copyright notice and this permission notice shall be
+ included in all copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
+ OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
+ HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+ WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
+ OTHER DEALINGS IN THE SOFTWARE.
+
+===============================================================================
+
+The Debian packaging is (C) 2007, Michael Biebl <biebl@debian.org> and
+is licensed under the GPL, see above.
+
diff --git a/debian/libck-connector-dev.install b/debian/libck-connector-dev.install
new file mode 100644
index 0000000..c85526b
--- /dev/null
+++ b/debian/libck-connector-dev.install
@@ -0,0 +1,4 @@
+debian/tmp/usr/lib/libck-connector.so
+debian/tmp/usr/lib/pkgconfig/
+debian/tmp/usr/include/ConsoleKit/ck-connector/
+debian/tmp/usr/share/doc/ConsoleKit/spec/ usr/share/doc/libck-connector-dev/
diff --git a/debian/libck-connector0.install b/debian/libck-connector0.install
new file mode 100644
index 0000000..1ba911b
--- /dev/null
+++ b/debian/libck-connector0.install
@@ -0,0 +1 @@
+debian/tmp/usr/lib/libck-connector.so.*
diff --git a/debian/libpam-ck-connector.install b/debian/libpam-ck-connector.install
new file mode 100644
index 0000000..cd45d22
--- /dev/null
+++ b/debian/libpam-ck-connector.install
@@ -0,0 +1,2 @@
+debian/tmp/lib/security/pam_ck_connector.so
+debian/tmp/usr/share/man/man8/pam_ck_connector.8
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..a958253
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,13 @@
+#!/usr/bin/make -f
+
+include /usr/share/cdbs/1/rules/debhelper.mk
+include /usr/share/cdbs/1/class/autotools.mk
+include /usr/share/cdbs/1/rules/utils.mk
+
+DEB_CONFIGURE_EXTRA_FLAGS := --enable-pam-module \
+ --enable-docbook-docs \
+ --with-pid-file=/var/run/console-kit-daemon.pid
+
+# Start after dbus / stop before dbus
+DEB_DH_INSTALLINIT_ARGS := -- start 22 2 3 4 5 . stop 18 0 1 6 .
+
diff --git a/debian/watch b/debian/watch
new file mode 100644
index 0000000..20767cb
--- /dev/null
+++ b/debian/watch
@@ -0,0 +1,2 @@
+version=3
+http://people.freedesktop.org/~mccann/dist/ConsoleKit-(.*)\.tar\.gz