diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-02-18 04:10:54 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2011-02-18 04:10:54 +0800 |
commit | fc31b5c66b2d19b95023d54cf74d22ccf954febb (patch) | |
tree | 314967683faf3d42ff1016ee35e196f8c57b0276 /graphics | |
parent | e23c4a5dffb877481557b27be7aeeb22ebfd4533 (diff) | |
download | marcuscom-ports-fc31b5c66b2d19b95023d54cf74d22ccf954febb.tar marcuscom-ports-fc31b5c66b2d19b95023d54cf74d22ccf954febb.tar.gz marcuscom-ports-fc31b5c66b2d19b95023d54cf74d22ccf954febb.tar.bz2 marcuscom-ports-fc31b5c66b2d19b95023d54cf74d22ccf954febb.tar.lz marcuscom-ports-fc31b5c66b2d19b95023d54cf74d22ccf954febb.tar.xz marcuscom-ports-fc31b5c66b2d19b95023d54cf74d22ccf954febb.tar.zst marcuscom-ports-fc31b5c66b2d19b95023d54cf74d22ccf954febb.zip |
Fix with newest libpeas.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@15236 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/eog3/Makefile | 3 | ||||
-rw-r--r-- | graphics/eog3/files/patch-libpeas | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/graphics/eog3/Makefile b/graphics/eog3/Makefile index 859c9b5e8..fb78f12ef 100644 --- a/graphics/eog3/Makefile +++ b/graphics/eog3/Makefile @@ -3,11 +3,12 @@ # Whom: Joe Marcus Clarke <marcus@FreeBSD.org> # # $FreeBSD$ -# $MCom: ports/graphics/eog3/Makefile,v 1.2 2011/01/18 15:56:53 kwm Exp $ +# $MCom: ports/graphics/eog3/Makefile,v 1.3 2011/01/31 23:24:23 kwm Exp $ # PORTNAME= eog PORTVERSION= 2.91.7 +PORTREVISION= 1 CATEGORIES= graphics gnome MASTER_SITES= GNOME DIST_SUBDIR= gnome3 diff --git a/graphics/eog3/files/patch-libpeas b/graphics/eog3/files/patch-libpeas new file mode 100644 index 000000000..8b096f6e4 --- /dev/null +++ b/graphics/eog3/files/patch-libpeas @@ -0,0 +1,22 @@ +--- src/eog-preferences-dialog.c.orig 2011-02-17 21:04:32.000000000 +0000 ++++ src/eog-preferences-dialog.c 2011-02-17 21:05:23.000000000 +0000 +@@ -255,7 +255,7 @@ eog_preferences_dialog_constructor (GTyp + g_settings_bind (priv->fullscreen_settings, EOG_CONF_FULLSCREEN_SECONDS, + seconds_spin, "value", G_SETTINGS_BIND_DEFAULT); + +- plugin_manager = peas_gtk_plugin_manager_new (); ++ plugin_manager = peas_gtk_plugin_manager_new (NULL); + + g_assert (plugin_manager != NULL); + +--- src/eog-plugin-engine.c.orig 2011-02-17 21:04:23.000000000 +0000 ++++ src/eog-plugin-engine.c 2011-02-17 21:05:11.000000000 +0000 +@@ -126,8 +126,6 @@ eog_plugin_engine_new (void) + + /* Disable python and seed bindings as they are not working very + * well with eog yet (e.g. are having ref counting issues). */ +- peas_engine_disable_loader (PEAS_ENGINE (engine), "python"); +- peas_engine_disable_loader (PEAS_ENGINE (engine), "seed"); + + user_plugin_path = g_build_filename (eog_util_dot_dir (), + USER_EOG_PLUGINS_LOCATION, NULL); |