* [gentoo-commits] proj/gnome:master commit in: dev-util/devhelp/, dev-util/devhelp/files/
@ 2012-09-22 18:45 Nirbheek Chauhan
0 siblings, 0 replies; 3+ messages in thread
From: Nirbheek Chauhan @ 2012-09-22 18:45 UTC (permalink / raw
To: gentoo-commits
commit: 03da84cb5e7a07b699e1f8c35178091ee8a8c7ea
Author: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 22 18:04:12 2012 +0000
Commit: Nirbheek Chauhan <nirbheek <AT> gentoo <DOT> org>
CommitDate: Sat Sep 22 18:23:26 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=03da84cb
Add dev-util/devhelp-3.5.92
---
dev-util/devhelp/devhelp-3.5.92.ebuild | 58 ++++++++++
.../files/devhelp-3.4.1-gsettings-fonts.patch | 114 ++++++++++++++++++++
2 files changed, 172 insertions(+), 0 deletions(-)
diff --git a/dev-util/devhelp/devhelp-3.5.92.ebuild b/dev-util/devhelp/devhelp-3.5.92.ebuild
new file mode 100644
index 0000000..dfac01d
--- /dev/null
+++ b/dev-util/devhelp/devhelp-3.5.92.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/devhelp-3.4.1.ebuild,v 1.5 2012/07/05 17:52:54 tetromino Exp $
+
+EAPI="4"
+GCONF_DEBUG="no"
+GNOME2_LA_PUNT="yes"
+PYTHON_DEPEND="2"
+
+inherit eutils gnome2 python toolchain-funcs
+
+DESCRIPTION="An API documentation browser for GNOME"
+HOMEPAGE="http://live.gnome.org/devhelp"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+IUSE=""
+
+COMMON_DEPEND=">=gnome-base/gconf-2.6:2
+ >=dev-libs/glib-2.32:2
+ >=x11-libs/gtk+-3.4:3
+ >=net-libs/webkit-gtk-1.6:3"
+RDEPEND="${COMMON_DEPEND}
+ gnome-base/gsettings-desktop-schemas"
+DEPEND="${COMMON_DEPEND}
+ >=sys-devel/gettext-0.17
+ >=dev-util/intltool-0.40
+ virtual/pkgconfig"
+
+pkg_setup() {
+ DOCS="AUTHORS NEWS README"
+ # ICC is crazy, silence warnings (bug #154010)
+ if [[ $(tc-getCC) == "icc" ]] ; then
+ G2CONF="${G2CONF} --with-compile-warnings=no"
+ fi
+ python_set_active_version 2
+ python_pkg_setup
+}
+
+src_prepare() {
+ gnome2_src_prepare
+ python_clean_py-compile_files
+}
+
+pkg_postinst() {
+ gnome2_pkg_postinst
+ python_need_rebuild
+ python_mod_optimize /usr/$(get_libdir)/gedit/plugins
+ # Keep all the notify calls around so that users get reminded to delete them
+ preserve_old_lib_notify /usr/$(get_libdir)/libdevhelp-1.so.1
+ preserve_old_lib_notify /usr/$(get_libdir)/libdevhelp-2.so.1
+}
+
+pkg_postrm() {
+ gnome2_pkg_postrm
+ python_mod_cleanup /usr/$(get_libdir)/gedit/plugins
+}
diff --git a/dev-util/devhelp/files/devhelp-3.4.1-gsettings-fonts.patch b/dev-util/devhelp/files/devhelp-3.4.1-gsettings-fonts.patch
new file mode 100644
index 0000000..c2d91d3
--- /dev/null
+++ b/dev-util/devhelp/files/devhelp-3.4.1-gsettings-fonts.patch
@@ -0,0 +1,114 @@
+From d761ce906fab110d38d9e71d4c25a334d79b9869 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Rafa=C5=82=20Mu=C5=BCy=C5=82o?= <galtgendo@o2.pl>
+Date: Thu, 3 May 2012 00:15:50 -0400
+Subject: [PATCH] stop using obsoleted default keys
+
+https://bugzilla.gnome.org/show_bug.cgi?id=646402
+---
+ src/dh-preferences.c | 36 ++++++++----------------------------
+ src/dh-util.c | 14 ++++++++------
+ 2 files changed, 16 insertions(+), 34 deletions(-)
+
+diff --git a/src/dh-preferences.c b/src/dh-preferences.c
+index 7d75ebf..0f33810 100644
+--- a/src/dh-preferences.c
++++ b/src/dh-preferences.c
+@@ -287,41 +287,21 @@ preferences_connect_conf_listeners (void)
+ }
+ #endif
+
+-/* FIXME: Use the functions in dh-util.c for this. */
+ static void
+ preferences_fonts_get_font_names (gboolean use_system_fonts,
+ gchar **variable,
+ gchar **fixed)
+ {
+- gchar *var_font_name;
+- gchar *fixed_font_name;
+- IgeConf *conf;
+-
+- conf = ige_conf_get ();
++ gchar *name;
++ gdouble size;
+
+- if (use_system_fonts) {
+-#ifdef GDK_WINDOWING_QUARTZ
+- var_font_name = g_strdup ("Lucida Grande 14");
+- fixed_font_name = g_strdup ("Monaco 14");
+-#else
+- ige_conf_get_string (conf,
+- DH_CONF_SYSTEM_VARIABLE_FONT,
+- &var_font_name);
+- ige_conf_get_string (conf,
+- DH_CONF_SYSTEM_FIXED_FONT,
+- &fixed_font_name);
+-#endif
+- } else {
+- ige_conf_get_string (conf,
+- DH_CONF_VARIABLE_FONT,
+- &var_font_name);
+- ige_conf_get_string (conf,
+- DH_CONF_FIXED_FONT,
+- &fixed_font_name);
+- }
++ dh_util_font_get_variable (&name, &size, use_system_fonts);
++ *variable = g_strdup_printf ("%s %u", name, (guint)size);
++ g_free (name);
+
+- *variable = var_font_name;
+- *fixed = fixed_font_name;
++ dh_util_font_get_fixed (&name, &size, use_system_fonts);
++ *fixed = g_strdup_printf ("%s %u", name, (guint)size);
++ g_free (name);
+ }
+
+ static void
+diff --git a/src/dh-util.c b/src/dh-util.c
+index 74312d2..08151a3 100644
+--- a/src/dh-util.c
++++ b/src/dh-util.c
+@@ -603,6 +603,7 @@ dh_util_font_get_variable (gchar **name,
+ {
+ IgeConf *conf;
+ gchar *name_and_size;
++ GSettings *settings;
+
+ conf = ige_conf_get ();
+
+@@ -610,9 +611,9 @@ dh_util_font_get_variable (gchar **name,
+ #ifdef GDK_WINDOWING_QUARTZ
+ name_and_size = g_strdup ("Lucida Grande 14");
+ #else
+- ige_conf_get_string (conf,
+- DH_CONF_SYSTEM_VARIABLE_FONT,
+- &name_and_size);
++ settings = g_settings_new ("org.gnome.desktop.interface");
++ name_and_size = g_settings_get_string (settings, "font-name");
++ g_object_unref (settings);
+ #endif
+ } else {
+ ige_conf_get_string (conf,
+@@ -635,6 +636,7 @@ dh_util_font_get_fixed (gchar **name,
+ {
+ IgeConf *conf;
+ gchar *name_and_size;
++ GSettings *settings;
+
+ conf = ige_conf_get ();
+
+@@ -642,9 +644,9 @@ dh_util_font_get_fixed (gchar **name,
+ #ifdef GDK_WINDOWING_QUARTZ
+ name_and_size = g_strdup ("Monaco 14");
+ #else
+- ige_conf_get_string (conf,
+- DH_CONF_SYSTEM_FIXED_FONT,
+- &name_and_size);
++ settings = g_settings_new ("org.gnome.desktop.interface");
++ name_and_size = g_settings_get_string (settings, "monospace-font-name");
++ g_object_unref (settings);
+ #endif
+ } else {
+ ige_conf_get_string (conf,
+--
+1.7.8.6
+
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: dev-util/devhelp/, dev-util/devhelp/files/
@ 2012-11-23 7:41 Alexandre Rostovtsev
0 siblings, 0 replies; 3+ messages in thread
From: Alexandre Rostovtsev @ 2012-11-23 7:41 UTC (permalink / raw
To: gentoo-commits
commit: 7cd87cb423a40b0cba4434f2334df6db8ca32471
Author: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 23 07:38:46 2012 +0000
Commit: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
CommitDate: Fri Nov 23 07:40:38 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=7cd87cb4
dev-util/devhelp: fix linking failure with gold, drop unused patch
---
dev-util/devhelp/devhelp-3.6.1.ebuild | 8 +-
.../files/devhelp-3.4.1-gsettings-fonts.patch | 114 --------------------
dev-util/devhelp/files/devhelp-3.6.1-libm.patch | 45 ++++++++
3 files changed, 51 insertions(+), 116 deletions(-)
diff --git a/dev-util/devhelp/devhelp-3.6.1.ebuild b/dev-util/devhelp/devhelp-3.6.1.ebuild
index bc0a65e..25e78d1 100644
--- a/dev-util/devhelp/devhelp-3.6.1.ebuild
+++ b/dev-util/devhelp/devhelp-3.6.1.ebuild
@@ -7,12 +7,12 @@ GCONF_DEBUG="no"
GNOME2_LA_PUNT="yes"
PYTHON_DEPEND="2"
-inherit eutils gnome2 python toolchain-funcs
+inherit autotools eutils gnome2 python toolchain-funcs
DESCRIPTION="An API documentation browser for GNOME"
HOMEPAGE="http://live.gnome.org/devhelp"
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""
@@ -40,6 +40,10 @@ src_prepare() {
G2CONF="${G2CONF} --with-compile-warnings=no"
fi
+ # https://bugzilla.gnome.org/show_bug.cgi?id=688919
+ epatch "${FILESDIR}/${PN}-3.6.1-libm.patch"
+ eautoreconf
+
gnome2_src_prepare
python_clean_py-compile_files
}
diff --git a/dev-util/devhelp/files/devhelp-3.4.1-gsettings-fonts.patch b/dev-util/devhelp/files/devhelp-3.4.1-gsettings-fonts.patch
deleted file mode 100644
index c2d91d3..0000000
--- a/dev-util/devhelp/files/devhelp-3.4.1-gsettings-fonts.patch
+++ /dev/null
@@ -1,114 +0,0 @@
-From d761ce906fab110d38d9e71d4c25a334d79b9869 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Rafa=C5=82=20Mu=C5=BCy=C5=82o?= <galtgendo@o2.pl>
-Date: Thu, 3 May 2012 00:15:50 -0400
-Subject: [PATCH] stop using obsoleted default keys
-
-https://bugzilla.gnome.org/show_bug.cgi?id=646402
----
- src/dh-preferences.c | 36 ++++++++----------------------------
- src/dh-util.c | 14 ++++++++------
- 2 files changed, 16 insertions(+), 34 deletions(-)
-
-diff --git a/src/dh-preferences.c b/src/dh-preferences.c
-index 7d75ebf..0f33810 100644
---- a/src/dh-preferences.c
-+++ b/src/dh-preferences.c
-@@ -287,41 +287,21 @@ preferences_connect_conf_listeners (void)
- }
- #endif
-
--/* FIXME: Use the functions in dh-util.c for this. */
- static void
- preferences_fonts_get_font_names (gboolean use_system_fonts,
- gchar **variable,
- gchar **fixed)
- {
-- gchar *var_font_name;
-- gchar *fixed_font_name;
-- IgeConf *conf;
--
-- conf = ige_conf_get ();
-+ gchar *name;
-+ gdouble size;
-
-- if (use_system_fonts) {
--#ifdef GDK_WINDOWING_QUARTZ
-- var_font_name = g_strdup ("Lucida Grande 14");
-- fixed_font_name = g_strdup ("Monaco 14");
--#else
-- ige_conf_get_string (conf,
-- DH_CONF_SYSTEM_VARIABLE_FONT,
-- &var_font_name);
-- ige_conf_get_string (conf,
-- DH_CONF_SYSTEM_FIXED_FONT,
-- &fixed_font_name);
--#endif
-- } else {
-- ige_conf_get_string (conf,
-- DH_CONF_VARIABLE_FONT,
-- &var_font_name);
-- ige_conf_get_string (conf,
-- DH_CONF_FIXED_FONT,
-- &fixed_font_name);
-- }
-+ dh_util_font_get_variable (&name, &size, use_system_fonts);
-+ *variable = g_strdup_printf ("%s %u", name, (guint)size);
-+ g_free (name);
-
-- *variable = var_font_name;
-- *fixed = fixed_font_name;
-+ dh_util_font_get_fixed (&name, &size, use_system_fonts);
-+ *fixed = g_strdup_printf ("%s %u", name, (guint)size);
-+ g_free (name);
- }
-
- static void
-diff --git a/src/dh-util.c b/src/dh-util.c
-index 74312d2..08151a3 100644
---- a/src/dh-util.c
-+++ b/src/dh-util.c
-@@ -603,6 +603,7 @@ dh_util_font_get_variable (gchar **name,
- {
- IgeConf *conf;
- gchar *name_and_size;
-+ GSettings *settings;
-
- conf = ige_conf_get ();
-
-@@ -610,9 +611,9 @@ dh_util_font_get_variable (gchar **name,
- #ifdef GDK_WINDOWING_QUARTZ
- name_and_size = g_strdup ("Lucida Grande 14");
- #else
-- ige_conf_get_string (conf,
-- DH_CONF_SYSTEM_VARIABLE_FONT,
-- &name_and_size);
-+ settings = g_settings_new ("org.gnome.desktop.interface");
-+ name_and_size = g_settings_get_string (settings, "font-name");
-+ g_object_unref (settings);
- #endif
- } else {
- ige_conf_get_string (conf,
-@@ -635,6 +636,7 @@ dh_util_font_get_fixed (gchar **name,
- {
- IgeConf *conf;
- gchar *name_and_size;
-+ GSettings *settings;
-
- conf = ige_conf_get ();
-
-@@ -642,9 +644,9 @@ dh_util_font_get_fixed (gchar **name,
- #ifdef GDK_WINDOWING_QUARTZ
- name_and_size = g_strdup ("Monaco 14");
- #else
-- ige_conf_get_string (conf,
-- DH_CONF_SYSTEM_FIXED_FONT,
-- &name_and_size);
-+ settings = g_settings_new ("org.gnome.desktop.interface");
-+ name_and_size = g_settings_get_string (settings, "monospace-font-name");
-+ g_object_unref (settings);
- #endif
- } else {
- ige_conf_get_string (conf,
---
-1.7.8.6
-
diff --git a/dev-util/devhelp/files/devhelp-3.6.1-libm.patch b/dev-util/devhelp/files/devhelp-3.6.1-libm.patch
new file mode 100644
index 0000000..727ed4a
--- /dev/null
+++ b/dev-util/devhelp/files/devhelp-3.6.1-libm.patch
@@ -0,0 +1,45 @@
+From 7ead1d4b000df6f5d31e0df93b8172839c06736d Mon Sep 17 00:00:00 2001
+From: Alexandre Rostovtsev <tetromino@gentoo.org>
+Date: Fri, 23 Nov 2012 02:33:53 -0500
+Subject: [PATCH] libdevhelp: explicitly link with libm for sqrt() in
+ dh-window.c
+
+Prevents linking failure when using GNU gold.
+
+https://bugzilla.gnome.org/show_bug.cgi?id=688919
+---
+ configure.ac | 3 +++
+ src/Makefile.am | 3 ++-
+ 2 files changed, 5 insertions(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index e9c9e87..8849c70 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -71,6 +71,9 @@ else
+ fi
+ AM_CONDITIONAL(WITH_WEBKIT2, test "x$with_webkit2" != xno)
+
++AC_CHECK_LIBM
++AC_SUBST(LIBM)
++
+ PKG_CHECK_MODULES(DEVHELP, [
+ gthread-2.0 >= 2.10.0
+ gtk+-3.0 >= 3.4
+diff --git a/src/Makefile.am b/src/Makefile.am
+index e6b1716..419c31c 100644
+--- a/src/Makefile.am
++++ b/src/Makefile.am
+@@ -107,7 +107,8 @@ libdevhelp_3_la_CFLAGS = \
+
+ libdevhelp_3_la_LIBADD = \
+ $(LIBDEVHELP_LIBS) \
+- $(ZLIB_LIBS)
++ $(ZLIB_LIBS) \
++ $(LIBM)
+
+ libdevhelp_3_la_LDFLAGS = \
+ -no-undefined \
+--
+1.8.0
+
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/gnome:master commit in: dev-util/devhelp/, dev-util/devhelp/files/
@ 2012-12-18 22:20 Gilles Dartiguelongue
0 siblings, 0 replies; 3+ messages in thread
From: Gilles Dartiguelongue @ 2012-12-18 22:20 UTC (permalink / raw
To: gentoo-commits
commit: ba39878b90c422de0166791984e72f681fe0a4ad
Author: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
AuthorDate: Tue Dec 18 22:20:13 2012 +0000
Commit: Gilles Dartiguelongue <eva <AT> gentoo <DOT> org>
CommitDate: Tue Dec 18 22:20:13 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=ba39878b
dev-util/devhelp: moved to gx86
---
dev-util/devhelp/devhelp-3.6.1.ebuild | 63 -----------------------
dev-util/devhelp/files/devhelp-3.6.1-libm.patch | 45 ----------------
dev-util/devhelp/metadata.xml | 8 +++
3 files changed, 8 insertions(+), 108 deletions(-)
diff --git a/dev-util/devhelp/devhelp-3.6.1.ebuild b/dev-util/devhelp/devhelp-3.6.1.ebuild
deleted file mode 100644
index 25e78d1..0000000
--- a/dev-util/devhelp/devhelp-3.6.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/devhelp/devhelp-3.4.1.ebuild,v 1.5 2012/07/05 17:52:54 tetromino Exp $
-
-EAPI="4"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-PYTHON_DEPEND="2"
-
-inherit autotools eutils gnome2 python toolchain-funcs
-
-DESCRIPTION="An API documentation browser for GNOME"
-HOMEPAGE="http://live.gnome.org/devhelp"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
-IUSE=""
-
-COMMON_DEPEND=">=gnome-base/gconf-2.6:2
- >=dev-libs/glib-2.32:2
- >=x11-libs/gtk+-3.4:3
- >=net-libs/webkit-gtk-1.6:3"
-RDEPEND="${COMMON_DEPEND}
- gnome-base/gsettings-desktop-schemas"
-DEPEND="${COMMON_DEPEND}
- >=sys-devel/gettext-0.17
- >=dev-util/intltool-0.40
- virtual/pkgconfig"
-
-pkg_setup() {
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- DOCS="AUTHORS NEWS README"
- # ICC is crazy, silence warnings (bug #154010)
- if [[ $(tc-getCC) == "icc" ]] ; then
- G2CONF="${G2CONF} --with-compile-warnings=no"
- fi
-
- # https://bugzilla.gnome.org/show_bug.cgi?id=688919
- epatch "${FILESDIR}/${PN}-3.6.1-libm.patch"
- eautoreconf
-
- gnome2_src_prepare
- python_clean_py-compile_files
-}
-
-pkg_postinst() {
- gnome2_pkg_postinst
- python_need_rebuild
- python_mod_optimize /usr/$(get_libdir)/gedit/plugins
- # Keep all the notify calls around so that users get reminded to delete them
- preserve_old_lib_notify /usr/$(get_libdir)/libdevhelp-1.so.1
- preserve_old_lib_notify /usr/$(get_libdir)/libdevhelp-2.so.1
-}
-
-pkg_postrm() {
- gnome2_pkg_postrm
- python_mod_cleanup /usr/$(get_libdir)/gedit/plugins
-}
diff --git a/dev-util/devhelp/files/devhelp-3.6.1-libm.patch b/dev-util/devhelp/files/devhelp-3.6.1-libm.patch
deleted file mode 100644
index 727ed4a..0000000
--- a/dev-util/devhelp/files/devhelp-3.6.1-libm.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-From 7ead1d4b000df6f5d31e0df93b8172839c06736d Mon Sep 17 00:00:00 2001
-From: Alexandre Rostovtsev <tetromino@gentoo.org>
-Date: Fri, 23 Nov 2012 02:33:53 -0500
-Subject: [PATCH] libdevhelp: explicitly link with libm for sqrt() in
- dh-window.c
-
-Prevents linking failure when using GNU gold.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=688919
----
- configure.ac | 3 +++
- src/Makefile.am | 3 ++-
- 2 files changed, 5 insertions(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index e9c9e87..8849c70 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -71,6 +71,9 @@ else
- fi
- AM_CONDITIONAL(WITH_WEBKIT2, test "x$with_webkit2" != xno)
-
-+AC_CHECK_LIBM
-+AC_SUBST(LIBM)
-+
- PKG_CHECK_MODULES(DEVHELP, [
- gthread-2.0 >= 2.10.0
- gtk+-3.0 >= 3.4
-diff --git a/src/Makefile.am b/src/Makefile.am
-index e6b1716..419c31c 100644
---- a/src/Makefile.am
-+++ b/src/Makefile.am
-@@ -107,7 +107,8 @@ libdevhelp_3_la_CFLAGS = \
-
- libdevhelp_3_la_LIBADD = \
- $(LIBDEVHELP_LIBS) \
-- $(ZLIB_LIBS)
-+ $(ZLIB_LIBS) \
-+ $(LIBM)
-
- libdevhelp_3_la_LDFLAGS = \
- -no-undefined \
---
-1.8.0
-
diff --git a/dev-util/devhelp/metadata.xml b/dev-util/devhelp/metadata.xml
new file mode 100644
index 0000000..897daf7
--- /dev/null
+++ b/dev-util/devhelp/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>gnome</herd>
+ <use>
+ <flag name="gedit">Install plugin for <pkg>app-editors/gedit</pkg></flag>
+ </use>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-12-18 22:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-09-22 18:45 [gentoo-commits] proj/gnome:master commit in: dev-util/devhelp/, dev-util/devhelp/files/ Nirbheek Chauhan
-- strict thread matches above, loose matches on Subject: below --
2012-11-23 7:41 Alexandre Rostovtsev
2012-12-18 22:20 Gilles Dartiguelongue
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox