+++ /dev/null
-#!/bin/bash
-
-__cards () {
- while IFS=$'\t' read idx name _; do
- printf "%s %s\n" "$idx" "$name"
- done < <(pactl list cards short 2> /dev/null)
-}
-
-__sinks () {
- while IFS=$'\t' read _ name _ _ _; do
- printf "%s\n" "$name"
- done < <(pactl list sinks short 2> /dev/null)
-}
-
-__sinks_idx () {
- while IFS=$'\t' read idx _ _ _ _; do
- printf "%s\n" "$idx"
- done < <(pactl list sinks short 2> /dev/null)
-}
-
-__sources () {
- while IFS=$'\t' read _ name _ _ _; do
- printf "%s\n" "$name"
- done < <(pactl list sources short 2> /dev/null)
-}
-
-__sink_inputs () {
- while IFS=$'\t' read idx _ _ _ _; do
- printf "%s\n" "$idx"
- done < <(pactl list sink-inputs short 2> /dev/null)
-}
-
-__source_outputs () {
- while IFS=$'\t' read idx _ _ _ _; do
- printf "%s\n" "$idx"
- done < <(pactl list source-outputs short 2> /dev/null)
-}
-
-__ports () {
- pactl list cards 2> /dev/null | awk -e \
- '/^\tPorts:/ {
- flag=1; next
- }
-
- /^\t[A-Za-z]/ {
- flag=0
- }
-
- flag {
- if (/^\t\t[A-Za-z]/)
- ports = ports substr($0, 3, index($0, ":")-3) " "
- }
-
- END {
- print ports
- }'
-}
-
-__profiles () {
- pactl list cards 2> /dev/null | awk -e \
- '/^\tProfiles:/ {
- flag=1; next
- }
-
- /^\t[A-Za-z]/ {
- flag=0
- }
-
- flag {
- if (/^\t\t[A-Za-z]/)
- profiles = profiles substr($0, 3, index($0, ": ")-3) " "
- }
-
- END {
- print profiles
- }'
-}
-
-__all_modules () {
- while read name; do
- name=${name%% *}
- printf "%s\n" "$name"
- done < <(pulseaudio --dump-modules 2> /dev/null)
-}
-
-__loaded_modules () {
- while IFS=$'\t' read idx name _; do
- printf "%s %s\n" "$idx" "$name"
- done < <(pactl list modules short 2> /dev/null)
-}
-
-__resample_methods () {
- while read name; do
- printf "%s\n" "$name"
- done < <(pulseaudio --dump-resample-methods 2> /dev/null)
-}
-
-_pacat_file_formats () {
- while IFS=$'\t' read name _; do
- printf "%s\n" "$name"
- done < <(pacat --list-file-formats 2> /dev/null)
-}
-
-in_array() {
- local i
- for i in "${@:2}"; do
- [[ $1 = "$i" ]] && return
- done
-}
-
-_pactl() {
- local cur prev words cword preprev command
- local comps
- local flags='-h --help --version -s --server= --client-name='
- local list_types='short sinks sources sink-inputs source outputs cards
- modules samples clients'
- local commands=(stat info list exit upload-sample play-sample remove-sample
- load-module unload-module move-sink-input move-source-output
- suspend-sink suspend-source set-card-profile set-sink-port
- set-source-port set-sink-volume set-source-volume
- set-sink-input-volume set-source-output-volume set-sink-mute
- set-source-mute set-sink-input-mute set-source-output-mute
- set-sink-formats set-port-latency-offset subscribe help)
-
- _init_completion -n = || return
- preprev=${words[$cword-2]}
-
- for word in "${COMP_WORDS[@]}"; do
- if in_array "$word" "${commands[@]}"; then
- command=$word
- break
- fi
- done
-
- case $preprev in
- list) COMPREPLY=($(compgen -W 'short' -- "$cur")) ;;
-
- play-sample)
- comps=$(__sinks)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- move-sink-input)
- comps=$(__sinks)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- move-source-output)
- comps=$(__sources)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- set-card-profile)
- comps=$(__profiles)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- set-*-port)
- comps=$(__ports)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- set-*-mute) COMPREPLY=($(compgen -W 'true false toggle' -- "$cur")) ;;
-
- set-sink-formats)
- ;; #TODO
-
- set-port-*)
- comps=$(__ports)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
- --server)
- compopt +o nospace
- _known_hosts_real "$cur"
- ;;
- esac
- [[ $COMPREPLY ]] && return 0
-
- case $prev in
- list) COMPREPLY=($(compgen -W '${list_types[*]}' -- "$cur")) ;;
-
- stat) COMPREPLY=($(compgen -W 'short' -- "$cur")) ;;
-
- upload-sample) _filedir ;;
-
- play-sample) ;; # TODO
-
- remove-sample) ;; # TODO
-
- load-module)
- comps=$(__all_modules)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- unload-module)
- comps=$(__loaded_modules)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- set-card*)
- comps=$(__cards)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- *sink-input*)
- comps=$(__sink_inputs)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- *source-output*)
- comps=$(__source_outputs)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- set-sink-formats)
- comps=$(__sinks_idx)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- *sink*)
- comps=$(__sinks)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- *source*)
- comps=$(__sources)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- set-port*)
- comps=$(__cards)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- -s)
- _known_hosts_real "$cur" ;;
- esac
- [[ $COMPREPLY ]] && return 0
-
- case $cur in
- --server=*)
- cur=${cur#*=}
- _known_hosts_real "$cur"
- ;;
-
- -*)
- COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur"))
- [[ $COMPREPLY == *= ]] && compopt -o nospace
- ;;
-
- *)
- [[ -z $command ]] && COMPREPLY=($(compgen -W '${commands[*]}' -- "$cur"))
- ;;
- esac
-}
-complete -F _pactl pactl
-
-_pacmd() {
- local cur prev words cword preprev command
- local comps
- local flags='-h --help --version'
- local commands=(exit help list-modules list-cards list-sinks list-sources list-clients
- list-samples list-sink-inputs list-source-outputs stat info
- load-module unload-module describe-module set-sink-volume
- set-source-volume set-sink-input-volume set-source-output-volume
- set-sink-mute set-source-mut set-sink-input-mute
- set-source-output-mute update-sink-proplist update-source-proplist
- update-sink-input-proplist update-source-output-proplist
- set-default-sink set-default-source kill-client kill-sink-input
- kill-source-output play-sample remove-sample load-sample
- load-sample-lazy load-sample-dir-lazy play-file dump
- move-sink-input move-source-output suspend-sink suspend-source
- suspend set-card-profile set-sink-port set-source-port
- set-port-latency-offset set-log-target set-log-level set-log-meta
- set-log-time set-log-backtrace)
- _init_completion -n = || return
- preprev=${words[$cword-2]}
-
- for word in "${COMP_WORDS[@]}"; do
- if in_array "$word" "${commands[@]}"; then
- command=$word
- break
- fi
- done
-
- case $preprev in
- play-sample|play-file)
- comps=$(__sinks)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- load-sample*) _filedir ;;
-
- move-sink-input)
- comps=$(__sinks)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- move-source-output)
- comps=$(__sources)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- set-card-profile)
- comps=$(__profiles)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- set-*port*)
- comps=$(__ports)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- set-*-mute) COMPREPLY=($(compgen -W 'true false' -- "$cur"));;
-
- set-sink-formats)
- ;; #TODO
- esac
-
- case $prev in
- list-*) ;;
- describe-module|load-module)
- comps=$(__all_modules)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- unload-module)
- comps=$(__loaded_modules)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- load-sample-dir-lazy) _filedir -d ;;
- play-file) _filedir ;;
-
- *sink-input*)
- comps=$(__sink_inputs)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- *source-output*)
- comps=$(__source_outputs)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- *sink*)
- comps=$(__sinks)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- *source*)
- comps=$(__sources)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- set-card*)
- comps=$(__cards)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- set-port-*)
- comps=$(__cards)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- set-log-target)
- COMPREPLY=($(compgen -W 'auto syslog stderr file: newfile:' -- "$cur"))
- ;;
-
- set-log-level)
- COMPREPLY=($(compgen -W '{0..4}' -- "$cur"))
- ;;
-
- set-log-meta|set-log-time|suspend)
- COMPREPLY=($(compgen -W 'true false' -- "$cur"))
- ;;
- esac
-
- case $cur in
- -*) COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur")) ;;
- suspend)
- COMPREPLY=($(compgen -W 'suspend suspend-sink suspend-source' -- "$cur"))
- ;;
-
- load-sample)
- COMPREPLY=($(compgen -W 'load-sample load-sample-lazy load-sample-dir-lazy' -- "$cur"))
- ;;
-
- *)
- [[ -z $command ]] && COMPREPLY=($(compgen -W '${commands[*]}' -- "$cur"))
- ;;
- esac
-}
-complete -F _pacmd pacmd
-
-_pasuspender () {
- local cur prev
- local flags='-h --help --version -s --server='
-
- _init_completion -n = || return
-
- case $cur in
- --server=*)
- cur=${cur#*=}
- _known_hosts_real "$cur"
- ;;
-
- -*)
- COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur"))
- [[ $COMPREPLY == *= ]] && compopt -o nospace
- ;;
- esac
-
- case $prev in
- -s) _known_hosts_real "$cur" ;;
- esac
-}
-complete -F _pasuspender pasuspender
-
-_padsp () {
- local cur prev
- local flags='-h -s -n -m -M -S -D -d'
-
- _get_comp_words_by_ref cur prev
-
- case $cur in
- -*) COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur")) ;;
- esac
-
- case $prev in
- -s) _known_hosts_real "$cur" ;;
- esac
-}
-complete -F _padsp padsp
-
-_pacat () {
- local cur prev comps
- local flags='-h --help --version -r --record -p --playback -v --verbose -s
- --server= -d --device= -n --client-name= --stream-name= --volume=
- --rate= --format= --channels= --channel-map= --fix-format --fix-rate
- --fix-channels --no-remix --no-remap --latency= --process-time=
- --latency-msec= --process-time-msec= --property= --raw --passthrough
- --file-format= --list-file-formats --monitor-stream='
-
- _init_completion -n = || return
-
- case $cur in
- --server=*)
- cur=${cur#*=}
- _known_hosts_real "$cur"
- ;;
-
- --device=*)
- cur=${cur#*=}
- comps=$(__sinks)
- comps+=" "$(__sources)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- --monitor-stream=*)
- cur=${cur#*=}
- comps=$(__sink_inputs)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- --rate=*)
- cur=${cur#*=}
- COMPREPLY=($(compgen -W '32000 44100 48000 9600 192000' -- "$cur"))
- ;;
-
- --file-format=*)
- cur=${cur#*=}
- comps=$(_pacat_file_formats)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- --*=*)
- ;;
-
- -*)
- COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur"))
- [[ $COMPREPLY == *= ]] && compopt -o nospace
- ;;
- *) _filedir ;;
- esac
-
- case $prev in
- -s) _known_hosts_real "$cur" ;;
- -d)
- comps=$(__sinks)
- comps+=" "$(__sources)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
- esac
-}
-complete -F _pacat pacat paplay parecord
-
-_pulseaudio()
-{
- local cur prev words cword
- local flags='-h --help --version --dump-conf --dump-resample-methods --cleanup-shm
- --start -k --kill --check --system= -D --daemonize= --fail= --high-priority=
- --realtime= --disallow-module-loading= --disallow-exit= --exit-idle-time=
- --scache-idle-time= --log-level= -v --log-target= --log-meta= --log-time=
- --log-backtrace= -p --dl-search-path= --resample-method= --use-pit-file=
- --no-cpu-limit= --disable-shm= -L --load= -F --file= -C -n'
- _init_completion -n = || return
-
- case $cur in
- --system=*|--daemonize=*|--fail=*|--high-priority=*|--realtime=*| \
- --disallow-*=*|--log-meta=*|--log-time=*|--use-pid-file=*| \
- --no-cpu-limit=*|--disable-shm=*)
- cur=${cur#*=}
- COMPREPLY=($(compgen -W 'true false' -- "$cur"))
- ;;
-
- --log-target=*)
- cur=${cur#*=}
- COMPREPLY=($(compgen -W 'auto syslog stderr file: newfile:' -- "$cur"))
- ;;
-
- --log-level=*)
- cur=${cur#*=}
- COMPREPLY=($(compgen -W '{0..4}' -- "$cur"))
- ;;
-
- --dl-search-path=*)
- cur=${cur#*=}
- _filedir -d
- ;;
-
- --file=*)
- cur=${cur#*=}
- _filedir
- ;;
-
- --resample-method=*)
- cur=${cur#*=}
- comps=$(__resample_methods)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- --load=*)
- cur=${cur#*=}
- comps=$(__all_modules)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
-
- --*=*)
- ;;
-
- -*)
- COMPREPLY=($(compgen -W '${flags[*]}' -- "$cur"))
- [[ $COMPREPLY == *= ]] && compopt -o nospace
- ;;
- esac
-
- case $prev in
- -D) COMPREPLY=($(compgen -W 'true false' -- "$cur")) ;;
- -p) _filedir -d ;;
- -F) _filedir ;;
- -L)
- cur=${cur#*=}
- comps=$(__all_modules)
- COMPREPLY=($(compgen -W '${comps[*]}' -- "$cur"))
- ;;
- esac
-}
-complete -F _pulseaudio pulseaudio
-
-#vim: set ft=zsh sw=4 ts=4 noet
+++ /dev/null
-# /etc/conf.d/cpufrequtils: config file for /etc/init.d/cpufrequtils
-
-# Options when starting cpufreq (given to the `cpufreq-set` program)
-START_OPTS="--governor ondemand"
-
-# Options when stopping cpufreq (given to the `cpufreq-set` program)
-STOP_OPTS="--governor performance"
-
-# Extra settings to write to sysfs cpufreq values.
-#SYSFS_EXTRA="ondemand/ignore_nice_load=1 ondemand/up_threshold=70"
-
+++ /dev/null
-#
-# /etc/inittab: This file describes how the INIT process should set up
-# the system in a certain run-level.
-#
-# Author: Miquel van Smoorenburg, <miquels@cistron.nl>
-# Modified by: Patrick J. Volkerding, <volkerdi@ftp.cdrom.com>
-# Modified by: Daniel Robbins, <drobbins@gentoo.org>
-# Modified by: Martin Schlemmer, <azarah@gentoo.org>
-# Modified by: Mike Frysinger, <vapier@gentoo.org>
-# Modified by: Robin H. Johnson, <robbat2@gentoo.org>
-#
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/files/inittab-2.87,v 1.1 2010/01/08 16:55:07 williamh Exp $
-
-# Default runlevel.
-id:3:initdefault:
-
-# System initialization, mount local filesystems, etc.
-si::sysinit:/sbin/rc sysinit
-
-# Further system initialization, brings up the boot runlevel.
-rc::bootwait:/sbin/rc boot
-
-l0:0:wait:/sbin/rc shutdown
-l0s:0:wait:/sbin/halt -dhp
-l1:1:wait:/sbin/rc single
-l2:2:wait:/sbin/rc nonetwork
-l3:3:wait:/sbin/rc default
-l4:4:wait:/sbin/rc default
-l5:5:wait:/sbin/rc default
-l6:6:wait:/sbin/rc reboot
-l6r:6:wait:/sbin/reboot -dk
-#z6:6:respawn:/sbin/sulogin
-
-# new-style single-user
-su0:S:wait:/sbin/rc single
-su1:S:wait:/sbin/sulogin
-
-# TERMINALS
-c1:12345:respawn:/sbin/agetty 38400 tty1 linux
-c2:2345:respawn:/sbin/agetty 38400 tty2 linux
-c3:2345:respawn:/sbin/agetty 38400 tty3 linux
-c4:2345:respawn:/sbin/agetty 38400 tty4 linux
-c5:2345:respawn:/sbin/agetty 38400 tty5 linux
-c6:2345:respawn:/sbin/agetty 38400 tty6 linux
-
-# SERIAL CONSOLES
-#s0:12345:respawn:/sbin/agetty 115200 ttyS0 vt100
-#s1:12345:respawn:/sbin/agetty 115200 ttyS1 vt100
-
-# What to do at the "Three Finger Salute".
-ca:12345:ctrlaltdel:/sbin/shutdown -r now
-
-# Used by /etc/init.d/xdm to control DM startup.
-# Read the comments in /etc/init.d/xdm for more
-# info. Do NOT remove, as this will start nothing
-# extra at boot if /etc/init.d/xdm is not added
-# to the "default" runlevel.
-x:a:once:/etc/X11/startDM.sh
-
<allow send_destination="org.freedesktop.login1"
send_interface="org.freedesktop.login1.Manager"
- send_member="GetSeat"/>
+ send_member="GetUserByPID"/>
<allow send_destination="org.freedesktop.login1"
send_interface="org.freedesktop.login1.Manager"
- send_member="ListSessions"/>
+ send_member="GetSeat"/>
<allow send_destination="org.freedesktop.login1"
send_interface="org.freedesktop.login1.Manager"
- send_member="ListUsers"/>
+ send_member="ListSessions"/>
<allow send_destination="org.freedesktop.login1"
send_interface="org.freedesktop.login1.Manager"
- send_member="ListMachines"/>
+ send_member="ListUsers"/>
<allow send_destination="org.freedesktop.login1"
send_interface="org.freedesktop.login1.Manager"
send_interface="org.freedesktop.login1.Seat"
send_member="ActivateSession"/>
+ <allow send_destination="org.freedesktop.login1"
+ send_interface="org.freedesktop.login1.Seat"
+ send_member="SwitchTo"/>
+
+ <allow send_destination="org.freedesktop.login1"
+ send_interface="org.freedesktop.login1.Seat"
+ send_member="SwitchToPrevious"/>
+
+ <allow send_destination="org.freedesktop.login1"
+ send_interface="org.freedesktop.login1.Seat"
+ send_member="SwitchToNext"/>
+
<allow send_destination="org.freedesktop.login1"
send_interface="org.freedesktop.login1.Session"
send_member="Activate"/>
send_interface="org.freedesktop.login1.Session"
send_member="SetIdleHint"/>
+ <allow send_destination="org.freedesktop.login1"
+ send_interface="org.freedesktop.login1.Session"
+ send_member="TakeControl"/>
+
+ <allow send_destination="org.freedesktop.login1"
+ send_interface="org.freedesktop.login1.Session"
+ send_member="ReleaseControl"/>
+
+ <allow send_destination="org.freedesktop.login1"
+ send_interface="org.freedesktop.login1.Session"
+ send_member="TakeDevice"/>
+
+ <allow send_destination="org.freedesktop.login1"
+ send_interface="org.freedesktop.login1.Session"
+ send_member="ReleaseDevice"/>
+
+ <allow send_destination="org.freedesktop.login1"
+ send_interface="org.freedesktop.login1.Session"
+ send_member="PauseDeviceComplete"/>
+
<allow receive_sender="org.freedesktop.login1"/>
</policy>
send_interface="org.freedesktop.machine1.Manager"
send_member="GetMachine"/>
+ <allow send_destination="org.freedesktop.machine1"
+ send_interface="org.freedesktop.machine1.Manager"
+ send_member="GetMachineByPID"/>
+
<allow receive_sender="org.freedesktop.machine1"/>
</policy>
;;
git)
git ls-files --others --ignore --exclude-standard --directory > "$listfile" || true
- grep -Fvf "$listfile"
+ sed 's/^\.\///' | grep -xFvf "$listfile"
;;
esac
rm -f "$listfile"
nl
elif [ "$LOWLEVEL_PACKAGE_MANAGER" = "qlist" ]; then
comment "new and old versions of conffiles, stored by emerge"
- ignore "*.cfg_*"
+ ignore "*._cfg*"
nl
fi
# Automatically generated file, do not edit
# Created by gtk-query-immodules-2.0-32 from gtk+-2.24.22
#
-# ModulesPath = /var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406/homedir/.gtk-2.0/2.10.0/i686-pc-linux-gnu/immodules:/var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406/homedir/.gtk-2.0/2.10.0/immodules:/var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406/homedir/.gtk-2.0/i686-pc-linux-gnu/immodules:/var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406/homedir/.gtk-2.0/immodules:/usr/lib32/gtk-2.0/2.10.0/i686-pc-linux-gnu/immodules:/usr/lib32/gtk-2.0/2.10.0/immodules:/usr/lib32/gtk-2.0/i686-pc-linux-gnu/immodules:/usr/lib32/gtk-2.0/immodules
+# ModulesPath = /var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406-r1/homedir/.gtk-2.0/2.10.0/i686-pc-linux-gnu/immodules:/var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406-r1/homedir/.gtk-2.0/2.10.0/immodules:/var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406-r1/homedir/.gtk-2.0/i686-pc-linux-gnu/immodules:/var/tmp/portage/app-emulation/emul-linux-x86-gtklibs-20140406-r1/homedir/.gtk-2.0/immodules:/usr/lib32/gtk-2.0/2.10.0/i686-pc-linux-gnu/immodules:/usr/lib32/gtk-2.0/2.10.0/immodules:/usr/lib32/gtk-2.0/i686-pc-linux-gnu/immodules:/usr/lib32/gtk-2.0/immodules
#
"/usr/lib32/gtk-2.0/2.10.0/immodules/im-ipa.so"
"ipa" "IPA" "gtk20" "/usr/share/locale" ""
# This file was automatically created based on description files (*.desc)
-# by sane-desc 3.5 from sane-backends 1.0.24 on Tue Jan 28 19:52:35 2014
+# by sane-desc 3.5 from sane-backends 1.0.24 on Tue Jun 17 19:41:14 2014
#
# The entries below are used to detect a USB device and change owner
# and permissions on the "device node" used by libusb.
+++ /dev/null
-#!/sbin/runscript
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/util-linux/files/crypto-loop.initd,v 1.4 2008/10/26 03:16:48 vapier Exp $
-
-depend() {
- if [ -x /etc/init.d/root ]; then
- need root
- else
- need checkroot
- fi
- need modules
- before localmount
-}
-
-start() {
- local status="0"
-
- ebegin "Starting crypto loop devices"
-
- if [ -e /etc/conf.d/crypto-loop ] ; then
- egrep "^loop" /etc/conf.d/crypto-loop | \
- while read loopline ; do
- eval ${loopline}
-
- local configured=$(awk -v MOUNT="${device}" \
- '($2 == MOUNT) { print "yes" }' /proc/mounts)
-
- if [ "${configured}" != "yes" ] ; then
- einfo " Loop ${loop} on device ${device} (cipher ${cipher}, key size ${keysize}): "
-
- if [ -n "${hash}" ] ; then
- /usr/sbin/hashalot -n ${keysize} ${hash} </dev/tty|\
- /sbin/losetup -p 0 -e ${cipher}-${keysize} ${loop} ${device} ${other}
- else
- /sbin/losetup -e ${cipher}-${keysize} ${loop} ${device} ${other}
- fi
-
- if [ $? -ne 0 ] ; then
- ewarn "Failure configuring ${loop}. Skipping."
- status=1
- fi
- else
- ewarn " Loop ${loop} on device ${device} are already configured"
- fi
- done
- fi
- ewend ${status} "Failed to start some loop devices."
-
- # We do not fail if some loop devices did not start ...
- return 0
-}
-
-stop() {
- local status="0"
- for loop in $(ls /dev/loop[0-9] 2>/dev/null) ; do
- losetup ${loop} > /dev/null 2>&1
- if [ $? -eq 0 ] ; then
- ( umount ${loop} || swapoff "${loop}" ) >/dev/null 2>&1
- if ! /sbin/losetup -d ${loop} > /dev/null 2>&1; then
- ewarn "Failure deconfiguring ${loop}."
- status=1
- fi
- fi
- done
- ewend ${status}
-}
-
-
-# vim:ts=4
fi
else
if [ -z "$1" ]; then
- ewarn "No configuration specified; defaulting to DHCP"
+ ewarn "config_${IFVAR} not specified; defaulting to DHCP"
config_0="dhcp"
config_index=1
fi
# Modified by: Mike Frysinger, <vapier@gentoo.org>
# Modified by: Robin H. Johnson, <robbat2@gentoo.org>
#
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/files/inittab-2.87,v 1.1 2010/01/08 16:55:07 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/sysvinit/files/inittab-2.87,v 1.2 2013/04/20 03:51:26 vapier Exp $
# Default runlevel.
id:3:initdefault:
c6:2345:respawn:/sbin/agetty 38400 tty6 linux
# SERIAL CONSOLES
-#s0:12345:respawn:/sbin/agetty 115200 ttyS0 vt100
-#s1:12345:respawn:/sbin/agetty 115200 ttyS1 vt100
+#s0:12345:respawn:/sbin/agetty -L 115200 ttyS0 vt100
+#s1:12345:respawn:/sbin/agetty -L 115200 ttyS1 vt100
# What to do at the "Three Finger Salute".
ca:12345:ctrlaltdel:/sbin/shutdown -r now
# extra at boot if /etc/init.d/xdm is not added
# to the "default" runlevel.
x:a:once:/etc/X11/startDM.sh
-
+++ /dev/null
-../usr/share/zoneinfo/Europe/Berlin
\ No newline at end of file
skype-eula \
skype-4.0.0.7-copyright \
Oracle-BCLA-JavaSE \
+ FraunhoferFDK \
"
#FETCHCOMMAND="/usr/bin/wget -t 5 --passive-ftp -P \${DISTDIR} \${URI}"
~dev-vcs/gitg-0.2.5
+~dev-db/sqlite-3.8.5
~dev-db/virtuoso-odbc-6.1.4
~dev-db/virtuoso-server-6.1.4
app-misc/tracker -xine
app-misc/tomboy galago
-app-office/libreoffice nlpsolver
+app-office/libreoffice nlpsolver vlc
app-portage/eix optimization strong-optimization
media-video/mplayer 3dnowext amrnb amrwb bs2b bl cpudetection dvdnav enca gmplayer live lzo md5sum mmxext mp2 nemesi nut opencore-amr pvr rar rtc srt teletext tga tivo xanim xvmc
media-video/totem iplayer -tracker upnp-av
media-video/transcode extrafilters fame lzo mjpeg network nuv postproc
-media-video/vlc atmo cdda cddax cdio corba daap dc1394 dirac egl fbosd fluidsynth gme growl httpd kate libass libcaca libtar libtiger libv4l libv4l2 linsys live matroska mod mpeg omxil portaudio rtsp schroedinger shine shout skins stream switcher taglib twolame vcdinfo vcdx vlm zvbi
+media-video/vlc atmo cdda cddax cdio chromaprint corba daap dc1394 dirac egl faad fbosd fluidsynth gme growl httpd kate libass libcaca libtar libtiger libv4l libv4l2 linsys live matroska mod mpeg omxil opencv portaudio rdp rtsp schroedinger sftp shine shout skins stream switcher taglib tremor twolame vcdinfo vcdx vlm zvbi
net-analyzer/nagios-nrpe command-args
net-analyzer/nagios-plugins nagios-dns nagios-ntp nagios-ping nagios-ssh
sys-apps/portage epydoc python3
sys-apps/ppd development doc pb_pstorage
sys-apps/usbutils network-cron
-sys-apps/util-linux ddate loop-aes
+sys-apps/util-linux ddate fdformat loop-aes tty-helpers
sys-apps/vcb-python development vcb
sys-auth/consolekit policykit
-SEARCH_DIRS_MASK="/opt/icedtea-bin-6.1.12.7"
+SEARCH_DIRS_MASK="/opt/icedtea-bin-6.1.13.3"
-SEARCH_DIRS_MASK="/opt/oracle-jdk-bin-1.7.0.55"
+SEARCH_DIRS_MASK="/opt/oracle-jdk-bin-1.7.0.60"
-SEARCH_DIRS_MASK="/opt/oracle-jre-bin-1.7.0.55"
+SEARCH_DIRS_MASK="/opt/oracle-jre-bin-1.7.0.60"
+++ /dev/null
-# Define which port to use if one isn't specified - you should only have
-# one of these lines!
-# This is the default port to be used - others will be detected
-ieee1284 parport0
-
-
-# Define the location of our pixel weight file, can begin with ~/ if needed.
-# You can have as many of these as you like - lines with ports that don't exist
-# will be ignored.
-#
-# Parameters are:
-# calibrate /path/to/calibration-file port-name
-#
-# The format of port-name is dependant on your OS version.
-#
-# If a file isn't speficied, the default name will be
-# ~/.sane/canon_pp-calibration-[port-name]
-
-calibrate ~/.sane/canon_pp-calibration-pp0 parport0
-
-# calibrate /etc/sane/my_calibration parport1
-
-
-# Enable the next line if you're having trouble with ECP mode such as I/O
-# errors. Nibble mode is slower, but more reliable.
-
-#force_nibble
-
-# Set a default initialisation mode for each port. Valid modes are:
-# AUTO (attempts to automatically detect by trying both methods)
-# FB620P (10101010 style.. also works for FB320P)
-# FB630P (11001100 style.. also works for FB330P, N340P, N640P)
-
-init_mode AUTO parport0
-# init_mode FB620P parport0
-# init_mode FB630P parport0
+++ /dev/null
-#hpsj5s.conf
-#parport0
\ No newline at end of file
+++ /dev/null
-# For documentation see sane-mustek_pp(5)
-
-# Global options:
-# ===============
-#
-# option no_epp
-#
-# Disable parallel port mode EPP: works around a known bug in
-# the Linux parport code. Enable this option, if the backend
-# hangs when trying to access the parallel port in EPP mode:
-#
-# # SANE_DEBUG_SANEI_PA4S2=128 scanimage -L
-# ...
-# hangs here -> [sanei_pa4s2] sanei_pa4s2_readbyte: read in EPP mode
-#
-# Scanner definition template:
-# ============================
-#
-# scanner <name> <port> <type>
-# option <optname> <optval>?
-# option <optname> <optval>?
-# ...
-#
-# where:
-#
-# <name> is an arbitrary name for the scanner (eg. Mustek-1200CP)
-#
-# <port> is the parallel port to which the scanner is connected
-# Possible values are 0x378, 0x278, and 0x3bc. For Linux, the
-# mapping between ports an numbers is different for kernel
-# version 2.2 and 2.4. Port 0x378 corresponds to lp0 on 2.4 kernel.
-# If you are using libieee1284, you can as well use parport0, etc..
-# If you use the magic value * the port is probed.
-#
-# <type> is an identification of the scanner type.
-# Possible values are:
-# - cis600 (for Mustek 600CP & OEM versions),
-# - cis1200 (for Mustek 1200CP & OEM versions),
-# - cis1200+ (for Mustek 1200CP+ & OEM versions),
-# - ccd300 (for Mustek 600 III EPP & OEM versions)
-# - ... more types will be added in the future
-#
-# <optname> is a name of an option, and <optval> an optional value
-# for the option.
-# Currently available options for *CIS* type scanners are:
-# - top_adjust <value>:
-# Vertical adjustment of origin, in millimeter.
-# Values between -5.0 and +5.0 mm are possible
-# (floating point).
-# Default: 0.0
-# - slow_skip:
-# Boolean option. Disables fast skipping to the start
-# of the scan region. May be necessary in case fast
-# skipping results in inaccuracies.
-# Default: fast skipping enabled
-# - bw <value>:
-# Black/white discrimination value for lineart scans.
-# Pixel values below that value are considered black,
-# others are considered white. Range: 0-255.
-# Default: 127
-#
-# Currently available options for *CCD* type scanners are:
-# - wait_bank <value>
-# usecs to wait for a bank change. Positive integer
-# values are possible. You shouldn't mess with this
-# parameter.
-# Default: 700
-# - bw <value>
-# Black/white discrimination value for lineart scans.
-# Pixel values below that value are considered black,
-# others are considered white. Range: 0-255.
-# Default: 127
-# - top <value>
-# Scanlines to skip to the top area. Positive integer
-# values are possible. 47 and 56 are values I know of.
-# Default: 47
-#
-#
-# Example for a LifeTec LT9350 (Mustek 1200CP clone):
-#
-# scanner LT9350 0x378 cis1200
-# option top_adjust 0
-# option bw 127
-#
-# Example for Mustek 6000P
-#
-# scanner 6000P 0x378 ccd300
-# option top 56
-#
-#
-# Uncomment/customize to your needs
-#
-# scanner Mustek-600CP 0x378 cis600
-# scanner Mustek-1200CP 0x378 cis1200
-# scanner Mustek-1200CP+ 0x378 cis1200+
-# scanner Mustek-600-IIIEP 0x378 ccd300
-#
-# auto probing:
-#
-# scanner mustek-cis600 * cis600
-# scanner mustek-cis1200 * cis1200
-# scanner mustek-cis1200+ * cis1200+
-# scanner mustek-ccd300 * ccd300
description[as]=বেটাৰি'ৰ অৱস্থা নিৰীক্ষণৰ সৰঞ্জাম
description[ast]=Utilidá d'estau de la batería
description[az]=Batareya Vəziyyəti Tə'minatı
-description[be]=УÑ\82Ñ\83лка Ñ\81Ñ\82анÑ\83 заÑ\80аду батарэі
+description[be]=УÑ\82Ñ\8bлÑ\96Ñ\82а Ñ\81Ñ\82ану батарэі
description[be@latin]=Pryłada adsočvańnia stanu akumulatara
description[bg]=Инструмент за състоянието на батерията
description[bn]=ব্যাটারি'র অবস্থা নিরীক্ষণের সরঞ্জাম
description[bs]=Alatka za status baterije
description[ca]=Utilitat de l'estat de la bateria
description[ca@valencia]=Utilitat de l'estat de la bateria
+description[cmn]=電池狀態公用程式
description[crh]=Pil Durumu Aracı
description[cs]=Nástroj stavu baterie
description[cy]=Cyfleuster Cyflwr Batri
description[kn]=ಬ್ಯಾಟರಿ ಸ್ಥಿತಿಯ ಸೌಲಭ್ಯ
description[ko]=배터리 상태 유틸리티
description[ku]=Amûra rewşa bataryayê
-description[ky]=Батарея Абалы Индикатору
description[lt]=Baterijos būsenos pagalbinė programa
description[lv]=Baterijas statusa utilīta
description[mai]=बैटरी स्थिति उपयोगिता
description[tr]=Pil Durumu Aracı
description[ug]=باتارېيە ھالەت قورالى
description[uk]=Утиліта індикації стану акумулятора
+description[ur]=بیٹری حالت سہولت
description[vi]=Tiện ích xem trạng thái pin
description[xh]=Isixhobo soBume beBhetri
description[zh_CN]=电池状态工具
file=
description=Battery power low
description[af]=Battery amper pap
+description[am]=የባትሪው ሐይል ዝቅተኛ ነው
description[ar]=طاقة البطارية منخفضة
description[as]=বেটাৰিৰ ক্ষমতা কম
description[ast]=Batería baxa
description[az]=Batareya həcmi alçaqdır
-description[be]=Ð\97аÑ\80ад баÑ\82аÑ\80Ñ\8dÑ\96 нÑ\96зкі
+description[be]=Ð\9cала Ñ\8dнеÑ\80гÑ\96Ñ\96 Ñ\9e баÑ\82аÑ\80Ñ\8dі
description[be@latin]=Akumulatar razradžany
description[bg]=Ниска мощност на батерията
description[bn]=ব্যাটারির ক্ষমতা কম
description[bs]=Baterija skoro prazna
description[ca]=Bateria amb càrrega baixa
description[ca@valencia]=Bateria amb càrrega baixa
+description[cmn]=電池電量過低
description[crh]=Pil gücü zayıf
description[cs]=Téměř vybité baterie
description[cy]=Mae pŵer y batri'n isel
description[kn]=ಕೆಳಮಟ್ಟದಲ್ಲಿರುವ ಬ್ಯಾಟರಿ ವಿದ್ಯುಚ್ಚಕ್ತಿ
description[ko]=배터리 전력이 부족합니다
description[ku]=Hêza bataryayê qels e
-description[ky]=Батарея заряды толук түгөндү
description[lt]=Baterija beveik išsikrovusi
description[lv]=Baterijas enerģija zema
description[mai]=बैटरी पावर कम
description[or]=ବ୍ଯାଟେରୀ ବିଦ୍ଯୁତ କମ ଅଛି
description[pa]=ਬੈਟਰੀ ਪਾਵਰ ਘੱਟ ਹੈ
description[pl]=Akumulator jest na wyczerpaniu
-description[pt]=Bateria fraca
+description[pt]=Energia da bateria em baixo
description[pt_BR]=Bateria fraca
description[ro]=Acumulator pe terminate
description[ru]=Батарея разряжена
description[si]=වියළි කොෂ බලය අවම වී ඇත
description[sk]=Batéria je slabá
-description[sl]=Baterija je skoraj prazna
+description[sl]=Napetost baterije je nizka
description[sq]=Ngarkesë e ulët e baterisë
description[sr]=Батерија слаба
description[sr@latin]=Baterija slaba
description[tr]=Pil gücü zayıf
description[ug]=باتارېيىدە توك ئاز قالدى
description[uk]=Акумулятор розряджений
+description[ur]=بیٹری کی توانائی پست ہے
description[vi]=Pin thấp
description[wa]=Li batreye est flåwe
description[xh]=Amandla ebhetri asezantsi
file=
description=Battery fully re-charged
description[af]=Battery ten volle gelaai
-description[ar]=أُعيد شحن البطارية تماما
+description[ar]=أُعيد شحن البطارية تمامًا
description[as]=বেটাৰি সম্পূৰ্ণৰূপে চাৰ্জ কৰা হৈছে
description[ast]=Batería llena
description[az]=Batareya tamamilə dolduruldu
-description[be]=Батарэя поўнасьцю перазараджана
+description[be]=Батарэя цалкам перанасілкована
description[be@latin]=Akumulatar całkam zaradžany
description[bg]=Батерията е напълно презаредена
description[bn]=ব্যাটারি সম্পূর্ণরূপে চার্জ করা হয়েছে
description[bs]=Baterija je napunjena
description[ca]=La bateria està completament carregada
description[ca@valencia]=La bateria està completament carregada
+description[cmn]=電池電量全滿
description[crh]=Pil tamamen doldu
description[cs]=Baterie jsou plně nabity
description[cy]=Mae'r batri wedi ail-drydanu’n llwyr
description[kn]=ಸಂಪೂರ್ಣವಾಗಿ ಮರು-ಚಾರ್ಜ್ ಆದಂತಹ ಬ್ಯಾಟರಿ
description[ko]=배터리가 완전히 충전되었습니다!
description[ku]=Batarya bi tevahî şarj bû
-description[ky]=Батарея толук заряддалды
description[lt]=Baterija yra pilnai įkrauta.
description[lv]=Baterija pilnīgi uzlādēta
description[mai]=बैटरी पूर्णतः पुनः चार्ज
description[ml]=ബാറ്ററി ചാര്ജ്ജ് നിറഞ്ഞു
description[mn]=Зай дахин бүрэн цэнэглэгдлээ!
description[mr]=बॅटरी पूर्णतः पुनःभारित
-description[ms]=Bateri dicas sepenuhnya
+description[ms]=Bateri dicas-semula sepenuhnya
description[nb]=Batteriet er fullt oppladet
description[ne]=ब्याट्री पूरा रिचार्ज भयो
description[nl]=Accu is volledig opgeladen
description[or]=ବ୍ଯାଟେରୀ ପୂର୍ଣ୍ଣ ଭାବରେ ପୁନଃ-ଚାର୍ଜ ହୋଇଛି
description[pa]=ਬੈਟਰੀ ਪੂਰੀ ਮੁੜ-ਚਾਰਜ ਹੋ ਗਈ ਹੈ
description[pl]=Akumulator jest w pełni naładowany
-description[pt]=Bateria completamente carregada
+description[pt]=Bateria completamente recarregada
description[pt_BR]=A bateria está totalmente recarregada
description[ro]=Acumulator complet reîncărcat
description[ru]=Батарея полностью заряжена
description[si]=වියළි කෝෂය සම්පූර්ණයෙන්ම බලගැන්වී ඇත
description[sk]=Batéria je plne nabitá
-description[sl]=Baterija je znova povsem napolnjena.
+description[sl]=Baterija je znova povsem napolnjena
description[sq]=Bateria e ringarkuar plot
description[sr]=Батерија у потпуности напуњена
description[sr@latin]=Baterija u potpunosti napunjena
description[th]=แบตเตอรี่อัดเต็มแล้ว
description[tr]=Pil tamamen doldu
description[ug]=باتارېيە زەرەتلىنىپ بولدى
-description[uk]=Акумулятор повністю перезаряджено
+description[uk]=Акумулятор повністю заряджено
+description[ur]=بیٹری مکمل طور پر دوبارہ چارج ہوگئی ہے
description[vi]=Pin đã được sạc đầy.
description[wa]=Li batreye est tcherdjeye a make
description[xh]=Ibhetri sele igcwaliswe ngokupheleleyo kwakhona
-# sysstat-10.2.0 configuration file.
+# sysstat-10.2.1 configuration file.
# How long to keep log files (in days).
# If value is greater than 28, then log files are kept in
#ForwardToSyslog=yes
#ForwardToKMsg=no
#ForwardToConsole=no
+#ForwardToWall=yes
#TTYPath=/dev/console
#MaxLevelStore=debug
#MaxLevelSyslog=debug
#MaxLevelKMsg=notice
#MaxLevelConsole=info
+#MaxLevelWall=emerg
#LidSwitchIgnoreInhibited=yes
#IdleAction=ignore
#IdleActionSec=30min
+#RuntimeDirectorySize=10%
+#RemoveIPC=yes
#ShowStatus=yes
#CrashChVT=1
#CPUAffinity=1 2
-#DefaultStandardOutput=journal
-#DefaultStandardError=inherit
#JoinControllers=cpu,cpuacct net_cls,net_prio
#RuntimeWatchdogSec=0
#ShutdownWatchdogSec=10min
#CapabilityBoundingSet=
+#SystemCallArchitectures=
#TimerSlackNSec=
+#DefaultTimerAccuracySec=1min
+#DefaultStandardOutput=journal
+#DefaultStandardError=inherit
+#DefaultTimeoutStartSec=90s
+#DefaultTimeoutStopSec=90s
+#DefaultRestartSec=100ms
+#DefaultStartLimitInterval=10s
+#DefaultStartLimitBurst=5
#DefaultEnvironment=
+#DefaultCPUAccounting=no
+#DefaultBlockIOAccounting=no
+#DefaultMemoryAccounting=no
#DefaultLimitCPU=
#DefaultLimitFSIZE=
#DefaultLimitDATA=
-/usr/lib/systemd/system/getty@.service
\ No newline at end of file
+../../../../usr/lib/systemd/system/getty@.service
\ No newline at end of file
-/usr/lib/systemd/system/remote-fs.target
\ No newline at end of file
+../../../../usr/lib/systemd/system/remote-fs.target
\ No newline at end of file
#LogTarget=console
#LogColor=yes
#LogLocation=no
+#SystemCallArchitectures=
+#TimerSlackNSec=
+#DefaultTimerAccuracySec=1min
#DefaultStandardOutput=inherit
#DefaultStandardError=inherit
+#DefaultTimeoutStartSec=90s
+#DefaultTimeoutStopSec=90s
+#DefaultRestartSec=100ms
+#DefaultStartLimitInterval=10s
+#DefaultStartLimitBurst=5
+#DefaultEnvironment=
+#DefaultLimitCPU=
+#DefaultLimitFSIZE=
+#DefaultLimitDATA=
+#DefaultLimitSTACK=
+#DefaultLimitCORE=
+#DefaultLimitRSS=
+#DefaultLimitNOFILE=
+#DefaultLimitAS=
+#DefaultLimitNPROC=
+#DefaultLimitMEMLOCK=
+#DefaultLimitLOCKS=
+#DefaultLimitSIGPENDING=
+#DefaultLimitMSGQUEUE=
+#DefaultLimitNICE=
+#DefaultLimitRTPRIO=
+#DefaultLimitRTTIME=
X-MATE-Bugzilla-Bugzilla=MATE
X-MATE-Bugzilla-Product=mate-power-manager
X-MATE-Bugzilla-Component=mate-power-manager
-X-MATE-Bugzilla-Version=1.6.3
+X-MATE-Bugzilla-Version=1.8.0
X-MATE-Bugzilla-ExtraInfoScript=mate-power-bugreport.sh
#X-MATE-AutoRestart=true
X-MATE-Bugzilla-Bugzilla=MATE
X-MATE-Bugzilla-Product=mate-screensaver
X-MATE-Bugzilla-Component=general
-X-MATE-Bugzilla-Version=1.6.1
+X-MATE-Bugzilla-Version=1.8.0
[Desktop Entry]
Name=PolicyKit Authentication Agent
-Name[de]=Legitimationsdienst von PolicyKit
+Name[de]=PolicyKit-Legitimationsagent
Name[en_GB]=PolicyKit Authentication Agent
+Name[ru]=Агент аутентификации PolicyKit
Comment=PolicyKit Authentication Agent for the MATE Desktop
+Comment[de]=PolicyKit-Legitimationsagent für die MATE-Arbeitsumgebung
+Comment[en_GB]=PolicyKit Authentication Agent for the MATE Desktop
+Comment[ru]=Агент аутентификации PolicyKit для рабочей среды MATE
Exec=/usr/libexec/polkit-mate-authentication-agent-1
Terminal=false
Type=Application
<!-- Read in overrides and child menus from applications-merged/ -->
<DefaultMergeDirs/>
+ <MergeDir>applications-merged</MergeDir>
<!-- Accessories submenu -->
<Menu>
<!-- Read in overrides and child menus from applications-merged/ -->
<DefaultMergeDirs/>
+ <MergeDir>preferences-merged</MergeDir>
<!-- Add a link to the control center -->
<Include>
</Not>
</And>
</Include>
+ <MergeFile>mate-preferences-categories.menu</MergeFile>
</Menu>
<!-- System Settings -->
-/etc/systemd/user
\ No newline at end of file
+../../systemd/user
\ No newline at end of file
+++ /dev/null
-service cvspserver
-{
- disable = yes
- socket_type = stream
- wait = no
- user = root
- log_type = FILE /var/log/cvspserver
- protocol = tcp
- env = HOME=/var/cvsroot
- log_on_failure += USERID
- port = 2401
- server = /usr/bin/cvs
- server_args = -f --allow-root=/var/cvsroot pserver
-}