import gnome-desktop 3.0.1
gnome-desktop contains the libgnome-desktop library as well as some desktop-wide documents. ok aja@
This commit is contained in:
parent
7e3d70a3de
commit
ca12bbf441
49
x11/gnome3/desktop/Makefile
Normal file
49
x11/gnome3/desktop/Makefile
Normal file
@ -0,0 +1,49 @@
|
||||
# $OpenBSD: Makefile,v 1.1.1.1 2011/05/13 08:52:11 jasper Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
COMMENT= components for the GNOME desktop
|
||||
|
||||
GNOME_PROJECT= gnome-desktop
|
||||
GNOME_VERSION= 3.0.1
|
||||
|
||||
SHARED_LIBS += gnome-desktop-3 0.0 # 0.9
|
||||
|
||||
CATEGORIES= x11
|
||||
|
||||
# LGPLv2/GFDLv1.1/GPLv2
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
WANTLIB += GL ICE SM X11 Xau Xcomposite Xcursor Xdamage Xdmcp
|
||||
WANTLIB += Xext Xfixes Xi Xinerama Xrandr Xrender Xxf86vm atk-1.0
|
||||
WANTLIB += cairo cairo-gobject drm execinfo expat fontconfig freetype
|
||||
WANTLIB += gdk-3 gdk_pixbuf-2.0 gio-2.0 glib-2.0 gmodule-2.0 gobject-2.0
|
||||
WANTLIB += gthread-2.0 gtk-3 m pango-1.0 pangocairo-1.0 pangoft2-1.0
|
||||
WANTLIB += pcre pixman-1 png pthread-stubs startup-notification-1
|
||||
WANTLIB += xcb xcb-atom xcb-aux xcb-event xcb-render xcb-shm z
|
||||
|
||||
MODULES= devel/gettext \
|
||||
x11/gnome
|
||||
|
||||
BUILD_DEPENDS= devel/gobject-introspection
|
||||
LIB_DEPENDS= devel/startup-notification \
|
||||
x11/gtk+3
|
||||
|
||||
MODGNOME_HELP_FILES= Yes
|
||||
DESKTOP_FILES= Yes
|
||||
CONFIGURE_ARGS+= ${CONFIGURE_SHARED}
|
||||
CONFIGURE_ARGS+= --with-gnome-distributor="OpenBSD Ports" \
|
||||
--disable-gtk-doc \
|
||||
--enable-introspection
|
||||
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
|
||||
LDFLAGS="-L${LOCALBASE}/lib"
|
||||
|
||||
# stop systrace spam by avoiding xsltproc to access net
|
||||
pre-configure:
|
||||
find ${WRKSRC}/desktop-docs/ -name Makefile.in \
|
||||
-exec perl -pi -e 's,xsltproc,xsltproc --nonet,g' {} \;
|
||||
|
||||
.include <bsd.port.mk>
|
5
x11/gnome3/desktop/distinfo
Normal file
5
x11/gnome3/desktop/distinfo
Normal file
@ -0,0 +1,5 @@
|
||||
MD5 (gnome/gnome-desktop-3.0.1.tar.bz2) = /8DObpQTeG949Z8YZV6FIw==
|
||||
RMD160 (gnome/gnome-desktop-3.0.1.tar.bz2) = KLIbtiSK+UBWXvWUT/wc/Q+Ygss=
|
||||
SHA1 (gnome/gnome-desktop-3.0.1.tar.bz2) = LgBN3yhV1jumCuW9fazLdOJg3Rk=
|
||||
SHA256 (gnome/gnome-desktop-3.0.1.tar.bz2) = bV4UCg1fm8Exyv9QW8Sir6EeGDlDf3/D2nMjizej8KM=
|
||||
SIZE (gnome/gnome-desktop-3.0.1.tar.bz2) = 1246936
|
@ -0,0 +1,38 @@
|
||||
$OpenBSD: patch-libgnome-desktop_gnome-desktop-thumbnail_c,v 1.1.1.1 2011/05/13 08:52:11 jasper Exp $
|
||||
|
||||
gnome-desktop-thumbnail.c: In function `gnome_desktop_thumbnail_factory_save_thumbnail':
|
||||
gnome-desktop-thumbnail.c:1052: warning: long int format, different type arg (arg 4)
|
||||
gnome-desktop-thumbnail.c: In function `gnome_desktop_thumbnail_factory_create_failed_thumbnail':
|
||||
gnome-desktop-thumbnail.c:1154: warning: long int format, different type arg (arg 4)
|
||||
|
||||
change atol -> atoll in line with the other changes.
|
||||
|
||||
--- libgnome-desktop/gnome-desktop-thumbnail.c.orig Tue Mar 22 15:30:35 2011
|
||||
+++ libgnome-desktop/gnome-desktop-thumbnail.c Thu Apr 28 19:05:27 2011
|
||||
@@ -1379,7 +1379,7 @@ gnome_desktop_thumbnail_factory_save_thumbnail (GnomeD
|
||||
}
|
||||
close (tmp_fd);
|
||||
|
||||
- g_snprintf (mtime_str, 21, "%ld", original_mtime);
|
||||
+ g_snprintf (mtime_str, 21, "%lld", (long long)original_mtime);
|
||||
width = gdk_pixbuf_get_option (thumbnail, "tEXt::Thumb::Image::Width");
|
||||
height = gdk_pixbuf_get_option (thumbnail, "tEXt::Thumb::Image::Height");
|
||||
|
||||
@@ -1481,7 +1481,7 @@ gnome_desktop_thumbnail_factory_create_failed_thumbnai
|
||||
}
|
||||
close (tmp_fd);
|
||||
|
||||
- g_snprintf (mtime_str, 21, "%ld", mtime);
|
||||
+ g_snprintf (mtime_str, 21, "%lld", (long long)mtime);
|
||||
pixbuf = gdk_pixbuf_new (GDK_COLORSPACE_RGB, TRUE, 8, 1, 1);
|
||||
saved_ok = gdk_pixbuf_save (pixbuf,
|
||||
tmp_path,
|
||||
@@ -1610,7 +1610,7 @@ gnome_desktop_thumbnail_is_valid (GdkPixbuf *
|
||||
thumb_mtime_str = gdk_pixbuf_get_option (pixbuf, "tEXt::Thumb::MTime");
|
||||
if (!thumb_mtime_str)
|
||||
return FALSE;
|
||||
- thumb_mtime = atol (thumb_mtime_str);
|
||||
+ thumb_mtime = atoll (thumb_mtime_str);
|
||||
if (mtime != thumb_mtime)
|
||||
return FALSE;
|
||||
|
2
x11/gnome3/desktop/pkg/DESCR
Executable file
2
x11/gnome3/desktop/pkg/DESCR
Executable file
@ -0,0 +1,2 @@
|
||||
gnome-desktop contains the libgnome-desktop library as well as some
|
||||
desktop-wide documents.
|
336
x11/gnome3/desktop/pkg/PLIST
Normal file
336
x11/gnome3/desktop/pkg/PLIST
Normal file
@ -0,0 +1,336 @@
|
||||
@comment $OpenBSD: PLIST,v 1.1.1.1 2011/05/13 08:52:11 jasper Exp $
|
||||
include/gnome-desktop-3.0/
|
||||
include/gnome-desktop-3.0/libgnome-desktop/
|
||||
include/gnome-desktop-3.0/libgnome-desktop/gnome-bg-crossfade.h
|
||||
include/gnome-desktop-3.0/libgnome-desktop/gnome-bg.h
|
||||
include/gnome-desktop-3.0/libgnome-desktop/gnome-desktop-thumbnail.h
|
||||
include/gnome-desktop-3.0/libgnome-desktop/gnome-desktop-utils.h
|
||||
include/gnome-desktop-3.0/libgnome-desktop/gnome-rr-config.h
|
||||
include/gnome-desktop-3.0/libgnome-desktop/gnome-rr-labeler.h
|
||||
include/gnome-desktop-3.0/libgnome-desktop/gnome-rr.h
|
||||
include/gnome-desktop-3.0/libgnome-desktop/gnome-tz-monitor.h
|
||||
lib/girepository-1.0/GnomeDesktop-3.0.typelib
|
||||
lib/libgnome-desktop-3.a
|
||||
lib/libgnome-desktop-3.la
|
||||
@lib lib/libgnome-desktop-3.so.${LIBgnome-desktop-3_VERSION}
|
||||
lib/pkgconfig/gnome-desktop-3.0.pc
|
||||
share/gir-1.0/GnomeDesktop-3.0.gir
|
||||
share/gnome/gnome-version.xml
|
||||
share/gnome/help/fdl/
|
||||
share/gnome/help/fdl/C/
|
||||
share/gnome/help/fdl/C/fdl.xml
|
||||
share/gnome/help/fdl/ar/
|
||||
share/gnome/help/fdl/ar/fdl.xml
|
||||
share/gnome/help/fdl/ca/
|
||||
share/gnome/help/fdl/ca/fdl.xml
|
||||
share/gnome/help/fdl/de/
|
||||
share/gnome/help/fdl/de/fdl.xml
|
||||
share/gnome/help/fdl/el/
|
||||
share/gnome/help/fdl/el/fdl.xml
|
||||
share/gnome/help/fdl/es/
|
||||
share/gnome/help/fdl/es/fdl.xml
|
||||
share/gnome/help/fdl/eu/
|
||||
share/gnome/help/fdl/eu/fdl.xml
|
||||
share/gnome/help/fdl/fr/
|
||||
share/gnome/help/fdl/fr/fdl.xml
|
||||
share/gnome/help/fdl/hu/
|
||||
share/gnome/help/fdl/hu/fdl.xml
|
||||
share/gnome/help/fdl/ko/
|
||||
share/gnome/help/fdl/ko/fdl.xml
|
||||
share/gnome/help/fdl/oc/
|
||||
share/gnome/help/fdl/oc/fdl.xml
|
||||
share/gnome/help/fdl/pl/
|
||||
share/gnome/help/fdl/pl/fdl.xml
|
||||
share/gnome/help/fdl/sl/
|
||||
share/gnome/help/fdl/sl/fdl.xml
|
||||
share/gnome/help/fdl/sv/
|
||||
share/gnome/help/fdl/sv/fdl.xml
|
||||
share/gnome/help/fdl/uk/
|
||||
share/gnome/help/fdl/uk/fdl.xml
|
||||
share/gnome/help/fdl/vi/
|
||||
share/gnome/help/fdl/vi/fdl.xml
|
||||
share/gnome/help/fdl/zh_CN/
|
||||
share/gnome/help/fdl/zh_CN/fdl.xml
|
||||
share/gnome/help/gpl/
|
||||
share/gnome/help/gpl/C/
|
||||
share/gnome/help/gpl/C/gpl.xml
|
||||
share/gnome/help/gpl/ar/
|
||||
share/gnome/help/gpl/ar/gpl.xml
|
||||
share/gnome/help/gpl/ca/
|
||||
share/gnome/help/gpl/ca/gpl.xml
|
||||
share/gnome/help/gpl/cs/
|
||||
share/gnome/help/gpl/cs/gpl.xml
|
||||
share/gnome/help/gpl/de/
|
||||
share/gnome/help/gpl/de/gpl.xml
|
||||
share/gnome/help/gpl/el/
|
||||
share/gnome/help/gpl/el/gpl.xml
|
||||
share/gnome/help/gpl/es/
|
||||
share/gnome/help/gpl/es/gpl.xml
|
||||
share/gnome/help/gpl/eu/
|
||||
share/gnome/help/gpl/eu/gpl.xml
|
||||
share/gnome/help/gpl/fi/
|
||||
share/gnome/help/gpl/fi/gpl.xml
|
||||
share/gnome/help/gpl/fr/
|
||||
share/gnome/help/gpl/fr/gpl.xml
|
||||
share/gnome/help/gpl/hu/
|
||||
share/gnome/help/gpl/hu/gpl.xml
|
||||
share/gnome/help/gpl/ko/
|
||||
share/gnome/help/gpl/ko/gpl.xml
|
||||
share/gnome/help/gpl/nds/
|
||||
share/gnome/help/gpl/nds/gpl.xml
|
||||
share/gnome/help/gpl/oc/
|
||||
share/gnome/help/gpl/oc/gpl.xml
|
||||
share/gnome/help/gpl/pa/
|
||||
share/gnome/help/gpl/pa/gpl.xml
|
||||
share/gnome/help/gpl/sl/
|
||||
share/gnome/help/gpl/sl/gpl.xml
|
||||
share/gnome/help/gpl/sv/
|
||||
share/gnome/help/gpl/sv/gpl.xml
|
||||
share/gnome/help/gpl/uk/
|
||||
share/gnome/help/gpl/uk/gpl.xml
|
||||
share/gnome/help/gpl/vi/
|
||||
share/gnome/help/gpl/vi/gpl.xml
|
||||
share/gnome/help/gpl/zh_CN/
|
||||
share/gnome/help/gpl/zh_CN/gpl.xml
|
||||
share/gnome/help/lgpl/
|
||||
share/gnome/help/lgpl/C/
|
||||
share/gnome/help/lgpl/C/lgpl.xml
|
||||
share/gnome/help/lgpl/ar/
|
||||
share/gnome/help/lgpl/ar/lgpl.xml
|
||||
share/gnome/help/lgpl/de/
|
||||
share/gnome/help/lgpl/de/lgpl.xml
|
||||
share/gnome/help/lgpl/el/
|
||||
share/gnome/help/lgpl/el/lgpl.xml
|
||||
share/gnome/help/lgpl/es/
|
||||
share/gnome/help/lgpl/es/lgpl.xml
|
||||
share/gnome/help/lgpl/eu/
|
||||
share/gnome/help/lgpl/eu/lgpl.xml
|
||||
share/gnome/help/lgpl/fi/
|
||||
share/gnome/help/lgpl/fi/lgpl.xml
|
||||
share/gnome/help/lgpl/fr/
|
||||
share/gnome/help/lgpl/fr/lgpl.xml
|
||||
share/gnome/help/lgpl/hu/
|
||||
share/gnome/help/lgpl/hu/lgpl.xml
|
||||
share/gnome/help/lgpl/ko/
|
||||
share/gnome/help/lgpl/ko/lgpl.xml
|
||||
share/gnome/help/lgpl/oc/
|
||||
share/gnome/help/lgpl/oc/lgpl.xml
|
||||
share/gnome/help/lgpl/pa/
|
||||
share/gnome/help/lgpl/pa/lgpl.xml
|
||||
share/gnome/help/lgpl/pt_BR/
|
||||
share/gnome/help/lgpl/pt_BR/lgpl.xml
|
||||
share/gnome/help/lgpl/sl/
|
||||
share/gnome/help/lgpl/sl/lgpl.xml
|
||||
share/gnome/help/lgpl/sv/
|
||||
share/gnome/help/lgpl/sv/lgpl.xml
|
||||
share/gnome/help/lgpl/uk/
|
||||
share/gnome/help/lgpl/uk/lgpl.xml
|
||||
share/gnome/help/lgpl/vi/
|
||||
share/gnome/help/lgpl/vi/lgpl.xml
|
||||
share/gnome/help/lgpl/zh_CN/
|
||||
share/gnome/help/lgpl/zh_CN/lgpl.xml
|
||||
share/gtk-doc/html/gnome-desktop3/
|
||||
share/gtk-doc/html/gnome-desktop3/GnomeDesktopThumbnailFactory.html
|
||||
share/gtk-doc/html/gnome-desktop3/background.html
|
||||
share/gtk-doc/html/gnome-desktop3/gnome-desktop3-gnome-bg.html
|
||||
share/gtk-doc/html/gnome-desktop3/gnome-desktop3-gnome-desktop-utils.html
|
||||
share/gtk-doc/html/gnome-desktop3/gnome-desktop3-gnome-rr-config.html
|
||||
share/gtk-doc/html/gnome-desktop3/gnome-desktop3-gnome-rr-crtc.html
|
||||
share/gtk-doc/html/gnome-desktop3/gnome-desktop3-gnome-rr-labeler.html
|
||||
share/gtk-doc/html/gnome-desktop3/gnome-desktop3-gnome-rr-mode.html
|
||||
share/gtk-doc/html/gnome-desktop3/gnome-desktop3-gnome-rr-output.html
|
||||
share/gtk-doc/html/gnome-desktop3/gnome-desktop3-gnome-rr-screen.html
|
||||
share/gtk-doc/html/gnome-desktop3/gnome-desktop3.devhelp
|
||||
share/gtk-doc/html/gnome-desktop3/gnome-desktop3.devhelp2
|
||||
share/gtk-doc/html/gnome-desktop3/home.png
|
||||
share/gtk-doc/html/gnome-desktop3/index.html
|
||||
share/gtk-doc/html/gnome-desktop3/index.sgml
|
||||
share/gtk-doc/html/gnome-desktop3/intro.html
|
||||
share/gtk-doc/html/gnome-desktop3/left.png
|
||||
share/gtk-doc/html/gnome-desktop3/libgnome.html
|
||||
share/gtk-doc/html/gnome-desktop3/randr.html
|
||||
share/gtk-doc/html/gnome-desktop3/right.png
|
||||
share/gtk-doc/html/gnome-desktop3/style.css
|
||||
share/gtk-doc/html/gnome-desktop3/thumbnail.html
|
||||
share/gtk-doc/html/gnome-desktop3/up.png
|
||||
share/libgnome-desktop-3.0/
|
||||
share/libgnome-desktop-3.0/pnp.ids
|
||||
share/locale/af/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/am/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/an/
|
||||
share/locale/an/LC_MESSAGES/
|
||||
share/locale/an/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ar/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/as/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ast/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/az/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/be/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/be@latin/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/bg/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/bn/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/bn_IN/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/br/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/bs/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ca/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ca@valencia/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/crh/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/cs/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/cy/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/da/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/de/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/dz/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/el/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/en@shaw/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/en_CA/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/en_GB/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/eo/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/es/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/et/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/eu/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/fa/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/fi/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/fr/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/fur/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/fy/
|
||||
share/locale/fy/LC_MESSAGES/
|
||||
share/locale/fy/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ga/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/gl/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/gu/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/he/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/hi/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/hr/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/hu/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/hy/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/id/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ig/
|
||||
share/locale/ig/LC_MESSAGES/
|
||||
share/locale/ig/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/is/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/it/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ja/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ka/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/kg/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/kk/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/kn/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ko/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ku/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ky/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/li/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/lo/
|
||||
share/locale/lo/LC_MESSAGES/
|
||||
share/locale/lo/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/lt/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/lv/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/mai/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/mg/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/mi/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/mk/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ml/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/mn/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/mr/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ms/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/nb/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/nds/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ne/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/nl/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/nn/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/nso/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/oc/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/or/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/pa/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/pl/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ps/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/pt/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/pt_BR/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ro/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ru/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/rw/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/si/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/sk/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/sl/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/sq/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/sr/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/sr@latin/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/sv/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ta/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/te/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/th/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/tk/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/tr/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ug/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/uk/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/ur/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/uz/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/uz@cyrillic/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/vi/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/wa/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/xh/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/yi/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/yo/
|
||||
share/locale/yo/LC_MESSAGES/
|
||||
share/locale/yo/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/zh_CN/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/zh_HK/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/zh_TW/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/locale/zu/LC_MESSAGES/gnome-desktop-3.0.mo
|
||||
share/omf/fdl/
|
||||
share/omf/fdl/fdl-C.omf
|
||||
share/omf/fdl/fdl-ar.omf
|
||||
share/omf/fdl/fdl-ca.omf
|
||||
share/omf/fdl/fdl-de.omf
|
||||
share/omf/fdl/fdl-el.omf
|
||||
share/omf/fdl/fdl-es.omf
|
||||
share/omf/fdl/fdl-eu.omf
|
||||
share/omf/fdl/fdl-fr.omf
|
||||
share/omf/fdl/fdl-hu.omf
|
||||
share/omf/fdl/fdl-ko.omf
|
||||
share/omf/fdl/fdl-oc.omf
|
||||
share/omf/fdl/fdl-pl.omf
|
||||
share/omf/fdl/fdl-sl.omf
|
||||
share/omf/fdl/fdl-sv.omf
|
||||
share/omf/fdl/fdl-uk.omf
|
||||
share/omf/fdl/fdl-vi.omf
|
||||
share/omf/fdl/fdl-zh_CN.omf
|
||||
share/omf/gpl/
|
||||
share/omf/gpl/gpl-C.omf
|
||||
share/omf/gpl/gpl-ar.omf
|
||||
share/omf/gpl/gpl-ca.omf
|
||||
share/omf/gpl/gpl-cs.omf
|
||||
share/omf/gpl/gpl-de.omf
|
||||
share/omf/gpl/gpl-el.omf
|
||||
share/omf/gpl/gpl-es.omf
|
||||
share/omf/gpl/gpl-eu.omf
|
||||
share/omf/gpl/gpl-fi.omf
|
||||
share/omf/gpl/gpl-fr.omf
|
||||
share/omf/gpl/gpl-hu.omf
|
||||
share/omf/gpl/gpl-ko.omf
|
||||
share/omf/gpl/gpl-nds.omf
|
||||
share/omf/gpl/gpl-oc.omf
|
||||
share/omf/gpl/gpl-pa.omf
|
||||
share/omf/gpl/gpl-sl.omf
|
||||
share/omf/gpl/gpl-sv.omf
|
||||
share/omf/gpl/gpl-uk.omf
|
||||
share/omf/gpl/gpl-vi.omf
|
||||
share/omf/gpl/gpl-zh_CN.omf
|
||||
share/omf/lgpl/
|
||||
share/omf/lgpl/lgpl-C.omf
|
||||
share/omf/lgpl/lgpl-ar.omf
|
||||
share/omf/lgpl/lgpl-de.omf
|
||||
share/omf/lgpl/lgpl-el.omf
|
||||
share/omf/lgpl/lgpl-es.omf
|
||||
share/omf/lgpl/lgpl-eu.omf
|
||||
share/omf/lgpl/lgpl-fi.omf
|
||||
share/omf/lgpl/lgpl-fr.omf
|
||||
share/omf/lgpl/lgpl-hu.omf
|
||||
share/omf/lgpl/lgpl-ko.omf
|
||||
share/omf/lgpl/lgpl-oc.omf
|
||||
share/omf/lgpl/lgpl-pa.omf
|
||||
share/omf/lgpl/lgpl-pt_BR.omf
|
||||
share/omf/lgpl/lgpl-sl.omf
|
||||
share/omf/lgpl/lgpl-sv.omf
|
||||
share/omf/lgpl/lgpl-uk.omf
|
||||
share/omf/lgpl/lgpl-vi.omf
|
||||
share/omf/lgpl/lgpl-zh_CN.omf
|
||||
@exec %D/bin/update-desktop-database
|
||||
@unexec-delete %D/bin/update-desktop-database
|
Loading…
x
Reference in New Issue
Block a user