View | Details | Raw Unified | Return to bug 273268 | Differences between
and this patch

Collapse All | Expand All

(-)b/Mk/Uses/budgie.mk (-1 / +3 lines)
Lines 35-44 PLIST_SUB+= BUDGIE_PLUGINSDIR="lib/budgie-desktop/plugins" \ Link Here
35
		RAVEN_PLUGINSDIR="lib/budgie-desktop/raven-plugins"
35
		RAVEN_PLUGINSDIR="lib/budgie-desktop/raven-plugins"
36
36
37
# Available Budgie components are:
37
# Available Budgie components are:
38
_USE_BUDGIE_ALL= libbudgie raven screensaver
38
_USE_BUDGIE_ALL= libbudgie libmagpie raven screensaver
39
39
40
libbudgie_LIB_DEPENDS=		libbudgie-plugin.so:x11/budgie-desktop
40
libbudgie_LIB_DEPENDS=		libbudgie-plugin.so:x11/budgie-desktop
41
41
42
libmagpie_LIB_DEPENDS=		libmagpie-0.so:x11-wm/magpie
43
42
raven_LIB_DEPENDS=		libraven.so:x11/budgie-desktop
44
raven_LIB_DEPENDS=		libraven.so:x11/budgie-desktop
43
raven_RUN_DEPENDS=		budgie-desktop>0:x11/budgie-desktop
45
raven_RUN_DEPENDS=		budgie-desktop>0:x11/budgie-desktop
44
46
(-)b/x11-wm/Makefile (+1 lines)
Lines 68-73 Link Here
68
    SUBDIR += lxqt-panel
68
    SUBDIR += lxqt-panel
69
    SUBDIR += lxqt-session
69
    SUBDIR += lxqt-session
70
    SUBDIR += lxsession
70
    SUBDIR += lxsession
71
    SUBDIR += magpie
71
    SUBDIR += marco
72
    SUBDIR += marco
72
    SUBDIR += mcwm
73
    SUBDIR += mcwm
73
    SUBDIR += metacity
74
    SUBDIR += metacity
(-)b/x11-wm/magpie/Makefile (+57 lines)
Added Link Here
1
PORTNAME=	magpie
2
DISTVERSION=	0.9.2
3
CATEGORIES=	x11-wm budgie
4
MASTER_SITES=	BUDGIE
5
6
MAINTAINER=	duchateau.olivier@gmail.com
7
COMMENT=	X11 window manager and compositor library for Budgie desktop
8
WWW=		https://github.com/BuddiesOfBudgie/magpie
9
10
LICENSE=	GPLv2+
11
12
BUILD_DEPENDS=	evdev-proto>0:devel/evdev-proto \
13
		gnome-settings-daemon>0:sysutils/gnome-settings-daemon \
14
		gsettings-desktop-schemas>0:devel/gsettings-desktop-schemas \
15
		xkeyboard-config>0:x11/xkeyboard-config \
16
		zenity>0:x11/zenity
17
LIB_DEPENDS=	libcanberra-gtk3.so:audio/libcanberra-gtk3 \
18
		libcanberra.so:audio/libcanberra \
19
		libgudev-1.0.so:devel/libgudev \
20
		libdrm.so:graphics/libdrm \
21
		libinput.so:x11/libinput \
22
		libgbm.so:graphics/mesa-libs \
23
		libfontconfig.so:x11-fonts/fontconfig \
24
		libfreetype.so:print/freetype2 \
25
		libfribidi.so:converters/fribidi \
26
		libgraphene-1.0.so:graphics/graphene \
27
		libjson-glib-1.0.so:devel/json-glib \
28
		libstartup-notification-1.so:x11/startup-notification \
29
		libupower-glib.so:sysutils/upower \
30
		libxkbcommon.so:x11/libxkbcommon \
31
		libxkbfile.so:x11/libxkbfile \
32
		liblcms2.so:graphics/lcms2 \
33
		libdbus-1.so:devel/dbus \
34
		libcolord.so:graphics/colord
35
RUN_DEPENDS=	gnome-settings-daemon>0:sysutils/gnome-settings-daemon \
36
		gsettings-desktop-schemas>0:devel/gsettings-desktop-schemas \
37
		xkeyboard-config>0:x11/xkeyboard-config \
38
		zenity>0:x11/zenity
39
40
USES=		budgie compiler:c++0x gettext gl gnome localbase meson \
41
		pkgconfig tar:xz xorg
42
USE_GNOME=	atk cairo gdkpixbuf2 glib20 gtk30 introspection:build
43
USE_GL=		egl gbm
44
USE_XORG=	ice sm x11 xau xcb xcomposite xcursor xdamage xext xfixes xi \
45
		xinerama xrandr xrender xtst
46
USE_LDCONFIG=	yes
47
CFLAGS+=	-Wno-format-nonliteral
48
CPPFLAGS+=	-fno-omit-frame-pointer
49
MESON_ARGS=	-Dopengl_libname=libGL.so \
50
		-Dgles2_libname=libGLESv2 \
51
		-Dsystemd=false \
52
		-Dnative_backend=false \
53
		-Dremote_desktop=false \
54
		-Dlibwacom=false \
55
		-Dprofiler=false
56
57
.include <bsd.port.mk>
(-)b/x11-wm/magpie/distinfo (+3 lines)
Added Link Here
1
TIMESTAMP = 1692634413
2
SHA256 (budgie/magpie-0.9.2.tar.xz) = 4109fb76621a7f58b4182f42fa8395688eae27dcb05227c3f56812356ba9fdb2
3
SIZE (budgie/magpie-0.9.2.tar.xz) = 2738972
(-)b/x11-wm/magpie/files/patch-clutter_clutter_clutter-frame-clock.c (+29 lines)
Added Link Here
1
--- clutter/clutter/clutter-frame-clock.c.orig	2023-02-13 18:12:26 UTC
2
+++ clutter/clutter/clutter-frame-clock.c
3
@@ -776,7 +776,7 @@ clutter_frame_clock_get_max_render_time_debug_info (Cl
4
   GString *string;
5
 
6
   string = g_string_new (NULL);
7
-  g_string_append_printf (string, "Max render time: %ld µs",
8
+  g_string_append_printf (string, "Max render time: %lld µs",
9
                           clutter_frame_clock_compute_max_render_time_us (frame_clock));
10
 
11
   if (frame_clock->got_measurements_last_frame)
12
@@ -797,13 +797,13 @@ clutter_frame_clock_get_max_render_time_debug_info (Cl
13
              frame_clock->swap_to_flip_us.values[i]);
14
     }
15
 
16
-  g_string_append_printf (string, "\nVblank duration: %ld µs +",
17
+  g_string_append_printf (string, "\nVblank duration: %lld µs +",
18
                           frame_clock->vblank_duration_us);
19
-  g_string_append_printf (string, "\nDispatch to swap: %ld µs +",
20
+  g_string_append_printf (string, "\nDispatch to swap: %lld µs +",
21
                           max_dispatch_to_swap_us);
22
-  g_string_append_printf (string, "\nmax(Swap to rendering done: %ld µs,",
23
+  g_string_append_printf (string, "\nmax(Swap to rendering done: %lld µs,",
24
                           max_swap_to_rendering_done_us);
25
-  g_string_append_printf (string, "\nSwap to flip: %ld µs) +",
26
+  g_string_append_printf (string, "\nSwap to flip: %lld µs) +",
27
                           max_swap_to_flip_us);
28
   g_string_append_printf (string, "\nConstant: %d µs",
29
                           clutter_max_render_time_constant_us);
(-)b/x11-wm/magpie/files/patch-cogl_cogl_cogl-dma-buf-handle.c (+34 lines)
Added Link Here
1
$OpenBSD: patch-cogl_cogl_cogl-dma-buf-handle_c,v 1.2 2021/06/04 10:56:17 ajacoutot Exp $
2
3
Index: cogl/cogl/cogl-dma-buf-handle.c
4
--- cogl/cogl/cogl-dma-buf-handle.c.orig	2023-06-01 15:35:15 UTC
5
+++ cogl/cogl/cogl-dma-buf-handle.c
6
@@ -36,7 +36,28 @@
7
 
8
 #include <errno.h>
9
 #include <gio/gio.h>
10
+#ifdef __linux__
11
 #include <linux/dma-buf.h>
12
+#else // bundle on BSDs
13
+typedef uint64_t __u64;
14
+
15
+// From https://github.com/evadot/drm-subtree or https://reviews.freebsd.org/D23085
16
+struct dma_buf_sync
17
+{
18
+  __u64 flags;
19
+};
20
+
21
+#define DMA_BUF_SYNC_READ  (1 << 0)
22
+#define DMA_BUF_SYNC_WRITE (2 << 0)
23
+#define DMA_BUF_SYNC_RW    (DMA_BUF_SYNC_READ | DMA_BUF_SYNC_WRITE)
24
+#define DMA_BUF_SYNC_START (0 << 2)
25
+#define DMA_BUF_SYNC_END   (1 << 2)
26
+#define DMA_BUF_SYNC_VALID_FLAGS_MASK \
27
+    (DMA_BUF_SYNC_RW | DMA_BUF_SYNC_END)
28
+
29
+#define DMA_BUF_BASE       'b'
30
+#define DMA_BUF_IOCTL_SYNC _IOW(DMA_BUF_BASE, 0, struct dma_buf_sync)
31
+#endif
32
 #include <sys/ioctl.h>
33
 #include <sys/mman.h>
34
 #include <unistd.h>
(-)b/x11-wm/magpie/files/patch-data_meson.build (+20 lines)
Added Link Here
1
--- data/meson.build.orig	2023-07-10 19:45:21 UTC
2
+++ data/meson.build
3
@@ -47,12 +47,12 @@ if have_shared_components
4
   install_data(['mutter-schemas.convert'],
5
     install_dir: join_paths(datadir, 'GConf/gsettings'),
6
   )
7
+endif
8
 
9
-  if have_libgudev
10
-    install_data(['61-magpie.rules'],
11
-      install_dir: join_paths(udev_dir, 'rules.d'),
12
-    )
13
-  endif
14
+if have_libgudev
15
+  install_data(['61-magpie.rules'],
16
+    install_dir: join_paths(udev_dir, 'rules.d'),
17
+  )
18
 endif
19
 
20
 subdir('dbus-interfaces')
(-)b/x11-wm/magpie/files/patch-meson.build (+20 lines)
Added Link Here
1
--- meson.build.orig	2023-07-10 19:45:21 UTC
2
+++ meson.build
3
@@ -224,11 +224,15 @@ have_libgudev = get_option('udev')
4
 if have_libgudev
5
   libudev_dep = dependency('libudev', version: udev_req)
6
   gudev_dep = dependency('gudev-1.0', version: gudev_req)
7
-  udev_dep = dependency('udev')
8
+  udev_dep = dependency('udev', required: false)
9
 
10
   udev_dir = get_option('udev_dir')
11
   if udev_dir == ''
12
-    udev_dir = udev_dep.get_pkgconfig_variable('udevdir')
13
+    if udev_dep.found()
14
+      udev_dir = udev_dep.get_pkgconfig_variable('udevdir')
15
+    else
16
+      udev_dir = libdir / 'udev/rules.d'
17
+    endif
18
   endif
19
 endif
20
 
(-)b/x11-wm/magpie/files/patch-src_backends_meta-stage-impl.c (+17 lines)
Added Link Here
1
--- src/backends/meta-stage-impl.c.orig	2023-02-13 18:12:26 UTC
2
+++ src/backends/meta-stage-impl.c
3
@@ -551,10 +551,14 @@ meta_stage_impl_redraw_view_primary (MetaStageImpl    
4
    * artefacts.
5
    */
6
   /* swap_region does not need damage history, set it up before that */
7
+#if 0
8
   if (use_clipped_redraw)
9
     swap_region = cairo_region_copy (fb_clip_region);
10
   else
11
     swap_region = cairo_region_create ();
12
+#else
13
+    swap_region = cairo_region_copy (fb_clip_region);
14
+#endif
15
 
16
   swap_with_damage = FALSE;
17
   if (has_buffer_age)
(-)b/x11-wm/magpie/files/patch-src_backends_x11_meta-seat-x11.c (+44 lines)
Added Link Here
1
$OpenBSD: patch-src_backends_x11_meta-seat-x11_c,v 1.3 2021/06/04 10:56:17 ajacoutot Exp $
2
3
Index: src/backends/x11/meta-seat-x11.c
4
--- src/backends/x11/meta-seat-x11.c.orig
5
+++ src/backends/x11/meta-seat-x11.c
6
@@ -17,8 +17,9 @@
7
  * Author: Carlos Garnacho <carlosg@gnome.org>
8
  */
9
 #include "config.h"
10
-
11
+#ifdef __linux__
12
 #include <linux/input-event-codes.h>
13
+#endif
14
 #include <X11/extensions/XInput2.h>
15
 #include <X11/extensions/XKB.h>
16
 
17
@@ -1733,7 +1734,7 @@ get_source_device_checked (MetaSeatX11   *seat,
18
 
19
   return source_device;
20
 }
21
-
22
+#ifdef __linux__
23
 static uint32_t
24
 evdev_button_code (uint32_t x_button)
25
 {
26
@@ -1762,7 +1763,7 @@ evdev_button_code (uint32_t x_button)
27
 
28
   return button;
29
 }
30
-
31
+#endif
32
 gboolean
33
 meta_seat_x11_translate_event (MetaSeatX11  *seat,
34
                                XEvent       *xevent,
35
@@ -2050,7 +2051,9 @@ meta_seat_x11_translate_event (MetaSeatX11  *seat,
36
             event->button.time = xev->time;
37
             translate_coords (stage_x11, xev->event_x, xev->event_y, &event->button.x, &event->button.y);
38
             event->button.button = xev->detail;
39
+#ifdef __linux__
40
             event->button.evdev_code = evdev_button_code (xev->detail);
41
+#endif
42
             meta_input_device_x11_translate_state (event,
43
                                                    &xev->mods,
44
                                                    &xev->buttons,
(-)b/x11-wm/magpie/pkg-descr (+5 lines)
Added Link Here
1
Magpie is a X11 window manager and compositor library.
2
It is a soft-fork of GNOME's mutter at version 43 tailored to the requirements
3
of the Budgie Desktop 10 series. Magpie allows mutter based desktops such as
4
GNOME Shell to co-exist since the key-components such as libmagpie are
5
separated by both name and file-system install location.
(-)b/x11-wm/magpie/pkg-plist (+336 lines)
Added Link Here
1
include/magpie-0/clutter/cally/cally-actor.h
2
include/magpie-0/clutter/cally/cally-clone.h
3
include/magpie-0/clutter/cally/cally-factory.h
4
include/magpie-0/clutter/cally/cally-main.h
5
include/magpie-0/clutter/cally/cally-root.h
6
include/magpie-0/clutter/cally/cally-stage.h
7
include/magpie-0/clutter/cally/cally-text.h
8
include/magpie-0/clutter/cally/cally-util.h
9
include/magpie-0/clutter/cally/cally.h
10
include/magpie-0/clutter/clutter/clutter-action.h
11
include/magpie-0/clutter/clutter/clutter-actor-meta.h
12
include/magpie-0/clutter/clutter/clutter-actor.h
13
include/magpie-0/clutter/clutter/clutter-align-constraint.h
14
include/magpie-0/clutter/clutter/clutter-animatable.h
15
include/magpie-0/clutter/clutter/clutter-autocleanups.h
16
include/magpie-0/clutter/clutter/clutter-backend.h
17
include/magpie-0/clutter/clutter/clutter-bin-layout.h
18
include/magpie-0/clutter/clutter/clutter-bind-constraint.h
19
include/magpie-0/clutter/clutter/clutter-binding-pool.h
20
include/magpie-0/clutter/clutter/clutter-blur-effect.h
21
include/magpie-0/clutter/clutter/clutter-box-layout.h
22
include/magpie-0/clutter/clutter/clutter-brightness-contrast-effect.h
23
include/magpie-0/clutter/clutter/clutter-cairo.h
24
include/magpie-0/clutter/clutter/clutter-canvas.h
25
include/magpie-0/clutter/clutter/clutter-child-meta.h
26
include/magpie-0/clutter/clutter/clutter-click-action.h
27
include/magpie-0/clutter/clutter/clutter-clone.h
28
include/magpie-0/clutter/clutter/clutter-color-state.h
29
include/magpie-0/clutter/clutter/clutter-color-static.h
30
include/magpie-0/clutter/clutter/clutter-color.h
31
include/magpie-0/clutter/clutter/clutter-colorize-effect.h
32
include/magpie-0/clutter/clutter/clutter-constraint.h
33
include/magpie-0/clutter/clutter/clutter-container.h
34
include/magpie-0/clutter/clutter/clutter-content.h
35
include/magpie-0/clutter/clutter/clutter-deform-effect.h
36
include/magpie-0/clutter/clutter/clutter-deprecated.h
37
include/magpie-0/clutter/clutter/clutter-desaturate-effect.h
38
include/magpie-0/clutter/clutter/clutter-effect.h
39
include/magpie-0/clutter/clutter/clutter-enum-types.h
40
include/magpie-0/clutter/clutter/clutter-enums.h
41
include/magpie-0/clutter/clutter/clutter-event.h
42
include/magpie-0/clutter/clutter/clutter-fixed-layout.h
43
include/magpie-0/clutter/clutter/clutter-flow-layout.h
44
include/magpie-0/clutter/clutter/clutter-frame-clock.h
45
include/magpie-0/clutter/clutter/clutter-frame.h
46
include/magpie-0/clutter/clutter/clutter-gesture-action.h
47
include/magpie-0/clutter/clutter/clutter-grab.h
48
include/magpie-0/clutter/clutter/clutter-grid-layout.h
49
include/magpie-0/clutter/clutter/clutter-image.h
50
include/magpie-0/clutter/clutter/clutter-input-device-tool.h
51
include/magpie-0/clutter/clutter/clutter-input-device.h
52
include/magpie-0/clutter/clutter/clutter-input-focus.h
53
include/magpie-0/clutter/clutter/clutter-input-method.h
54
include/magpie-0/clutter/clutter/clutter-interval.h
55
include/magpie-0/clutter/clutter/clutter-keyframe-transition.h
56
include/magpie-0/clutter/clutter/clutter-keymap.h
57
include/magpie-0/clutter/clutter/clutter-keysyms.h
58
include/magpie-0/clutter/clutter/clutter-layout-manager.h
59
include/magpie-0/clutter/clutter/clutter-layout-meta.h
60
include/magpie-0/clutter/clutter/clutter-macros.h
61
include/magpie-0/clutter/clutter/clutter-main.h
62
include/magpie-0/clutter/clutter/clutter-marshal.h
63
include/magpie-0/clutter/clutter/clutter-mutter.h
64
include/magpie-0/clutter/clutter/clutter-offscreen-effect.h
65
include/magpie-0/clutter/clutter/clutter-page-turn-effect.h
66
include/magpie-0/clutter/clutter/clutter-paint-context.h
67
include/magpie-0/clutter/clutter/clutter-paint-node.h
68
include/magpie-0/clutter/clutter/clutter-paint-nodes.h
69
include/magpie-0/clutter/clutter/clutter-pan-action.h
70
include/magpie-0/clutter/clutter/clutter-path-constraint.h
71
include/magpie-0/clutter/clutter/clutter-path.h
72
include/magpie-0/clutter/clutter/clutter-pick-context.h
73
include/magpie-0/clutter/clutter/clutter-property-transition.h
74
include/magpie-0/clutter/clutter/clutter-rotate-action.h
75
include/magpie-0/clutter/clutter/clutter-script.h
76
include/magpie-0/clutter/clutter/clutter-scriptable.h
77
include/magpie-0/clutter/clutter/clutter-scroll-actor.h
78
include/magpie-0/clutter/clutter/clutter-seat.h
79
include/magpie-0/clutter/clutter/clutter-settings.h
80
include/magpie-0/clutter/clutter/clutter-shader-effect.h
81
include/magpie-0/clutter/clutter/clutter-shader-types.h
82
include/magpie-0/clutter/clutter/clutter-snap-constraint.h
83
include/magpie-0/clutter/clutter/clutter-stage-manager.h
84
include/magpie-0/clutter/clutter/clutter-stage-view.h
85
include/magpie-0/clutter/clutter/clutter-stage.h
86
include/magpie-0/clutter/clutter/clutter-swipe-action.h
87
include/magpie-0/clutter/clutter/clutter-tap-action.h
88
include/magpie-0/clutter/clutter/clutter-text-buffer.h
89
include/magpie-0/clutter/clutter/clutter-text.h
90
include/magpie-0/clutter/clutter/clutter-texture-content.h
91
include/magpie-0/clutter/clutter/clutter-timeline.h
92
include/magpie-0/clutter/clutter/clutter-transition-group.h
93
include/magpie-0/clutter/clutter/clutter-transition.h
94
include/magpie-0/clutter/clutter/clutter-types.h
95
include/magpie-0/clutter/clutter/clutter-units.h
96
include/magpie-0/clutter/clutter/clutter-virtual-input-device.h
97
include/magpie-0/clutter/clutter/clutter-zoom-action.h
98
include/magpie-0/clutter/clutter/clutter.h
99
include/magpie-0/clutter/clutter/deprecated/clutter-box-layout.h
100
include/magpie-0/clutter/clutter/deprecated/clutter-container.h
101
include/magpie-0/clutter/clutter/deprecated/clutter-timeline.h
102
include/magpie-0/cogl/cogl-pango/cogl-pango.h
103
include/magpie-0/cogl/cogl/cogl-atlas-texture.h
104
include/magpie-0/cogl/cogl/cogl-attribute-buffer.h
105
include/magpie-0/cogl/cogl/cogl-attribute.h
106
include/magpie-0/cogl/cogl/cogl-bitmap.h
107
include/magpie-0/cogl/cogl/cogl-buffer.h
108
include/magpie-0/cogl/cogl/cogl-color.h
109
include/magpie-0/cogl/cogl/cogl-context.h
110
include/magpie-0/cogl/cogl/cogl-defines.h
111
include/magpie-0/cogl/cogl/cogl-depth-state.h
112
include/magpie-0/cogl/cogl/cogl-display.h
113
include/magpie-0/cogl/cogl/cogl-dma-buf-handle.h
114
include/magpie-0/cogl/cogl/cogl-egl-defines.h
115
include/magpie-0/cogl/cogl/cogl-egl.h
116
include/magpie-0/cogl/cogl/cogl-fence.h
117
include/magpie-0/cogl/cogl/cogl-frame-info.h
118
include/magpie-0/cogl/cogl/cogl-framebuffer.h
119
include/magpie-0/cogl/cogl/cogl-glib-source.h
120
include/magpie-0/cogl/cogl/cogl-glx.h
121
include/magpie-0/cogl/cogl/cogl-graphene.h
122
include/magpie-0/cogl/cogl/cogl-gtype-private.h
123
include/magpie-0/cogl/cogl/cogl-index-buffer.h
124
include/magpie-0/cogl/cogl/cogl-indices.h
125
include/magpie-0/cogl/cogl/cogl-macros.h
126
include/magpie-0/cogl/cogl/cogl-matrix-stack.h
127
include/magpie-0/cogl/cogl/cogl-meta-texture.h
128
include/magpie-0/cogl/cogl/cogl-object.h
129
include/magpie-0/cogl/cogl/cogl-offscreen.h
130
include/magpie-0/cogl/cogl/cogl-onscreen-template.h
131
include/magpie-0/cogl/cogl/cogl-onscreen.h
132
include/magpie-0/cogl/cogl/cogl-output.h
133
include/magpie-0/cogl/cogl/cogl-pipeline-layer-state.h
134
include/magpie-0/cogl/cogl/cogl-pipeline-state.h
135
include/magpie-0/cogl/cogl/cogl-pipeline.h
136
include/magpie-0/cogl/cogl/cogl-pixel-buffer.h
137
include/magpie-0/cogl/cogl/cogl-pixel-format.h
138
include/magpie-0/cogl/cogl/cogl-poll.h
139
include/magpie-0/cogl/cogl/cogl-primitive-texture.h
140
include/magpie-0/cogl/cogl/cogl-primitive.h
141
include/magpie-0/cogl/cogl/cogl-renderer.h
142
include/magpie-0/cogl/cogl/cogl-scanout.h
143
include/magpie-0/cogl/cogl/cogl-snippet.h
144
include/magpie-0/cogl/cogl/cogl-sub-texture.h
145
include/magpie-0/cogl/cogl/cogl-swap-chain.h
146
include/magpie-0/cogl/cogl/cogl-texture-2d-sliced.h
147
include/magpie-0/cogl/cogl/cogl-texture-2d.h
148
include/magpie-0/cogl/cogl/cogl-texture-pixmap-x11.h
149
include/magpie-0/cogl/cogl/cogl-texture.h
150
include/magpie-0/cogl/cogl/cogl-trace.h
151
include/magpie-0/cogl/cogl/cogl-types.h
152
include/magpie-0/cogl/cogl/cogl-xlib-renderer.h
153
include/magpie-0/cogl/cogl/cogl-xlib.h
154
include/magpie-0/cogl/cogl/cogl.h
155
include/magpie-0/cogl/cogl/cogl1-context.h
156
include/magpie-0/cogl/cogl/deprecated/cogl-clutter.h
157
include/magpie-0/cogl/cogl/deprecated/cogl-shader.h
158
include/magpie-0/cogl/cogl/deprecated/cogl-type-casts.h
159
include/magpie-0/cogl/cogl/gl-prototypes/cogl-core-functions.h
160
include/magpie-0/cogl/cogl/gl-prototypes/cogl-gles2-functions.h
161
include/magpie-0/cogl/cogl/gl-prototypes/cogl-glsl-functions.h
162
include/magpie-0/cogl/cogl/gl-prototypes/cogl-in-gles-core-functions.h
163
include/magpie-0/cogl/cogl/gl-prototypes/cogl-in-gles2-core-functions.h
164
include/magpie-0/meta/barrier.h
165
include/magpie-0/meta/boxes.h
166
include/magpie-0/meta/common.h
167
include/magpie-0/meta/compositor-mutter.h
168
include/magpie-0/meta/compositor.h
169
include/magpie-0/meta/display.h
170
include/magpie-0/meta/group.h
171
include/magpie-0/meta/keybindings.h
172
include/magpie-0/meta/main.h
173
include/magpie-0/meta/meta-backend.h
174
include/magpie-0/meta/meta-background-actor.h
175
include/magpie-0/meta/meta-background-content.h
176
include/magpie-0/meta/meta-background-group.h
177
include/magpie-0/meta/meta-background-image.h
178
include/magpie-0/meta/meta-background.h
179
include/magpie-0/meta/meta-close-dialog.h
180
include/magpie-0/meta/meta-context.h
181
include/magpie-0/meta/meta-cursor-tracker.h
182
include/magpie-0/meta/meta-dnd.h
183
include/magpie-0/meta/meta-enum-types.h
184
include/magpie-0/meta/meta-enums.h
185
include/magpie-0/meta/meta-idle-monitor.h
186
include/magpie-0/meta/meta-inhibit-shortcuts-dialog.h
187
include/magpie-0/meta/meta-later.h
188
include/magpie-0/meta/meta-launch-context.h
189
include/magpie-0/meta/meta-monitor-manager.h
190
include/magpie-0/meta/meta-plugin.h
191
include/magpie-0/meta/meta-remote-access-controller.h
192
include/magpie-0/meta/meta-selection-source-memory.h
193
include/magpie-0/meta/meta-selection-source.h
194
include/magpie-0/meta/meta-selection.h
195
include/magpie-0/meta/meta-settings.h
196
include/magpie-0/meta/meta-shadow-factory.h
197
include/magpie-0/meta/meta-shaped-texture.h
198
include/magpie-0/meta/meta-sound-player.h
199
include/magpie-0/meta/meta-stage.h
200
include/magpie-0/meta/meta-startup-notification.h
201
include/magpie-0/meta/meta-window-actor.h
202
include/magpie-0/meta/meta-window-group.h
203
include/magpie-0/meta/meta-window-shape.h
204
include/magpie-0/meta/meta-workspace-manager.h
205
include/magpie-0/meta/meta-x11-display.h
206
include/magpie-0/meta/meta-x11-errors.h
207
include/magpie-0/meta/prefs.h
208
include/magpie-0/meta/theme.h
209
include/magpie-0/meta/types.h
210
include/magpie-0/meta/util.h
211
include/magpie-0/meta/window.h
212
include/magpie-0/meta/workspace.h
213
lib/libmagpie-0.so
214
lib/libmagpie-0.so.0
215
lib/libmagpie-0.so.0.0.0
216
lib/magpie-0/Cally-0.gir
217
lib/magpie-0/Cally-0.typelib
218
lib/magpie-0/Clutter-0.gir
219
lib/magpie-0/Clutter-0.typelib
220
lib/magpie-0/Cogl-0.gir
221
lib/magpie-0/Cogl-0.typelib
222
lib/magpie-0/CoglPango-0.gir
223
lib/magpie-0/CoglPango-0.typelib
224
lib/magpie-0/Meta-0.gir
225
lib/magpie-0/Meta-0.typelib
226
lib/magpie-0/libmagpie-clutter-0.so
227
lib/magpie-0/libmagpie-clutter-0.so.0
228
lib/magpie-0/libmagpie-clutter-0.so.0.0.0
229
lib/magpie-0/libmagpie-cogl-0.so
230
lib/magpie-0/libmagpie-cogl-0.so.0
231
lib/magpie-0/libmagpie-cogl-0.so.0.0.0
232
lib/magpie-0/libmagpie-cogl-pango-0.so
233
lib/magpie-0/libmagpie-cogl-pango-0.so.0
234
lib/magpie-0/libmagpie-cogl-pango-0.so.0.0.0
235
lib/udev/rules.d/rules.d/61-magpie.rules
236
libdata/pkgconfig/libmagpie-0.pc
237
libdata/pkgconfig/magpie-clutter-0.pc
238
libdata/pkgconfig/magpie-cogl-0.pc
239
libdata/pkgconfig/magpie-cogl-pango-0.pc
240
share/locale/ab/LC_MESSAGES/magpie.mo
241
share/locale/am/LC_MESSAGES/magpie.mo
242
share/locale/ar/LC_MESSAGES/magpie.mo
243
share/locale/as/LC_MESSAGES/magpie.mo
244
share/locale/ast/LC_MESSAGES/magpie.mo
245
share/locale/az/LC_MESSAGES/magpie.mo
246
share/locale/be/LC_MESSAGES/magpie.mo
247
share/locale/be@latin/LC_MESSAGES/magpie.mo
248
share/locale/bg/LC_MESSAGES/magpie.mo
249
share/locale/bn/LC_MESSAGES/magpie.mo
250
share/locale/bn_IN/LC_MESSAGES/magpie.mo
251
share/locale/br/LC_MESSAGES/magpie.mo
252
share/locale/bs/LC_MESSAGES/magpie.mo
253
share/locale/ca/LC_MESSAGES/magpie.mo
254
share/locale/ca@valencia/LC_MESSAGES/magpie.mo
255
share/locale/cs/LC_MESSAGES/magpie.mo
256
share/locale/cy/LC_MESSAGES/magpie.mo
257
share/locale/da/LC_MESSAGES/magpie.mo
258
share/locale/de/LC_MESSAGES/magpie.mo
259
share/locale/dz/LC_MESSAGES/magpie.mo
260
share/locale/el/LC_MESSAGES/magpie.mo
261
share/locale/en_CA/LC_MESSAGES/magpie.mo
262
share/locale/en_GB/LC_MESSAGES/magpie.mo
263
share/locale/eo/LC_MESSAGES/magpie.mo
264
share/locale/es/LC_MESSAGES/magpie.mo
265
share/locale/et/LC_MESSAGES/magpie.mo
266
share/locale/eu/LC_MESSAGES/magpie.mo
267
share/locale/fa/LC_MESSAGES/magpie.mo
268
share/locale/fi/LC_MESSAGES/magpie.mo
269
share/locale/fr/LC_MESSAGES/magpie.mo
270
share/locale/fur/LC_MESSAGES/magpie.mo
271
share/locale/ga/LC_MESSAGES/magpie.mo
272
share/locale/gd/LC_MESSAGES/magpie.mo
273
share/locale/gl/LC_MESSAGES/magpie.mo
274
share/locale/gu/LC_MESSAGES/magpie.mo
275
share/locale/ha/LC_MESSAGES/magpie.mo
276
share/locale/he/LC_MESSAGES/magpie.mo
277
share/locale/hi/LC_MESSAGES/magpie.mo
278
share/locale/hr/LC_MESSAGES/magpie.mo
279
share/locale/hu/LC_MESSAGES/magpie.mo
280
share/locale/hy/LC_MESSAGES/magpie.mo
281
share/locale/id/LC_MESSAGES/magpie.mo
282
share/locale/ig/LC_MESSAGES/magpie.mo
283
share/locale/is/LC_MESSAGES/magpie.mo
284
share/locale/it/LC_MESSAGES/magpie.mo
285
share/locale/ja/LC_MESSAGES/magpie.mo
286
share/locale/ka/LC_MESSAGES/magpie.mo
287
share/locale/kk/LC_MESSAGES/magpie.mo
288
share/locale/kn/LC_MESSAGES/magpie.mo
289
share/locale/ko/LC_MESSAGES/magpie.mo
290
share/locale/ku/LC_MESSAGES/magpie.mo
291
share/locale/la/LC_MESSAGES/magpie.mo
292
share/locale/lt/LC_MESSAGES/magpie.mo
293
share/locale/lv/LC_MESSAGES/magpie.mo
294
share/locale/mai/LC_MESSAGES/magpie.mo
295
share/locale/mg/LC_MESSAGES/magpie.mo
296
share/locale/mk/LC_MESSAGES/magpie.mo
297
share/locale/ml/LC_MESSAGES/magpie.mo
298
share/locale/mn/LC_MESSAGES/magpie.mo
299
share/locale/mr/LC_MESSAGES/magpie.mo
300
share/locale/ms/LC_MESSAGES/magpie.mo
301
share/locale/nb/LC_MESSAGES/magpie.mo
302
share/locale/nds/LC_MESSAGES/magpie.mo
303
share/locale/ne/LC_MESSAGES/magpie.mo
304
share/locale/nl/LC_MESSAGES/magpie.mo
305
share/locale/nn/LC_MESSAGES/magpie.mo
306
share/locale/oc/LC_MESSAGES/magpie.mo
307
share/locale/or/LC_MESSAGES/magpie.mo
308
share/locale/pa/LC_MESSAGES/magpie.mo
309
share/locale/pl/LC_MESSAGES/magpie.mo
310
share/locale/pt/LC_MESSAGES/magpie.mo
311
share/locale/pt_BR/LC_MESSAGES/magpie.mo
312
share/locale/ro/LC_MESSAGES/magpie.mo
313
share/locale/ru/LC_MESSAGES/magpie.mo
314
share/locale/rw/LC_MESSAGES/magpie.mo
315
share/locale/si/LC_MESSAGES/magpie.mo
316
share/locale/sk/LC_MESSAGES/magpie.mo
317
share/locale/sl/LC_MESSAGES/magpie.mo
318
share/locale/sq/LC_MESSAGES/magpie.mo
319
share/locale/sr/LC_MESSAGES/magpie.mo
320
share/locale/sr@latin/LC_MESSAGES/magpie.mo
321
share/locale/sv/LC_MESSAGES/magpie.mo
322
share/locale/ta/LC_MESSAGES/magpie.mo
323
share/locale/te/LC_MESSAGES/magpie.mo
324
share/locale/tg/LC_MESSAGES/magpie.mo
325
share/locale/th/LC_MESSAGES/magpie.mo
326
share/locale/tk/LC_MESSAGES/magpie.mo
327
share/locale/tr/LC_MESSAGES/magpie.mo
328
share/locale/ug/LC_MESSAGES/magpie.mo
329
share/locale/uk/LC_MESSAGES/magpie.mo
330
share/locale/vi/LC_MESSAGES/magpie.mo
331
share/locale/wa/LC_MESSAGES/magpie.mo
332
share/locale/xh/LC_MESSAGES/magpie.mo
333
share/locale/yo/LC_MESSAGES/magpie.mo
334
share/locale/zh_CN/LC_MESSAGES/magpie.mo
335
share/locale/zh_HK/LC_MESSAGES/magpie.mo
336
share/locale/zh_TW/LC_MESSAGES/magpie.mo

Return to bug 273268