forked from pool/gnome-desktop
This commit is contained in:
commit
1351da1255
23
.gitattributes
vendored
Normal file
23
.gitattributes
vendored
Normal file
@ -0,0 +1,23 @@
|
||||
## Default LFS
|
||||
*.7z filter=lfs diff=lfs merge=lfs -text
|
||||
*.bsp filter=lfs diff=lfs merge=lfs -text
|
||||
*.bz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.gem filter=lfs diff=lfs merge=lfs -text
|
||||
*.gz filter=lfs diff=lfs merge=lfs -text
|
||||
*.jar filter=lfs diff=lfs merge=lfs -text
|
||||
*.lz filter=lfs diff=lfs merge=lfs -text
|
||||
*.lzma filter=lfs diff=lfs merge=lfs -text
|
||||
*.obscpio filter=lfs diff=lfs merge=lfs -text
|
||||
*.oxt filter=lfs diff=lfs merge=lfs -text
|
||||
*.pdf filter=lfs diff=lfs merge=lfs -text
|
||||
*.png filter=lfs diff=lfs merge=lfs -text
|
||||
*.rpm filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz filter=lfs diff=lfs merge=lfs -text
|
||||
*.tbz2 filter=lfs diff=lfs merge=lfs -text
|
||||
*.tgz filter=lfs diff=lfs merge=lfs -text
|
||||
*.ttf filter=lfs diff=lfs merge=lfs -text
|
||||
*.txz filter=lfs diff=lfs merge=lfs -text
|
||||
*.whl filter=lfs diff=lfs merge=lfs -text
|
||||
*.xz filter=lfs diff=lfs merge=lfs -text
|
||||
*.zip filter=lfs diff=lfs merge=lfs -text
|
||||
*.zst filter=lfs diff=lfs merge=lfs -text
|
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
.osc
|
35
X-KDE-SubstituteUID.dif
Normal file
35
X-KDE-SubstituteUID.dif
Normal file
@ -0,0 +1,35 @@
|
||||
Index: libgnome-desktop/gnome-desktop-item.c
|
||||
================================================================================
|
||||
--- libgnome-desktop/gnome-desktop-item.c
|
||||
+++ libgnome-desktop/gnome-desktop-item.c
|
||||
@@ -2085,8 +2085,16 @@
|
||||
|
||||
|
||||
/* make a new copy and get rid of spaces */
|
||||
- the_exec = g_alloca (strlen (exec) + 1);
|
||||
- strcpy (the_exec, exec);
|
||||
+
|
||||
+ if (gnome_desktop_item_get_boolean (item, GNOME_DESKTOP_ITEM_SUBSTITUTEUID) ||
|
||||
+ gnome_desktop_item_get_boolean (item, GNOME_DESKTOP_ITEM_ROOT_ONLY)) {
|
||||
+ the_exec = g_alloca (strlen (exec) + sizeof ("gnomesu -- "));
|
||||
+ strcpy (the_exec, "gnomesu -- ");
|
||||
+ strcat (the_exec, exec);
|
||||
+ } else {
|
||||
+ the_exec = g_alloca (strlen (exec) + 1);
|
||||
+ strcpy (the_exec, exec);
|
||||
+ }
|
||||
|
||||
if ( ! strip_the_amp (the_exec)) {
|
||||
g_set_error (error,
|
||||
--- libgnome-desktop/libgnome/gnome-desktop-item.h
|
||||
+++ libgnome-desktop/libgnome/gnome-desktop-item.h
|
||||
@@ -96,7 +96,8 @@
|
||||
#define GNOME_DESKTOP_ITEM_SORT_ORDER "SortOrder" /* strings */
|
||||
#define GNOME_DESKTOP_ITEM_URL "URL" /* string */
|
||||
#define GNOME_DESKTOP_ITEM_DOC_PATH "X-GNOME-DocPath" /* string */
|
||||
-
|
||||
+#define GNOME_DESKTOP_ITEM_SUBSTITUTEUID "X-KDE-SubstituteUID" /*boolean*/
|
||||
+#define GNOME_DESKTOP_ITEM_ROOT_ONLY "X-KDE-RootOnly" /*boolean*/
|
||||
/* The vfolder proposal */
|
||||
#define GNOME_DESKTOP_ITEM_CATEGORIES "Categories" /* string */
|
||||
#define GNOME_DESKTOP_ITEM_ONLY_SHOW_IN "OnlyShowIn" /* string */
|
3
gnome-desktop-2.16.1.tar.bz2
Normal file
3
gnome-desktop-2.16.1.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:56c7dbe56e6a9fbcd3730c55892734a9daff23a86d69f49a381a4c965732f9d1
|
||||
size 1230980
|
18
gnome-desktop-desktop.patch
Normal file
18
gnome-desktop-desktop.patch
Normal file
@ -0,0 +1,18 @@
|
||||
--- gnome-desktop-2.15.90/gnome-about/gnome-about.desktop.in.in
|
||||
+++ gnome-desktop-2.15.90/gnome-about/gnome-about.desktop.in.in
|
||||
@@ -1,12 +1,12 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
_Name=About GNOME
|
||||
-_Comment=Learn more about GNOME
|
||||
+_GenericName=Learn more about GNOME
|
||||
Exec=gnome-about
|
||||
-Icon=stock_about
|
||||
+Icon=gnome-logo-icon-transparent
|
||||
Terminal=false
|
||||
Type=Application
|
||||
-Categories=GNOME;GTK;Application;Core;
|
||||
+Categories=GNOME;GTK;Application;Core;Documentation;
|
||||
OnlyShowIn=GNOME;
|
||||
X-GNOME-Bugzilla-Bugzilla=GNOME
|
||||
X-GNOME-Bugzilla-Product=gnome-desktop
|
2701
gnome-desktop-recently-used-apps.patch
Normal file
2701
gnome-desktop-recently-used-apps.patch
Normal file
File diff suppressed because it is too large
Load Diff
458
gnome-desktop.changes
Normal file
458
gnome-desktop.changes
Normal file
@ -0,0 +1,458 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Jan 7 23:37:13 CET 2007 - sbrabec@suse.cz
|
||||
|
||||
- Splitted gnome-desktop-doc from gnome-desktop.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Dec 14 13:24:10 CST 2006 - maw@suse.de
|
||||
|
||||
- Move to /usr
|
||||
- Some specfile cleanup.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 21 16:20:50 CET 2006 - sbrabec@suse.cz
|
||||
|
||||
- Do not explicitly require mDNSResponder-lib blocking avahi compat
|
||||
package.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 15 22:46:58 CET 2006 - jimmyk@suse.de
|
||||
|
||||
- Updated recently-used-apps.patch to be compatible with new recently-used
|
||||
format, BNC #221392.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 13 01:03:08 CEST 2006 - ro@suse.de
|
||||
|
||||
- added gnome-doc-utils-devel to buildreq
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 2 22:50:30 CEST 2006 - jhargadon@suse.de
|
||||
|
||||
- update to version 2.16.1
|
||||
- updated translations
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 14 00:50:46 CEST 2006 - jhargadon@suse.de
|
||||
|
||||
- update to version 2.16.0
|
||||
- updated translations
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 12 20:04:35 CEST 2006 - danw@suse.de
|
||||
|
||||
- update X-KDE-SubstituteUID.dif for 2.15 and re-enable it. #202076
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 30 18:11:34 CEST 2006 - jhargadon@suse.de
|
||||
|
||||
- update to version 2.15.92
|
||||
- Remove gnome-workspace icon
|
||||
- Doc Translations
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 18 16:17:19 CEST 2006 - jhargadon@suse.de
|
||||
|
||||
- update to version 2.15.91
|
||||
- Use a useful icon theme in gnome_desktop_item_find_icon() when no
|
||||
icon theme is passed as argument so we get results
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Aug 11 17:53:16 CEST 2006 - jhargadon@suse.de
|
||||
|
||||
- updated to version 2.15.90
|
||||
- Set GNOME_PARAM_APP_DATADIR in test application
|
||||
- Save some memory in gnome-about
|
||||
- Make URI canonical before using them
|
||||
- Remember the added locales in GnomeDitemEdit
|
||||
- Sort locales list in GnomeDitemEdit
|
||||
- Use gdk_x11_display_get_user_time() to get the launch time
|
||||
- Don't crash when launching a desktop file without specifying a
|
||||
screen
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 8 23:11:10 CEST 2006 - jimmyk@suse.de
|
||||
|
||||
- Fix recently-used-apps patch, colliding libegg symbols (BNC #158106).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 20 23:36:26 CET 2006 - danw@suse.de
|
||||
|
||||
- Fix the error message mentioned in #156801 (though not the dialog
|
||||
box, which turns out to be a separate bug).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 28 23:24:48 CET 2006 - jimmyk@suse.de
|
||||
|
||||
- Added .recently-used-apps support (BNC #152405)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 28 15:25:33 CET 2006 - sbrabec@suse.cz
|
||||
|
||||
- Use kdelibs3-doc in BuildRequires for meinproc (#153635#c14).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 27 23:56:04 CET 2006 - ro@suse.de
|
||||
|
||||
- added kdelibs3-devel-doc to BuildRequires
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Feb 4 13:23:53 CET 2006 - aj@suse.de
|
||||
|
||||
- Reduce BuildRequires.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jan 25 21:31:42 CET 2006 - mls@suse.de
|
||||
|
||||
- converted neededforbuild to BuildRequires
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 30 22:17:32 CET 2005 - gekker@suse.de
|
||||
|
||||
- Update to version 2.12.2
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Nov 16 14:51:51 CET 2005 - sbrabec@suse.cz
|
||||
|
||||
- Fixed X-KDE-SubstituteUID patch for commands with arguments
|
||||
(#133942).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Oct 13 00:17:32 CEST 2005 - gekker@suse.de
|
||||
|
||||
- Update to version 2.12.1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 5 12:01:16 CEST 2005 - rodrigo@suse.de
|
||||
|
||||
- Update to version 2.12.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 23 00:19:11 CEST 2005 - gekker@suse.de
|
||||
|
||||
- Update to version 2.11.92
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 2 16:36:50 CEST 2005 - gekker@suse.de
|
||||
|
||||
- Update to version 2.11.90
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 22 17:43:06 CEST 2005 - gekker@suse.de
|
||||
|
||||
- Update to version 2.11.5
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jun 17 17:16:42 CEST 2005 - gekker@suse.de
|
||||
|
||||
- Update to version 2.11.3
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jun 1 18:15:17 CEST 2005 - sbrabec@suse.cz
|
||||
|
||||
- Fixed devel requirements.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 14:24:53 CEST 2005 - sbrabec@suse.cz
|
||||
|
||||
- Require libgnomesu instead of kdebase.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri May 13 17:41:36 CEST 2005 - sbrabec@suse.cz
|
||||
|
||||
- Call gnomesu for root-only binaries.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 22 17:44:31 CET 2005 - sbrabec@suse.cz
|
||||
|
||||
- Typo fix in desktop file (#72816).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 16 16:17:24 CET 2005 - clahey@suse.de
|
||||
|
||||
- Add an icon (gnome-about-logo-transparent).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 10 09:40:53 CET 2005 - adrian@suse.de
|
||||
|
||||
- kick build check workaround and apply translations to desktop file
|
||||
- show gnome about dialog only in gnome
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 9 19:37:31 CET 2005 - gekker@suse.de
|
||||
|
||||
- Update to version 2.10.0 (GNOME 2.10).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Mar 3 18:24:28 CET 2005 - gekker@suse.de
|
||||
|
||||
- update to version 2.9.92
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Feb 10 22:40:54 CET 2005 - gekker@suse.de
|
||||
|
||||
- Update to version 2.9.91
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Feb 8 13:52:35 CET 2005 - sbrabec@suse.cz
|
||||
|
||||
- Changed Categories for gnome-about (#50440).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Feb 6 00:10:38 CET 2005 - gekker@suse.de
|
||||
|
||||
- Update to version 2.9.90.1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 22 14:45:30 CET 2005 - gekker@suse.de
|
||||
|
||||
- Fixing the broken build
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jan 21 01:26:15 CET 2005 - gekker@suse.de
|
||||
|
||||
- Update to version 2.9.4
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Nov 2 17:13:04 CET 2004 - ro@suse.de
|
||||
|
||||
- locale rename: no -> nb
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 04 16:58:40 CEST 2004 - sbrabec@suse.cz
|
||||
|
||||
- Updated Czech translation (#46621),
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 29 12:22:00 CEST 2004 - hhetter@suse.de
|
||||
|
||||
- change distributor to SUSE
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 20 14:40:56 CEST 2004 - shprasad@suse.de
|
||||
|
||||
- Fixes bug #65062 (Fix given by svasista@novell.com)
|
||||
Fixes a crash when menu item is deleted.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Aug 25 21:26:54 CEST 2004 - clahey@suse.de
|
||||
|
||||
- Cache gnome-desktop help files.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 19 21:06:47 CEST 2004 - rml@novell.com
|
||||
|
||||
- Fix bug #62316: Use kdesu not gnomesu
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 17 13:57:13 CEST 2004 - sbrabec@suse.cz
|
||||
|
||||
- Added gnomesu needed by X-KDE-SubstituteUID.dif to requires (#43867).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Jul 28 20:02:52 CEST 2004 - clahey@suse.de
|
||||
|
||||
- Change distributor from GNOME Project to Novell, Inc.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue May 4 17:28:20 CEST 2004 - clahey@suse.de
|
||||
|
||||
- Updated to version 2.6.0.1.
|
||||
- Updated X-KDE-SubstituteUID based on changes in base package.
|
||||
- Added patch to provide .directory files for new GNOME menu layout.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 31 12:41:22 CEST 2004 - hhetter@suse.de
|
||||
|
||||
- added X-KDE-RootOnly Interpretation (#37660)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 17 13:07:32 CET 2004 - hhetter@suse.de
|
||||
|
||||
- fix gnomesu call in X-KDE-SubstituteUID
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Mar 15 14:36:21 CET 2004 - sbrabec@suse.cz
|
||||
|
||||
- FHS 2.3 fix (mandir, infodir, #35821).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Mar 10 10:35:57 CET 2004 - sbrabec@suse.cz
|
||||
|
||||
- Fixed %doc attributes (#33163).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Jan 10 16:39:26 CET 2004 - adrian@suse.de
|
||||
|
||||
- add %defattr and %run_ldconfig
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 27 12:31:30 CET 2003 - sbrabec@suse.cz
|
||||
|
||||
- Updated to version 2.4.1.1.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Oct 17 12:46:44 CEST 2003 - ro@suse.de
|
||||
|
||||
- fix build on x86_64 running all autotools
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Oct 07 14:26:48 CEST 2003 - sbrabec@suse.cz
|
||||
|
||||
- Updated to version 2.4.0 (GNOME 2.4).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 22 10:34:14 CEST 2003 - sbrabec@suse.cz
|
||||
|
||||
- Obsolete gnome-core (bug #31480),
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Sep 15 14:59:29 CEST 2003 - hhetter@suse.de
|
||||
|
||||
- expand iconpath for KDE crystalsvg stuff in all sizes
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Sep 12 11:45:48 CEST 2003 - hhetter@suse.de
|
||||
|
||||
- enable X-KDE-SubstituteUID
|
||||
- fix kdedir setting
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 14 16:17:53 CEST 2003 - sbrabec@suse.cz
|
||||
|
||||
- GNOME prefix change to /opt/gnome.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 24 18:34:36 CEST 2003 - sbrabec@suse.cz
|
||||
|
||||
- Updated to version 2.2.2.
|
||||
- Use %find_lang.
|
||||
- Fixed filelist.
|
||||
- Compressed man pages.
|
||||
- Standard docs moved away from gnome-core2.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Mar 4 12:43:33 CET 2003 - hhetter@suse.de
|
||||
|
||||
- provide links for susewm icons in first place, making
|
||||
the GNOME susewm menu more consistent
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Feb 10 16:08:09 CET 2003 - hhetter@suse.de
|
||||
|
||||
- updated to version 2.2.0.1 [GNOME 2.2.0]
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jan 28 13:36:34 CET 2003 - hhetter@suse.de
|
||||
|
||||
- updated to version 2.2.0
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 16 16:28:09 CET 2003 - sbrabec@suse.cz
|
||||
|
||||
- Updated to version 2.1.90.
|
||||
- Updated %files and license.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jan 16 10:11:46 CET 2003 - sbrabec@suse.cz
|
||||
|
||||
- Added libjpeg to neededforbuild.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Nov 29 12:58:20 CET 2002 - hhetter@suse.de
|
||||
|
||||
- add suse paths to the icon loader
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Nov 28 13:29:23 CET 2002 - hhetter@suse.de
|
||||
|
||||
- updated to version 2.0.10 [GNOME 2.0.3]
|
||||
- removed hu-translation because translations have been updated
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Nov 11 23:49:54 CET 2002 - ro@suse.de
|
||||
|
||||
- changed neededforbuild <xf86 xdevel> to <x-devel-packages>
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 24 16:42:18 CEST 2002 - sbrabec@suse.cz
|
||||
|
||||
- Added alsa-devel to neededforbuild, because esound-devel can require it.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Sep 19 10:56:19 CEST 2002 - sbrabec@suse.cz
|
||||
|
||||
- Added alsa to neededforbuild, because esound can depend on it.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Sep 17 14:13:06 CEST 2002 - hhetter@suse.de
|
||||
|
||||
- added corrected hu po-files
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Aug 13 10:18:46 CEST 2002 - hhetter@suse.de
|
||||
|
||||
- fix neededforbuild
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Aug 8 15:44:09 CEST 2002 - hhetter@suse.de
|
||||
|
||||
- updated to version 2.0.6
|
||||
* Don't stat all icons on startup
|
||||
* Fix #89245, picking an .xpm over a .png
|
||||
* Also read icons from our installed prefix
|
||||
* Fix GConfClient leaks
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Aug 5 15:32:31 CEST 2002 - hhetter@suse.de
|
||||
|
||||
- updated to version 2.0.5
|
||||
* fix bogus file reference
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 30 15:22:01 CEST 2002 - hhetter@suse.de
|
||||
|
||||
- updated to version 2.0.4
|
||||
* Truncate .desktop file after opening
|
||||
* Remove numeric canonization
|
||||
* Add APPEND_PATHS flag
|
||||
* Sort out libtool versioning
|
||||
* Translation updates
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jul 23 10:28:57 CEST 2002 - hhetter@suse.de
|
||||
|
||||
- updated to version 2.0.3, req. for Nautilus 2.0.1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 27 08:52:00 CEST 2002 - hhetter@suse.de
|
||||
|
||||
- updated to version 2.0.2 (gnome 2.0 final)
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Thu Jun 20 17:32:30 CEST 2002 - hhetter@suse.de
|
||||
|
||||
- updated to version 2.0.1
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon Jun 10 15:44:23 CEST 2002 - hhetter@suse.de
|
||||
|
||||
- updated to version 2.0.0
|
||||
- many translation updates
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Tue Jun 4 17:54:19 CEST 2002 - hhetter@suse.de
|
||||
|
||||
- updated to frozen source version 1.5.22
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed May 15 18:13:05 CEST 2002 - ro@suse.de
|
||||
|
||||
- use libdir
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Apr 10 12:00:06 CEST 2002 - hhetter@suse.de
|
||||
|
||||
- initial release for GNOME 2.0 platform
|
||||
|
360
gnome-desktop.spec
Normal file
360
gnome-desktop.spec
Normal file
@ -0,0 +1,360 @@
|
||||
#
|
||||
# spec file for package gnome-desktop (Version 2.16.1)
|
||||
#
|
||||
# Copyright (c) 2007 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
# This file and all modifications and additions to the pristine
|
||||
# package are under the same license as the package itself.
|
||||
#
|
||||
# Please submit bugfixes or comments via http://bugs.opensuse.org/
|
||||
#
|
||||
|
||||
# norootforbuild
|
||||
|
||||
Name: gnome-desktop
|
||||
BuildRequires: gnome-common gnome-doc-utils gnome-doc-utils-devel gtk-doc intltool kdelibs3-doc libgnomeui-devel perl-XML-Parser scrollkeeper startup-notification-devel update-desktop-files
|
||||
License: GNU Free Documentation License, Version 1.1 (GFDL), GNU General Public License (GPL)
|
||||
Group: System/GUI/GNOME
|
||||
Requires: libgnomesu
|
||||
Autoreqprov: on
|
||||
Obsoletes: gnome-core
|
||||
Version: 2.16.1
|
||||
Release: 37
|
||||
Summary: The GNOME Desktop API Library
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
Url: http://www.gnome.org
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Patch: icon-search-path.dif
|
||||
Patch1: X-KDE-SubstituteUID.dif
|
||||
Patch2: gnome-desktop-desktop.patch
|
||||
Patch3: gnome-desktop-recently-used-apps.patch
|
||||
|
||||
%description
|
||||
This package contains the libgnome-desktop library that contains APIs
|
||||
that really belong in libgnome/libgnomeui but have not seen enough
|
||||
testing or development to be considered stable. Use them at your own
|
||||
risk.
|
||||
|
||||
Also contained here are documents installed as part of the core GNOME
|
||||
distribution: the GPL, GNOME's .desktop files, the gnome-about program,
|
||||
some man pages, and GNOME's core graphics files and icons.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Elliot Lee <sopwith@redhat.com>
|
||||
George Lebl <jirka@5z.com>
|
||||
John Ellis <johne@bellatlantic.net>
|
||||
Havoc Pennington <hp@redhat.com>
|
||||
Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
%package devel
|
||||
Summary: Include Files and Libraries mandatory for Development.
|
||||
Group: Development/Libraries/GNOME
|
||||
Autoreqprov: on
|
||||
Requires: %{name} = %{version} gtk2-devel libgnomeui-devel startup-notification-devel
|
||||
|
||||
%description devel
|
||||
This package contains all necessary include files and libraries needed
|
||||
to develop applications that require these.
|
||||
|
||||
|
||||
|
||||
%package doc
|
||||
Summary: Additional Package Documentation.
|
||||
Group: System/GUI/GNOME
|
||||
Requires: %{name} = %{version}
|
||||
|
||||
%description doc
|
||||
This package contains the libgnome-desktop library that contains APIs
|
||||
that really belong in libgnome/libgnomeui but have not seen enough
|
||||
testing or development to be considered stable. Use them at your own
|
||||
risk.
|
||||
|
||||
Also contained here are documents installed as part of the core GNOME
|
||||
distribution: the GPL, GNOME's .desktop files, the gnome-about program,
|
||||
some man pages, and GNOME's core graphics files and icons.
|
||||
|
||||
|
||||
|
||||
Authors:
|
||||
--------
|
||||
Elliot Lee <sopwith@redhat.com>
|
||||
George Lebl <jirka@5z.com>
|
||||
John Ellis <johne@bellatlantic.net>
|
||||
Havoc Pennington <hp@redhat.com>
|
||||
Anders Carlsson <andersca@gnu.org>
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch -p1
|
||||
%patch1
|
||||
%patch2 -p1
|
||||
%patch3 -p1
|
||||
|
||||
%build
|
||||
autoreconf -f -i
|
||||
CFLAGS="$RPM_OPT_FLAGS" \
|
||||
%configure \
|
||||
--localstatedir=/var/lib \
|
||||
--with-kde-datadir=/opt/kde3 \
|
||||
--with-gnome-distributor="SUSE" \
|
||||
--enable-platform-gnome2 \
|
||||
--disable-scrollkeeper
|
||||
make
|
||||
|
||||
%install
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
%find_lang %{name}-2.0
|
||||
%find_lang fdl %{name}-2.0.lang
|
||||
%find_lang gnome-feedback %{name}-2.0.lang
|
||||
%find_lang gpl %{name}-2.0.lang
|
||||
%find_lang lgpl %{name}-2.0.lang
|
||||
for xml in $RPM_BUILD_ROOT%{_datadir}/gnome/help/*/*/*.xml; do
|
||||
if echo $xml | egrep 'share/gnome/help/([^/]*)/[^/]*/\1\.xml$' > /dev/null; then
|
||||
meinproc --check --cache `echo $xml | sed 's/xml$/cache.bz2/'` $xml || :
|
||||
fi
|
||||
done
|
||||
%suse_update_desktop_file gnome-about Documentation
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
%post
|
||||
%run_ldconfig
|
||||
|
||||
%postun
|
||||
%run_ldconfig
|
||||
|
||||
%files -f %{name}-2.0.lang
|
||||
%defattr (-, root, root)
|
||||
%doc AUTHORS COPYING COPYING-DOCS COPYING.LIB ChangeLog NEWS README
|
||||
%{_bindir}/*
|
||||
%{_datadir}/applications/gnome-about.desktop
|
||||
%{_datadir}/gnome-about
|
||||
%{_datadir}/omf/*
|
||||
%{_datadir}/pixmaps/*.png
|
||||
%{_datadir}/pixmaps/*.xpm
|
||||
%{_libdir}/*.so.*
|
||||
%doc %{_mandir}/man?/*.*
|
||||
|
||||
%files devel
|
||||
%defattr (-, root, root)
|
||||
%{_libdir}/pkgconfig/*.pc
|
||||
%{_libdir}/*.so
|
||||
%{_libdir}/*.*a
|
||||
%{_includedir}/gnome-desktop-2.0
|
||||
|
||||
%files doc
|
||||
%defattr (-, root, root)
|
||||
%{_datadir}/gtk-doc/html/gnome-desktop
|
||||
|
||||
%changelog -n gnome-desktop
|
||||
* Sun Jan 07 2007 - sbrabec@suse.cz
|
||||
- Splitted gnome-desktop-doc from gnome-desktop.
|
||||
* Thu Dec 14 2006 - maw@suse.de
|
||||
- Move to /usr
|
||||
- Some specfile cleanup.
|
||||
* Tue Nov 21 2006 - sbrabec@suse.cz
|
||||
- Do not explicitly require mDNSResponder-lib blocking avahi compat
|
||||
package.
|
||||
* Wed Nov 15 2006 - jimmyk@suse.de
|
||||
- Updated recently-used-apps.patch to be compatible with new recently-used
|
||||
format, BNC #221392.
|
||||
* Fri Oct 13 2006 - ro@suse.de
|
||||
- added gnome-doc-utils-devel to buildreq
|
||||
* Mon Oct 02 2006 - jhargadon@suse.de
|
||||
- update to version 2.16.1
|
||||
- updated translations
|
||||
* Thu Sep 14 2006 - jhargadon@suse.de
|
||||
- update to version 2.16.0
|
||||
- updated translations
|
||||
* Tue Sep 12 2006 - danw@suse.de
|
||||
- update X-KDE-SubstituteUID.dif for 2.15 and re-enable it. #202076
|
||||
* Wed Aug 30 2006 - jhargadon@suse.de
|
||||
- update to version 2.15.92
|
||||
- Remove gnome-workspace icon
|
||||
- Doc Translations
|
||||
* Fri Aug 18 2006 - jhargadon@suse.de
|
||||
- update to version 2.15.91
|
||||
- Use a useful icon theme in gnome_desktop_item_find_icon() when no
|
||||
icon theme is passed as argument so we get results
|
||||
* Fri Aug 11 2006 - jhargadon@suse.de
|
||||
- updated to version 2.15.90
|
||||
- Set GNOME_PARAM_APP_DATADIR in test application
|
||||
- Save some memory in gnome-about
|
||||
- Make URI canonical before using them
|
||||
- Remember the added locales in GnomeDitemEdit
|
||||
- Sort locales list in GnomeDitemEdit
|
||||
- Use gdk_x11_display_get_user_time() to get the launch time
|
||||
- Don't crash when launching a desktop file without specifying a
|
||||
screen
|
||||
* Mon May 08 2006 - jimmyk@suse.de
|
||||
- Fix recently-used-apps patch, colliding libegg symbols (BNC #158106).
|
||||
* Mon Mar 20 2006 - danw@suse.de
|
||||
- Fix the error message mentioned in #156801 (though not the dialog
|
||||
box, which turns out to be a separate bug).
|
||||
* Tue Feb 28 2006 - jimmyk@suse.de
|
||||
- Added .recently-used-apps support (BNC #152405)
|
||||
* Tue Feb 28 2006 - sbrabec@suse.cz
|
||||
- Use kdelibs3-doc in BuildRequires for meinproc (#153635#c14).
|
||||
* Mon Feb 27 2006 - ro@suse.de
|
||||
- added kdelibs3-devel-doc to BuildRequires
|
||||
* Sat Feb 04 2006 - aj@suse.de
|
||||
- Reduce BuildRequires.
|
||||
* Wed Jan 25 2006 - mls@suse.de
|
||||
- converted neededforbuild to BuildRequires
|
||||
* Wed Nov 30 2005 - gekker@suse.de
|
||||
- Update to version 2.12.2
|
||||
* Wed Nov 16 2005 - sbrabec@suse.cz
|
||||
- Fixed X-KDE-SubstituteUID patch for commands with arguments
|
||||
(#133942).
|
||||
* Thu Oct 13 2005 - gekker@suse.de
|
||||
- Update to version 2.12.1
|
||||
* Mon Sep 05 2005 - rodrigo@suse.de
|
||||
- Update to version 2.12.0
|
||||
* Tue Aug 23 2005 - gekker@suse.de
|
||||
- Update to version 2.11.92
|
||||
* Tue Aug 02 2005 - gekker@suse.de
|
||||
- Update to version 2.11.90
|
||||
* Fri Jul 22 2005 - gekker@suse.de
|
||||
- Update to version 2.11.5
|
||||
* Fri Jun 17 2005 - gekker@suse.de
|
||||
- Update to version 2.11.3
|
||||
* Wed Jun 01 2005 - sbrabec@suse.cz
|
||||
- Fixed devel requirements.
|
||||
* Mon May 23 2005 - sbrabec@suse.cz
|
||||
- Require libgnomesu instead of kdebase.
|
||||
* Fri May 13 2005 - sbrabec@suse.cz
|
||||
- Call gnomesu for root-only binaries.
|
||||
* Tue Mar 22 2005 - sbrabec@suse.cz
|
||||
- Typo fix in desktop file (#72816).
|
||||
* Wed Mar 16 2005 - clahey@suse.de
|
||||
- Add an icon (gnome-about-logo-transparent).
|
||||
* Thu Mar 10 2005 - adrian@suse.de
|
||||
- kick build check workaround and apply translations to desktop file
|
||||
- show gnome about dialog only in gnome
|
||||
* Wed Mar 09 2005 - gekker@suse.de
|
||||
- Update to version 2.10.0 (GNOME 2.10).
|
||||
* Thu Mar 03 2005 - gekker@suse.de
|
||||
- update to version 2.9.92
|
||||
* Thu Feb 10 2005 - gekker@suse.de
|
||||
- Update to version 2.9.91
|
||||
* Tue Feb 08 2005 - sbrabec@suse.cz
|
||||
- Changed Categories for gnome-about (#50440).
|
||||
* Sun Feb 06 2005 - gekker@suse.de
|
||||
- Update to version 2.9.90.1
|
||||
* Sat Jan 22 2005 - gekker@suse.de
|
||||
- Fixing the broken build
|
||||
* Fri Jan 21 2005 - gekker@suse.de
|
||||
- Update to version 2.9.4
|
||||
* Tue Nov 02 2004 - ro@suse.de
|
||||
- locale rename: no -> nb
|
||||
* Mon Oct 04 2004 - sbrabec@suse.cz
|
||||
- Updated Czech translation (#46621),
|
||||
* Wed Sep 29 2004 - hhetter@suse.de
|
||||
- change distributor to SUSE
|
||||
* Mon Sep 20 2004 - shprasad@suse.de
|
||||
- Fixes bug #65062 (Fix given by svasista@novell.com)
|
||||
Fixes a crash when menu item is deleted.
|
||||
* Wed Aug 25 2004 - clahey@suse.de
|
||||
- Cache gnome-desktop help files.
|
||||
* Thu Aug 19 2004 - rml@novell.com
|
||||
- Fix bug #62316: Use kdesu not gnomesu
|
||||
* Tue Aug 17 2004 - sbrabec@suse.cz
|
||||
- Added gnomesu needed by X-KDE-SubstituteUID.dif to requires (#43867).
|
||||
* Wed Jul 28 2004 - clahey@suse.de
|
||||
- Change distributor from GNOME Project to Novell, Inc.
|
||||
* Tue May 04 2004 - clahey@suse.de
|
||||
- Updated to version 2.6.0.1.
|
||||
- Updated X-KDE-SubstituteUID based on changes in base package.
|
||||
- Added patch to provide .directory files for new GNOME menu layout.
|
||||
* Wed Mar 31 2004 - hhetter@suse.de
|
||||
- added X-KDE-RootOnly Interpretation (#37660)
|
||||
* Wed Mar 17 2004 - hhetter@suse.de
|
||||
- fix gnomesu call in X-KDE-SubstituteUID
|
||||
* Mon Mar 15 2004 - sbrabec@suse.cz
|
||||
- FHS 2.3 fix (mandir, infodir, #35821).
|
||||
* Wed Mar 10 2004 - sbrabec@suse.cz
|
||||
- Fixed %%doc attributes (#33163).
|
||||
* Sat Jan 10 2004 - adrian@suse.de
|
||||
- add %%defattr and %%run_ldconfig
|
||||
* Mon Oct 27 2003 - sbrabec@suse.cz
|
||||
- Updated to version 2.4.1.1.
|
||||
* Fri Oct 17 2003 - ro@suse.de
|
||||
- fix build on x86_64 running all autotools
|
||||
* Tue Oct 07 2003 - sbrabec@suse.cz
|
||||
- Updated to version 2.4.0 (GNOME 2.4).
|
||||
* Mon Sep 22 2003 - sbrabec@suse.cz
|
||||
- Obsolete gnome-core (bug #31480),
|
||||
* Mon Sep 15 2003 - hhetter@suse.de
|
||||
- expand iconpath for KDE crystalsvg stuff in all sizes
|
||||
* Fri Sep 12 2003 - hhetter@suse.de
|
||||
- enable X-KDE-SubstituteUID
|
||||
- fix kdedir setting
|
||||
* Mon Jul 14 2003 - sbrabec@suse.cz
|
||||
- GNOME prefix change to /opt/gnome.
|
||||
* Tue Jun 24 2003 - sbrabec@suse.cz
|
||||
- Updated to version 2.2.2.
|
||||
- Use %%find_lang.
|
||||
- Fixed filelist.
|
||||
- Compressed man pages.
|
||||
- Standard docs moved away from gnome-core2.
|
||||
* Tue Mar 04 2003 - hhetter@suse.de
|
||||
- provide links for susewm icons in first place, making
|
||||
the GNOME susewm menu more consistent
|
||||
* Mon Feb 10 2003 - hhetter@suse.de
|
||||
- updated to version 2.2.0.1 [GNOME 2.2.0]
|
||||
* Tue Jan 28 2003 - hhetter@suse.de
|
||||
- updated to version 2.2.0
|
||||
* Thu Jan 16 2003 - sbrabec@suse.cz
|
||||
- Updated to version 2.1.90.
|
||||
- Updated %%files and license.
|
||||
* Thu Jan 16 2003 - sbrabec@suse.cz
|
||||
- Added libjpeg to neededforbuild.
|
||||
* Fri Nov 29 2002 - hhetter@suse.de
|
||||
- add suse paths to the icon loader
|
||||
* Thu Nov 28 2002 - hhetter@suse.de
|
||||
- updated to version 2.0.10 [GNOME 2.0.3]
|
||||
- removed hu-translation because translations have been updated
|
||||
* Mon Nov 11 2002 - ro@suse.de
|
||||
- changed neededforbuild <xf86 xdevel> to <x-devel-packages>
|
||||
* Tue Sep 24 2002 - sbrabec@suse.cz
|
||||
- Added alsa-devel to neededforbuild, because esound-devel can require it.
|
||||
* Thu Sep 19 2002 - sbrabec@suse.cz
|
||||
- Added alsa to neededforbuild, because esound can depend on it.
|
||||
* Tue Sep 17 2002 - hhetter@suse.de
|
||||
- added corrected hu po-files
|
||||
* Tue Aug 13 2002 - hhetter@suse.de
|
||||
- fix neededforbuild
|
||||
* Thu Aug 08 2002 - hhetter@suse.de
|
||||
- updated to version 2.0.6
|
||||
* Don't stat all icons on startup
|
||||
* Fix #89245, picking an .xpm over a .png
|
||||
* Also read icons from our installed prefix
|
||||
* Fix GConfClient leaks
|
||||
* Mon Aug 05 2002 - hhetter@suse.de
|
||||
- updated to version 2.0.5
|
||||
* fix bogus file reference
|
||||
* Tue Jul 30 2002 - hhetter@suse.de
|
||||
- updated to version 2.0.4
|
||||
* Truncate .desktop file after opening
|
||||
* Remove numeric canonization
|
||||
* Add APPEND_PATHS flag
|
||||
* Sort out libtool versioning
|
||||
* Translation updates
|
||||
* Tue Jul 23 2002 - hhetter@suse.de
|
||||
- updated to version 2.0.3, req. for Nautilus 2.0.1
|
||||
* Thu Jun 27 2002 - hhetter@suse.de
|
||||
- updated to version 2.0.2 (gnome 2.0 final)
|
||||
* Thu Jun 20 2002 - hhetter@suse.de
|
||||
- updated to version 2.0.1
|
||||
* Mon Jun 10 2002 - hhetter@suse.de
|
||||
- updated to version 2.0.0
|
||||
- many translation updates
|
||||
* Tue Jun 04 2002 - hhetter@suse.de
|
||||
- updated to frozen source version 1.5.22
|
||||
* Wed May 15 2002 - ro@suse.de
|
||||
- use libdir
|
||||
* Wed Apr 10 2002 - hhetter@suse.de
|
||||
- initial release for GNOME 2.0 platform
|
99
icon-search-path.dif
Normal file
99
icon-search-path.dif
Normal file
@ -0,0 +1,99 @@
|
||||
diff -ruN gnome-desktop-2.2.2/libgnome-desktop/gnome-desktop-item.c gnome-desktop-n/libgnome-desktop/gnome-desktop-item.c
|
||||
--- gnome-desktop-2.2.2/libgnome-desktop/gnome-desktop-item.c 2003-05-14 14:40:38.000000000 +0200
|
||||
+++ gnome-desktop-n/libgnome-desktop/gnome-desktop-item.c 2003-09-15 14:55:59.000000000 +0200
|
||||
@@ -2340,6 +2340,11 @@
|
||||
static GSList *hicolor_kde_32 = NULL;
|
||||
static GSList *hicolor_kde_22 = NULL;
|
||||
static GSList *hicolor_kde_16 = NULL;
|
||||
+static GSList *crystalsvg_kde_48 = NULL;
|
||||
+static GSList *crystalsvg_kde_32 = NULL;
|
||||
+static GSList *crystalsvg_kde_22 = NULL;
|
||||
+static GSList *crystalsvg_kde_16 = NULL;
|
||||
+
|
||||
/* XXX: maybe we don't care about locolor
|
||||
static GSList *locolor_kde_48 = NULL;
|
||||
static GSList *locolor_kde_32 = NULL;
|
||||
@@ -2397,6 +2402,10 @@
|
||||
ADD_DIRS (hicolor, 32);
|
||||
ADD_DIRS (hicolor, 22);
|
||||
ADD_DIRS (hicolor, 16);
|
||||
+ ADD_DIRS (crystalsvg, 48);
|
||||
+ ADD_DIRS (crystalsvg, 32);
|
||||
+ ADD_DIRS (crystalsvg, 22);
|
||||
+ ADD_DIRS (crystalsvg, 16);
|
||||
|
||||
/* XXX: maybe we don't care about locolor
|
||||
ADD_DIRS (locolor, 48);
|
||||
@@ -2423,6 +2432,15 @@
|
||||
g_slist_copy (hicolor_kde_22));
|
||||
list = g_slist_concat (list,
|
||||
g_slist_copy (hicolor_kde_16));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_48));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_32));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_16));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_22));
|
||||
+
|
||||
} else if (size > 22) {
|
||||
/* 23-32 */
|
||||
list = g_slist_concat (g_slist_copy (hicolor_kde_32),
|
||||
@@ -2431,6 +2449,15 @@
|
||||
g_slist_copy (hicolor_kde_22));
|
||||
list = g_slist_concat (list,
|
||||
g_slist_copy (hicolor_kde_16));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_48));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_32));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_16));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_22));
|
||||
+
|
||||
} else if (size > 16) {
|
||||
/* 17-22 */
|
||||
list = g_slist_concat (g_slist_copy (hicolor_kde_22),
|
||||
@@ -2439,6 +2466,15 @@
|
||||
g_slist_copy (hicolor_kde_48));
|
||||
list = g_slist_concat (list,
|
||||
g_slist_copy (hicolor_kde_16));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_48));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_32));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_16));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_22));
|
||||
+
|
||||
} else {
|
||||
/* 1-16 */
|
||||
list = g_slist_concat (g_slist_copy (hicolor_kde_16),
|
||||
@@ -2447,6 +2483,15 @@
|
||||
g_slist_copy (hicolor_kde_32));
|
||||
list = g_slist_concat (list,
|
||||
g_slist_copy (hicolor_kde_48));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_48));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_32));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_16));
|
||||
+ list = g_slist_concat (list,
|
||||
+ g_slist_copy (crystalsvg_kde_22));
|
||||
+
|
||||
}
|
||||
|
||||
list = g_slist_append (list, kde_icondir);
|
||||
@@ -2463,7 +2508,7 @@
|
||||
char *try_prefixes[] = {
|
||||
"/usr",
|
||||
"/opt/kde",
|
||||
- "/opt/kde2",
|
||||
+ "/opt/kde3",
|
||||
"/usr/local",
|
||||
"/kde",
|
||||
"/kde2",
|
Loading…
Reference in New Issue
Block a user