[gnome-base/gnome-session] unblacklist llvmpipe, makes GNOME Shell work under virtual machines
This commit is contained in:
@@ -0,0 +1 @@
|
||||
DIST gnome-session-3.6.2.tar.xz 729676 SHA256 2e3a3466eed4136826e150b639c63beb5c93710346dea2e538adfe5e18d701b4 SHA512 3ae043a241695e26bbcfe70cb58263e74bfb62c1859d46828118740e3580df516f17c73d5a348d381ead7886333c71eb9bca2bed6e494f234b8d733a9fd37083 WHIRLPOOL 833cff921461759510fd31cb3d2bf2959d486ccd51971d401f30d85bf93878264e9ebbdba866bb9c3a05aff3a00d0f6d043958407a783dc6f7d9d5d78f62f7ac
|
||||
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Create various XDG directories, and write ~/.config/user-dirs.dirs, etc.
|
||||
# That file is read by glib to get XDG_PICTURES_DIR, etc
|
||||
|
||||
if [ "$DESKTOP_SESSION" = "gnome" ]; then
|
||||
if type xdg-user-dirs-update &>/dev/null; then
|
||||
xdg-user-dirs-update
|
||||
fi
|
||||
fi
|
||||
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Create various XDG directories, and write ~/.config/user-dirs.dirs, etc.
|
||||
# That file is read by glib to get XDG_PICTURES_DIR, etc
|
||||
|
||||
if [ "$DESKTOP_SESSION" = "gnome" -o "$DESKTOP_SESSION" = "cinnamon" ]; then
|
||||
if type xdg-user-dirs-update &>/dev/null; then
|
||||
xdg-user-dirs-update
|
||||
fi
|
||||
fi
|
||||
@@ -0,0 +1,9 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ "$DESKTOP_SESSION" = "gnome" ]; then
|
||||
if [ -z "$XDG_DATA_DIRS" ]; then
|
||||
export XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share/:/usr/share/
|
||||
else
|
||||
export XDG_DATA_DIRS=/usr/share/gnome:"$XDG_DATA_DIRS"
|
||||
fi
|
||||
fi
|
||||
@@ -0,0 +1,9 @@
|
||||
#!/bin/sh
|
||||
|
||||
if [ "$DESKTOP_SESSION" = "gnome" -o "$DESKTOP_SESSION" = "cinnamon" ]; then
|
||||
if [ -z "$XDG_DATA_DIRS" ]; then
|
||||
export XDG_DATA_DIRS=/usr/share/gnome:/usr/local/share/:/usr/share/
|
||||
else
|
||||
export XDG_DATA_DIRS=/usr/share/gnome:"$XDG_DATA_DIRS"
|
||||
fi
|
||||
fi
|
||||
@@ -0,0 +1,109 @@
|
||||
#!/bin/sh
|
||||
#
|
||||
# This file has bitrotted badly. Someone needs to clean this up.
|
||||
#
|
||||
|
||||
if [ -f /etc/xdg/menus/gnome-applications.menu ] ; then
|
||||
export XDG_MENU_PREFIX=gnome-
|
||||
fi
|
||||
|
||||
for errfile in "$HOME/.gnomerc-errors" "${TMPDIR-/tmp}/gnomerc-$USER" "/tmp/gnomerc-$USER"
|
||||
do
|
||||
if ( cp /dev/null "$errfile" 2> /dev/null )
|
||||
then
|
||||
chmod 600 "$errfile"
|
||||
exec > "$errfile" 2>&1
|
||||
break
|
||||
fi
|
||||
done
|
||||
#
|
||||
# Distributors:
|
||||
# You should modify the paths here to fit your distro
|
||||
# If you need to do so, send me (jirka@5z.com) a patch
|
||||
# and I'll try to make the script detect the distro stuff
|
||||
#
|
||||
|
||||
userresources=$HOME/.Xresources
|
||||
usermodmap=$HOME/.Xmodmap
|
||||
userxkbmap=$HOME/.Xkbmap
|
||||
|
||||
sysresources=/etc/X11/Xresources
|
||||
sysmodmap=/etc/X11/Xmodmap
|
||||
sysxkbmap=/etc/X11/Xkbmap
|
||||
|
||||
rh6sysresources=/etc/X11/xinit/Xresources
|
||||
rh6sysmodmap=/etc/X11/xinit/Xmodmap
|
||||
|
||||
if [ -x "$HOME/.gnomerc" ]; then
|
||||
command="$HOME/.gnomerc"
|
||||
elif [ -x /etc/X11/gdm/gnomerc ]; then
|
||||
command="/etc/X11/gdm/gnomerc"
|
||||
else
|
||||
# as fallback in case the config is screwed
|
||||
command=`which gnome-session`
|
||||
fi
|
||||
|
||||
# merge in defaults
|
||||
if [ -f "$rh6sysresources" ]; then
|
||||
xrdb -merge "$rh6sysresources"
|
||||
fi
|
||||
|
||||
if [ -f "$sysresources" ]; then
|
||||
xrdb -merge "$sysresources"
|
||||
fi
|
||||
|
||||
if [ -f "$userresources" ]; then
|
||||
xrdb -merge "$userresources"
|
||||
fi
|
||||
|
||||
# merge in keymaps
|
||||
if [ -f "$sysxkbmap" ]; then
|
||||
setxkbmap `cat "$sysxkbmap"`
|
||||
XKB_IN_USE=yes
|
||||
fi
|
||||
|
||||
if [ -f "$userxkbmap" ]; then
|
||||
setxkbmap `cat "$userxkbmap"`
|
||||
XKB_IN_USE=yes
|
||||
fi
|
||||
|
||||
#
|
||||
# Eeek, this seems like too much magic here
|
||||
#
|
||||
if [ -z "$XKB_IN_USE" ] && [ ! -L /etc/X11/X ]; then
|
||||
if grep '^exec.*/Xsun' /etc/X11/X > /dev/null 2>&1 && [ -f /etc/X11/XF86Config ]; then
|
||||
xkbsymbols=`sed -n -e 's/^[ ]*XkbSymbols[ ]*"\(.*\)".*$/\1/p' /etc/X11/XF86Config`
|
||||
if [ -n "$xkbsymbols" ]; then
|
||||
setxkbmap -symbols "$xkbsymbols"
|
||||
XKB_IN_USE=yes
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
|
||||
# xkb and xmodmap don't play nice together
|
||||
if [ -z "$XKB_IN_USE" ]; then
|
||||
if [ -f "$rh6sysmodmap" ]; then
|
||||
xmodmap "$rh6sysmodmap"
|
||||
fi
|
||||
|
||||
if [ -f "$sysmodmap" ]; then
|
||||
xmodmap "$sysmodmap"
|
||||
fi
|
||||
|
||||
if [ -f "$usermodmap" ]; then
|
||||
xmodmap "$usermodmap"
|
||||
fi
|
||||
fi
|
||||
|
||||
unset XKB_IN_USE
|
||||
|
||||
# run all system xinitrc shell scripts.
|
||||
if [ -d /etc/X11/xinit/xinitrc.d ]; then
|
||||
for i in /etc/X11/xinit/xinitrc.d/* ; do
|
||||
if [ -x "$i" ]; then
|
||||
. "$i"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
|
||||
exec $command
|
||||
@@ -0,0 +1,334 @@
|
||||
[Default Applications]
|
||||
application/rtf=abiword.desktop;libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/x-abiword=abiword.desktop;
|
||||
text/abiword=abiword.desktop;
|
||||
text/richtext=abiword.desktop;libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
text/rtf=abiword.desktop;libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
text/x-abiword=abiword.desktop;
|
||||
text/x-xml-abiword=abiword.desktop;
|
||||
x-content/blank-bd=brasero-nautilus.desktop;
|
||||
x-content/blank-dvd=brasero-nautilus.desktop;
|
||||
x-content/blank-cd=brasero-nautilus.desktop;
|
||||
x-content/blank-hddvd=brasero-nautilus.desktop;
|
||||
application/x-dia-diagram=dia.desktop;
|
||||
image/bmp=eog.desktop;
|
||||
image/gif=eog.desktop;
|
||||
image/jpeg=eog.desktop;
|
||||
image/jpg=eog.desktop;
|
||||
image/pjpeg=eog.desktop;
|
||||
image/png=eog.desktop;
|
||||
image/svg+xml=eog.desktop;
|
||||
image/svg+xml-compressed=eog.desktop;
|
||||
image/x-bmp=eog.desktop;
|
||||
image/x-gray=eog.desktop;
|
||||
image/x-icb=eog.desktop;
|
||||
image/x-ico=eog.desktop;
|
||||
image/x-pcx=eog.desktop;
|
||||
image/x-png=eog.desktop;
|
||||
image/x-portable-anymap=eog.desktop;
|
||||
image/x-portable-bitmap=eog.desktop;
|
||||
image/x-portable-graymap=eog.desktop;
|
||||
image/x-portable-pixmap=eog.desktop;
|
||||
image/x-xbitmap=eog.desktop;
|
||||
image/x-xpixmap=eog.desktop;
|
||||
image/vnd.wap.wbmp=eog.desktop;
|
||||
image/g3fax=gimp.desktop;
|
||||
image/x-compressed-xcf=gimp.desktop;
|
||||
image/x-fits=gimp.desktop;
|
||||
image/x-icon=gimp.desktop;
|
||||
image/x-psd=gimp.desktop;
|
||||
image/x-sgi=gimp.desktop;
|
||||
image/x-sun-raster=gimp.desktop;
|
||||
image/x-tga=gimp.desktop;
|
||||
image/x-xcf=gimp.desktop;
|
||||
image/x-xwindowdump=gimp.desktop;
|
||||
application/xhtml+xml=firefox.desktop;chromium-browser-chromium.desktop;epiphany.desktop;
|
||||
text/html=firefox.desktop;chromium-browser-chromium.desktop;epiphany.desktop;
|
||||
application/pdf=evince.desktop;
|
||||
application/x-bzpdf=evince.desktop;
|
||||
application/x-gzpdf=evince.desktop;
|
||||
application/postscript=evince.desktop;
|
||||
application/x-bzpostscript=evince.desktop;
|
||||
application/x-gzpostscript=evince.desktop;
|
||||
image/x-eps=evince.desktop;
|
||||
image/x-bzeps=evince.desktop;
|
||||
image/x-gzeps=evince.desktop;
|
||||
application/x-dvi=evince.desktop;
|
||||
application/x-bzdvi=evince.desktop;
|
||||
application/x-gzdvi=evince.desktop;
|
||||
image/vnd.djvu=evince.desktop;
|
||||
image/tiff=evince.desktop;
|
||||
application/x-cbr=evince.desktop;
|
||||
application/x-cbz=evince.desktop;
|
||||
application/x-cb7=evince.desktop;
|
||||
application/x-7z-compressed=file-roller.desktop;
|
||||
application/x-7z-compressed-tar=file-roller.desktop;
|
||||
application/x-ace=file-roller.desktop;
|
||||
application/x-alz=file-roller.desktop;
|
||||
application/x-ar=file-roller.desktop;
|
||||
application/x-arj=file-roller.desktop;
|
||||
application/x-bzip=file-roller.desktop;
|
||||
application/x-bzip-compressed-tar=file-roller.desktop;
|
||||
application/x-bzip1=file-roller.desktop;
|
||||
application/x-bzip1-compressed-tar=file-roller.desktop;
|
||||
application/x-cabinet=file-roller.desktop;
|
||||
application/x-cd-image=file-roller.desktop;
|
||||
application/x-compress=file-roller.desktop;
|
||||
application/x-compressed-tar=file-roller.desktop;
|
||||
application/x-cpio=file-roller.desktop;
|
||||
application/x-deb=file-roller.desktop;
|
||||
application/x-ear=file-roller.desktop;
|
||||
application/x-gtar=file-roller.desktop;
|
||||
application/x-gzip=file-roller.desktop;
|
||||
application/x-java-archive=file-roller.desktop;
|
||||
application/x-lha=file-roller.desktop;
|
||||
application/x-lhz=file-roller.desktop;
|
||||
application/x-lzip=file-roller.desktop;
|
||||
application/x-lzip-compressed-tar=file-roller.desktop;
|
||||
application/x-lzma=file-roller.desktop;
|
||||
application/x-lzma-compressed-tar=file-roller.desktop;
|
||||
application/x-lzop=file-roller.desktop;
|
||||
application/x-lzop-compressed-tar=file-roller.desktop;
|
||||
application/x-rar=file-roller.desktop;
|
||||
application/x-rar-compressed=file-roller.desktop;
|
||||
application/x-rpm=file-roller.desktop;
|
||||
application/x-rzip=file-roller.desktop;
|
||||
application/x-tar=file-roller.desktop;
|
||||
application/x-tarz=file-roller.desktop;
|
||||
application/x-stuffit=file-roller.desktop;
|
||||
application/x-war=file-roller.desktop;
|
||||
application/x-xz=file-roller.desktop;
|
||||
application/x-xz-compressed-tar=file-roller.desktop;
|
||||
application/x-zip=file-roller.desktop;
|
||||
application/x-zip-compressed=file-roller.desktop;
|
||||
application/x-zoo=file-roller.desktop;
|
||||
application/zip=file-roller.desktop;
|
||||
multipart/x-zip=file-roller.desktop;
|
||||
text/plain=gedit.desktop;
|
||||
text/css=gedit.desktop;
|
||||
text/javascript=gedit.desktop;
|
||||
text/mathml=gedit.desktop;
|
||||
text/x-csrc=gedit.desktop;
|
||||
text/x-chdr=gedit.desktop;
|
||||
text/x-dtd=gedit.desktop;
|
||||
text/x-java=gedit.desktop;
|
||||
text/x-javascript=gedit.desktop;
|
||||
text/x-patch=gedit.desktop;
|
||||
text/x-perl=gedit.destkop
|
||||
text/x-php=gedit.destkop
|
||||
text/x-python=gedit.destkop
|
||||
text/x-sql=gedit.desktop;
|
||||
text/xml=gedit.desktop;
|
||||
application/javascript=gedit.destkop
|
||||
application/x-cgi=gedit.desktop;
|
||||
application/x-javascript=gedit.desktop;
|
||||
application/x-perl=gedit.desktop;
|
||||
application/x-php=gedit.desktop;
|
||||
application/x-python=gedit.desktop;
|
||||
application/xml=gedit.desktop;
|
||||
application/xml-dtd=gedit.desktop;
|
||||
application/x-font-ttf=gnome-font-viewer.desktop;
|
||||
application/x-font-pcf=gnome-font-viewer.desktop;
|
||||
application/x-font-type1=gnome-font-viewer.desktop;
|
||||
application/x-font-otf=gnome-font-viewer.desktop;
|
||||
application/csv=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/excel=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/msexcel=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/tab-separated-values=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.lotus-1-2-3=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.ms-excel=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/x-123=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/x-applix-spreadsheet=gnumeric.desktop;
|
||||
application/x-dbase=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/x-dbf=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/x-dos_ms_excel=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/x-excel=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/x-gnumeric=gnumeric.desktop;
|
||||
application/x-mps=gnumeric.desktop;
|
||||
application/x-ms-excel=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/x-msexcel=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/x-oleo=gnumeric.desktop;
|
||||
application/x-planperfect=gnumeric.desktop;
|
||||
application/x-quattropro=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/x-sc=gnumeric.desktop;
|
||||
application/x-sylk=gnumeric.desktop;
|
||||
application/x-xbase=gnumeric.desktop;
|
||||
application/x-xls=gnumeric.desktop;
|
||||
application/xls=gnumeric.desktop;
|
||||
text/comma-separated-values=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
text/csv=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
text/spreadsheet=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
text/tab-separated-values=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
text/x-comma-separated-values=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
text/x-csv=gnumeric.desktop;libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
zz-application/zz-winassoc-xls=gnumeric.desktop;
|
||||
x-content/software=nautilus-autorun-software.desktop;
|
||||
x-content/unix-software=nautilus-autorun-software.desktop;
|
||||
x-directory/gnome-default-handler=nautilus-folder-handler.desktop;nautilus.desktop;
|
||||
x-directory/normal=nautilus-folder-handler.desktop;nautilus.desktop;
|
||||
inode/directory=nautilus-folder-handler.desktop;nautilus.desktop;
|
||||
application/x-gnome-saved-search=nautilus-folder-handler.desktop;nautilus.desktop;
|
||||
application/vnd.oasis.opendocument.spreadsheet=libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.oasis.opendocument.spreadsheet-template=libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.sun.xml.calc=libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.sun.xml.calc.template=libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.stardivision.calc=libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.stardivision.chart=libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.openxmlformats-officedocument.spreadsheetml.sheet=libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.ms-excel.sheet.macroenabled.12=libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.openxmlformats-officedocument.spreadsheetml.template=libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.ms-excel.template.macroenabled.12=libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.ms-excel.sheet.binary.macroenabled.12=libreoffice-calc.desktop;openoffice.org-calc.desktop;
|
||||
application/vnd.oasis.opendocument.graphics=libreoffice-draw.desktop;openoffice.org-draw.desktop;
|
||||
application/vnd.oasis.opendocument.graphics-template=libreoffice-draw.desktop;openoffice.org-draw.desktop;
|
||||
application/vnd.sun.xml.draw=libreoffice-draw.desktop;openoffice.org-draw.desktop;
|
||||
application/vnd.sun.xml.draw.template=libreoffice-draw.desktop;openoffice.org-draw.desktop;
|
||||
application/vnd.stardivision.draw=libreoffice-draw.desktop;openoffice.org-draw.desktop;
|
||||
application/vnd.oasis.opendocument.presentation=libreoffice-impress.desktop;openoffice.org-impress.desktop;
|
||||
application/vnd.oasis.opendocument.presentation-template=libreoffice-impress.desktop;openoffice.org-impress.desktop;
|
||||
application/vnd.sun.xml.impress=libreoffice-impress.desktop;openoffice.org-impress.desktop;
|
||||
application/vnd.sun.xml.impress.template=libreoffice-impress.desktop;openoffice.org-impress.desktop;
|
||||
application/vnd.stardivision.impress=libreoffice-impress.desktop;openoffice.org-impress.desktop;
|
||||
application/mspowerpoint=libreoffice-impress.desktop;openoffice.org-impress.desktop;
|
||||
application/vnd.ms-powerpoint=libreoffice-impress.desktop;openoffice.org-impress.desktop;
|
||||
application/vnd.openxmlformats-officedocument.presentationml.presentation=libreoffice-impress.desktop;openoffice.org-impress.desktop;
|
||||
application/vnd.ms-powerpoint.presentation.macroenabled.12=libreoffice-impress.desktop;openoffice.org-impress.desktop;
|
||||
application/vnd.openxmlformats-officedocument.presentationml.template=libreoffice-impress.desktop;openoffice.org-impress.desktop;
|
||||
application/vnd.ms-powerpoint.template.macroenabled.12=libreoffice-impress.desktop;openoffice.org-impress.desktop;
|
||||
application/vnd.oasis.opendocument.formula=libreoffice-math.desktop;openoffice.org-math.desktop;
|
||||
application/vnd.sun.xml.math=libreoffice-math.desktop;openoffice.org-math.desktop;
|
||||
application/vnd.stardivision.math=libreoffice-math.desktop;openoffice.org-math.desktop;
|
||||
application/vnd.oasis.opendocument.text=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.oasis.opendocument.text-template=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.oasis.opendocument.text-web=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.oasis.opendocument.text-master=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.sun.xml.writer=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.sun.xml.writer.template=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.sun.xml.writer.global=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.stardivision.writer=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/msword=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.ms-word=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/x-doc=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.wordperfect=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/wordperfect=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.openxmlformats-officedocument.wordprocessingml.document=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.ms-word.document.macroenabled.12=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.openxmlformats-officedocument.wordprocessingml.template=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
application/vnd.ms-word.template.macroenabled.12=libreoffice-writer.desktop;openoffice.org-writer.desktop;
|
||||
x-content/audio-player=rhythmbox.desktop;
|
||||
x-content/audio-cdda=sound-juicer.desktop;
|
||||
application/x-shockwave-flash=swfdec-player.desktop;firefox.desktop;chromium-browser-chromium.desktop;
|
||||
application/futuresplash=swfdec-player.desktop;firefox.desktop;chromium-browser-chromium.desktop;
|
||||
application/mxf=totem.desktop;
|
||||
application/ogg=totem.desktop;
|
||||
application/ram=totem.desktop;
|
||||
application/sdp=totem.desktop;
|
||||
application/smil=totem.desktop;
|
||||
application/smil+xml=totem.desktop;
|
||||
application/vnd.ms-wpl=totem.desktop;
|
||||
application/vnd.rn-realmedia=totem.desktop;
|
||||
application/x-extension-m4a=totem.desktop;
|
||||
application/x-extension-mp4=totem.desktop;
|
||||
application/x-flac=totem.desktop;
|
||||
application/x-flash-video=totem.desktop;
|
||||
application/x-matroska=totem.desktop;
|
||||
application/x-netshow-channel=totem.desktop;
|
||||
application/x-ogg=totem.desktop;
|
||||
application/x-quicktime-media-link=totem.desktop;
|
||||
application/x-quicktimeplayer=totem.desktop;
|
||||
application/x-shorten=totem.desktop;
|
||||
application/x-smil=totem.desktop;
|
||||
application/xspf+xml=totem.desktop;
|
||||
audio/3gpp=totem.desktop;
|
||||
audio/ac3=totem.desktop;
|
||||
audio/AMR=totem.desktop;
|
||||
audio/AMR-WB=totem.desktop;
|
||||
audio/basic=totem.desktop;
|
||||
audio/midi=totem.desktop;
|
||||
audio/mp4=totem.desktop;
|
||||
audio/mpeg=totem.desktop;
|
||||
audio/mpegurl=totem.desktop;
|
||||
audio/ogg=totem.desktop;
|
||||
audio/prs.sid=totem.desktop;
|
||||
audio/vnd.rn-realaudio=totem.desktop;
|
||||
audio/x-ape=totem.desktop;
|
||||
audio/x-flac=totem.desktop;
|
||||
audio/x-gsm=totem.desktop;
|
||||
audio/x-it=totem.desktop;
|
||||
audio/x-m4a=totem.desktop;
|
||||
audio/x-matroska=totem.desktop;
|
||||
audio/x-mod=totem.desktop;
|
||||
audio/x-mp3=totem.desktop;
|
||||
audio/x-mpeg=totem.desktop;
|
||||
audio/x-mpegurl=totem.desktop;
|
||||
audio/x-ms-asf=totem.desktop;
|
||||
audio/x-ms-asx=totem.desktop;
|
||||
audio/x-ms-wax=totem.desktop;
|
||||
audio/x-ms-wma=totem.desktop;
|
||||
audio/x-musepack=totem.desktop;
|
||||
audio/x-pn-aiff=totem.desktop;
|
||||
audio/x-pn-au=totem.desktop;
|
||||
audio/x-pn-realaudio=totem.desktop;
|
||||
audio/x-pn-realaudio-plugin=totem.desktop;
|
||||
audio/x-pn-wav=totem.desktop;
|
||||
audio/x-pn-windows-acm=totem.desktop;
|
||||
audio/x-realaudio=totem.desktop;
|
||||
audio/x-real-audio=totem.desktop;
|
||||
audio/x-sbc=totem.desktop;
|
||||
audio/x-scpls=totem.desktop;
|
||||
audio/x-speex=totem.desktop;
|
||||
audio/x-tta=totem.desktop;
|
||||
audio/x-vorbis=totem.desktop;
|
||||
audio/x-vorbis+ogg=totem.desktop;
|
||||
audio/x-wav=totem.desktop;
|
||||
audio/x-wavpack=totem.desktop;
|
||||
audio/x-xm=totem.desktop;
|
||||
image/vnd.rn-realpix=totem.desktop;
|
||||
image/x-pict=totem.desktop;
|
||||
misc/ultravox=totem.desktop;
|
||||
text/google-video-pointer=totem.desktop;
|
||||
text/x-google-video-pointer=totem.desktop;
|
||||
video/3gpp=totem.desktop;
|
||||
video/dv=totem.desktop;
|
||||
video/fli=totem.desktop;
|
||||
video/flv=totem.desktop;
|
||||
video/mp2t=totem.desktop;
|
||||
video/mp4=totem.desktop;
|
||||
video/mp4v-es=totem.desktop;
|
||||
video/mpeg=totem.desktop;
|
||||
video/msvideo=totem.desktop;
|
||||
video/ogg=totem.desktop;
|
||||
video/quicktime=totem.desktop;
|
||||
video/vivo=totem.desktop;
|
||||
video/vnd.divx=totem.desktop;
|
||||
video/vnd.rn-realvideo=totem.desktop;
|
||||
video/vnd.vivo=totem.desktop;
|
||||
video/webm=totem.desktop;
|
||||
video/x-anim=totem.desktop;
|
||||
video/x-avi=totem.desktop;
|
||||
video/x-flc=totem.desktop;
|
||||
video/x-fli=totem.desktop;
|
||||
video/x-flic=totem.desktop;
|
||||
video/x-flv=totem.desktop;
|
||||
video/x-m4v=totem.desktop;
|
||||
video/x-matroska=totem.desktop;
|
||||
video/x-mpeg=totem.desktop;
|
||||
video/x-ms-asf=totem.desktop;
|
||||
video/x-ms-asx=totem.desktop;
|
||||
video/x-msvideo=totem.desktop;
|
||||
video/x-ms-wm=totem.desktop;
|
||||
video/x-ms-wmv=totem.desktop;
|
||||
video/x-ms-wmx=totem.desktop;
|
||||
video/x-ms-wvx=totem.desktop;
|
||||
video/x-nsv=totem.desktop;
|
||||
video/x-ogm+ogg=totem.desktop;
|
||||
video/x-theora+ogg=totem.desktop;
|
||||
video/x-totem-stream=totem.desktop;
|
||||
x-content/video-dvd=totem.desktop;
|
||||
x-content/video-vcd=totem.desktop;
|
||||
x-content/video-svcd=totem.desktop;
|
||||
x-scheme-handler/ghelp=yelp.desktop;
|
||||
x-scheme-handler/help=yelp.desktop;
|
||||
x-scheme-handler/http=firefox.desktop;chromium-browser-chromium.desktop;epiphany.desktop;
|
||||
x-scheme-handler/https=firefox.desktop;chromium-browser-chromium.desktop;epiphany.desktop;
|
||||
x-scheme-handler/mailto=evolution.desktop;
|
||||
@@ -0,0 +1,45 @@
|
||||
From b27f8c8b062e42aa89a7383fefba1833a6f63c4c Mon Sep 17 00:00:00 2001
|
||||
From: Martin Pitt <martinpitt@gnome.org>
|
||||
Date: Tue, 13 Nov 2012 11:02:35 +0100
|
||||
Subject: [PATCH] GsmConsoleKit: Properly initialize upower client
|
||||
|
||||
Move UPower client initialization from gsm_consolekit_on_name_owner_changed()
|
||||
(which is not actually called for UPower usually) into
|
||||
gsm_consolekit_ensure_ck_connection().
|
||||
|
||||
This makes the UPower calls actually work, otherwise they fail on trying to
|
||||
pass a NULL client.
|
||||
|
||||
https://bugzilla.gnome.org/show_bug.cgi?id=688229
|
||||
---
|
||||
gnome-session/gsm-consolekit.c | 5 +++--
|
||||
1 file changed, 3 insertions(+), 2 deletions(-)
|
||||
|
||||
diff --git a/gnome-session/gsm-consolekit.c b/gnome-session/gsm-consolekit.c
|
||||
index 4c0eca5..0c58f37 100644
|
||||
--- a/gnome-session/gsm-consolekit.c
|
||||
+++ b/gnome-session/gsm-consolekit.c
|
||||
@@ -182,6 +182,9 @@ gsm_consolekit_ensure_ck_connection (GsmConsolekit *manager,
|
||||
}
|
||||
}
|
||||
|
||||
+ g_clear_object (&manager->priv->up_client);
|
||||
+ manager->priv->up_client = up_client_new ();
|
||||
+
|
||||
is_connected = TRUE;
|
||||
|
||||
out:
|
||||
@@ -219,10 +222,8 @@ gsm_consolekit_on_name_owner_changed (DBusGProxy *bus_proxy,
|
||||
}
|
||||
|
||||
g_clear_object (&manager->priv->ck_proxy);
|
||||
- g_clear_object (&manager->priv->up_client);
|
||||
|
||||
gsm_consolekit_ensure_ck_connection (manager, NULL);
|
||||
- manager->priv->up_client = up_client_new ();
|
||||
|
||||
}
|
||||
|
||||
--
|
||||
1.8.1.1
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
Index: gnome-session-3.4.2.1/data/hardware-compatibility
|
||||
===================================================================
|
||||
--- gnome-session-3.4.2.1.orig/data/hardware-compatibility
|
||||
+++ gnome-session-3.4.2.1/data/hardware-compatibility
|
||||
@@ -24,4 +24,4 @@
|
||||
|
||||
# Gallium has softpipe and llvmpipe
|
||||
-softpipe
|
||||
--llvmpipe
|
||||
+#-llvmpipe
|
||||
@@ -0,0 +1,120 @@
|
||||
# Copyright 1999-2013 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-session/gnome-session-3.6.2-r2.ebuild,v 1.1 2013/02/03 00:39:14 tetromino Exp $
|
||||
|
||||
EAPI="5"
|
||||
GCONF_DEBUG="yes"
|
||||
|
||||
inherit gnome2
|
||||
|
||||
DESCRIPTION="Gnome session manager"
|
||||
HOMEPAGE="http://www.gnome.org/"
|
||||
|
||||
LICENSE="GPL-2 LGPL-2 FDL-1.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~x86-solaris"
|
||||
IUSE="doc elibc_FreeBSD gconf ipv6 systemd"
|
||||
|
||||
# x11-misc/xdg-user-dirs{,-gtk} are needed to create the various XDG_*_DIRs, and
|
||||
# create .config/user-dirs.dirs which is read by glib to get G_USER_DIRECTORY_*
|
||||
# xdg-user-dirs-update is run during login (see 10-user-dirs-update-gnome below).
|
||||
# gdk-pixbuf used in the inhibit dialog
|
||||
COMMON_DEPEND="
|
||||
>=dev-libs/glib-2.33.4:2
|
||||
x11-libs/gdk-pixbuf:2
|
||||
>=x11-libs/gtk+-2.90.7:3
|
||||
>=dev-libs/json-glib-0.10
|
||||
>=dev-libs/dbus-glib-0.76
|
||||
>=sys-power/upower-0.9.0
|
||||
elibc_FreeBSD? ( dev-libs/libexecinfo )
|
||||
|
||||
virtual/opengl
|
||||
x11-libs/libSM
|
||||
x11-libs/libICE
|
||||
x11-libs/libXau
|
||||
x11-libs/libX11
|
||||
x11-libs/libXcomposite
|
||||
x11-libs/libXext
|
||||
x11-libs/libXrender
|
||||
x11-libs/libXtst
|
||||
x11-misc/xdg-user-dirs
|
||||
x11-misc/xdg-user-dirs-gtk
|
||||
x11-apps/xdpyinfo
|
||||
|
||||
gconf? ( >=gnome-base/gconf-2:2 )
|
||||
"
|
||||
# Pure-runtime deps from the session files should *NOT* be added here
|
||||
# Otherwise, things like gdm pull in gnome-shell
|
||||
# gnome-themes-standard is needed for the failwhale dialog themeing
|
||||
# sys-apps/dbus[X] is needed for session management
|
||||
RDEPEND="${COMMON_DEPEND}
|
||||
gnome-base/gnome-settings-daemon
|
||||
>=gnome-base/gsettings-desktop-schemas-0.1.7
|
||||
>=x11-themes/gnome-themes-standard-2.91.92
|
||||
sys-apps/dbus[X]
|
||||
systemd? ( >=sys-apps/systemd-183 )
|
||||
!systemd? ( sys-auth/consolekit )
|
||||
"
|
||||
DEPEND="${COMMON_DEPEND}
|
||||
>=dev-lang/perl-5
|
||||
>=sys-devel/gettext-0.10.40
|
||||
>=dev-util/intltool-0.40.6
|
||||
x11-libs/pango[X]
|
||||
virtual/pkgconfig
|
||||
!<gnome-base/gdm-2.20.4
|
||||
doc? (
|
||||
app-text/xmlto
|
||||
dev-libs/libxslt )
|
||||
"
|
||||
# gnome-common needed for eautoreconf
|
||||
# gnome-base/gdm does not provide gnome.desktop anymore
|
||||
|
||||
src_prepare() {
|
||||
# upower-client problems, bug #450150; fixed in 3.6.3
|
||||
epatch "${FILESDIR}/${P}-upower.patch"
|
||||
|
||||
# Sabayon: unblacklist llvmpipe makes Virtual Machines happy
|
||||
epatch "${FILESDIR}/${PN}-unblacklist-llvmpipe-vbox-happy.patch"
|
||||
|
||||
# Silence errors due to weird checks for libX11
|
||||
sed -e 's/\(PANGO_PACKAGES="\)pangox/\1/' -i configure.ac configure || die
|
||||
gnome2_src_prepare
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
gnome2_src_configure \
|
||||
--disable-deprecation-flags \
|
||||
--docdir="${EPREFIX}/usr/share/doc/${PF}" \
|
||||
$(use_enable doc docbook-docs) \
|
||||
$(use_enable gconf) \
|
||||
$(use_enable ipv6) \
|
||||
$(use_enable systemd)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
gnome2_src_install
|
||||
|
||||
dodir /etc/X11/Sessions
|
||||
exeinto /etc/X11/Sessions
|
||||
doexe "${FILESDIR}/Gnome"
|
||||
|
||||
dodir /usr/share/gnome/applications/
|
||||
insinto /usr/share/gnome/applications/
|
||||
newins "${FILESDIR}/defaults.list-r1" defaults.list
|
||||
|
||||
dodir /etc/X11/xinit/xinitrc.d/
|
||||
exeinto /etc/X11/xinit/xinitrc.d/
|
||||
newexe "${FILESDIR}/15-xdg-data-gnome-r1" 15-xdg-data-gnome
|
||||
|
||||
# This should be done here as discussed in bug #270852
|
||||
newexe "${FILESDIR}/10-user-dirs-update-gnome-r1" 10-user-dirs-update-gnome
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
gnome2_pkg_postinst
|
||||
|
||||
if ! has_version gnome-base/gdm && ! has_version kde-base/kdm; then
|
||||
ewarn "If you use a custom .xinitrc for your X session,"
|
||||
ewarn "make sure that the commands in the xinitrc.d scripts are run."
|
||||
fi
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<herd>gnome</herd>
|
||||
<use>
|
||||
<flag name="gconf">Optional support for <pkg>gnome-base/gconf</pkg>
|
||||
configuration storage system</flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
Reference in New Issue
Block a user