[arch-commits] Commit in consolekit/repos (5 files)
Tom Gundersen
tomegun at archlinux.org
Mon Apr 9 13:18:21 UTC 2012
Date: Monday, April 9, 2012 @ 09:18:20
Author: tomegun
Revision: 155917
archrelease: copy trunk to testing-x86_64
Added:
consolekit/repos/testing-x86_64/
consolekit/repos/testing-x86_64/PKGBUILD
(from rev 155916, consolekit/trunk/PKGBUILD)
consolekit/repos/testing-x86_64/consolekit.logrotate
(from rev 155916, consolekit/trunk/consolekit.logrotate)
consolekit/repos/testing-x86_64/consolekit.tmpfiles.conf
(from rev 155916, consolekit/trunk/consolekit.tmpfiles.conf)
consolekit/repos/testing-x86_64/pam-foreground-compat.ck
(from rev 155916, consolekit/trunk/pam-foreground-compat.ck)
--------------------------+
PKGBUILD | 46 +++++++++++++++++++++++++++++++++++++++++++++
consolekit.logrotate | 5 ++++
consolekit.tmpfiles.conf | 1
pam-foreground-compat.ck | 16 +++++++++++++++
4 files changed, 68 insertions(+)
Copied: consolekit/repos/testing-x86_64/PKGBUILD (from rev 155916, consolekit/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD (rev 0)
+++ testing-x86_64/PKGBUILD 2012-04-09 13:18:20 UTC (rev 155917)
@@ -0,0 +1,46 @@
+# $Id$
+# Maintainer: Jan de Groot <jgc at archlinux.org>
+# Contributor: onestep_ua <onestep at ukr.net>
+
+pkgname=consolekit
+pkgver=0.4.6
+pkgrel=1
+pkgdesc="A framework for defining and tracking users, login sessions, and seats"
+arch=('i686' 'x86_64')
+url="http://www.freedesktop.org/wiki/Software/ConsoleKit"
+license=('GPL')
+depends=('polkit' 'zlib' 'libx11' 'dbus-glib')
+makedepends=('pkgconfig' 'xmlto' 'docbook-xsl')
+options=(!libtool)
+source=(http://www.freedesktop.org/software/ConsoleKit/dist/ConsoleKit-$pkgver.tar.bz2
+ pam-foreground-compat.ck consolekit.logrotate consolekit.tmpfiles.conf)
+
+build() {
+ cd "$srcdir/ConsoleKit-$pkgver"
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --libexecdir=/usr/lib/ConsoleKit \
+ --with-systemdsystemunitdir=/usr/lib/systemd/system \
+ --enable-pam-module \
+ --enable-docbook-docs \
+ --enable-udev-acl
+ make
+}
+
+package() {
+ cd "$srcdir/ConsoleKit-$pkgver"
+ make DESTDIR="$pkgdir" install
+ install -m755 "$srcdir/pam-foreground-compat.ck" "$pkgdir/usr/lib/ConsoleKit/run-session.d/"
+
+ # install the logrotate config
+ install -D -m644 "$srcdir/consolekit.logrotate" "$pkgdir/etc/logrotate.d/consolekit"
+
+ install -D -m644 "$srcdir/consolekit.tmpfiles.conf" "$pkgdir/usr/lib/tmpfiles.d/consolekit.conf"
+
+ rm -rf "${pkgdir}/var/run"
+}
+md5sums=('810990b607e338f06a6396c92b8a4a06'
+ 'a8a4de71d9b0549b8143e5f6c2a36fc7'
+ '6fefa451d9fe2fc6d6269629d3529793'
+ '8c5a8059db515d40fae1379daf084094')
Copied: consolekit/repos/testing-x86_64/consolekit.logrotate (from rev 155916, consolekit/trunk/consolekit.logrotate)
===================================================================
--- testing-x86_64/consolekit.logrotate (rev 0)
+++ testing-x86_64/consolekit.logrotate 2012-04-09 13:18:20 UTC (rev 155917)
@@ -0,0 +1,5 @@
+/var/log/ConsoleKit/history {
+ missingok
+ notifempty
+ delaycompress
+}
Copied: consolekit/repos/testing-x86_64/consolekit.tmpfiles.conf (from rev 155916, consolekit/trunk/consolekit.tmpfiles.conf)
===================================================================
--- testing-x86_64/consolekit.tmpfiles.conf (rev 0)
+++ testing-x86_64/consolekit.tmpfiles.conf 2012-04-09 13:18:20 UTC (rev 155917)
@@ -0,0 +1 @@
+d /run/ConsoleKit 0755 - - -
Copied: consolekit/repos/testing-x86_64/pam-foreground-compat.ck (from rev 155916, consolekit/trunk/pam-foreground-compat.ck)
===================================================================
--- testing-x86_64/pam-foreground-compat.ck (rev 0)
+++ testing-x86_64/pam-foreground-compat.ck 2012-04-09 13:18:20 UTC (rev 155917)
@@ -0,0 +1,16 @@
+#!/bin/sh
+TAGDIR=/var/run/console
+
+[ -n "$CK_SESSION_USER_UID" ] || exit 1
+
+TAGFILE="$TAGDIR/`getent passwd $CK_SESSION_USER_UID | cut -f 1 -d:`"
+
+if [ "$1" = "session_added" ]; then
+ mkdir -p "$TAGDIR"
+ echo "$CK_SESSION_ID" >> "$TAGFILE"
+fi
+
+if [ "$1" = "session_removed" ] && [ -e "$TAGFILE" ]; then
+ sed -i "\%^$CK_SESSION_ID\$%d" "$TAGFILE"
+ [ -s "$TAGFILE" ] || rm -f "$TAGFILE"
+fi
More information about the arch-commits
mailing list