diff options
author | Romain Perier <mrpouet@gentoo.org> | 2009-07-22 19:49:52 +0000 |
---|---|---|
committer | Romain Perier <mrpouet@gentoo.org> | 2009-07-22 19:49:52 +0000 |
commit | c20505cc212162875e08cfe653080f63b643250e (patch) | |
tree | 2a388499209f7332d36acde6b32ed6184c80037b /app-editors/gedit-plugins | |
parent | clean up (diff) | |
download | gentoo-2-c20505cc212162875e08cfe653080f63b643250e.tar.gz gentoo-2-c20505cc212162875e08cfe653080f63b643250e.tar.bz2 gentoo-2-c20505cc212162875e08cfe653080f63b643250e.zip |
Move sessionsaver to session global USE flag, and add GCONF_DEBUG=no
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'app-editors/gedit-plugins')
-rw-r--r-- | app-editors/gedit-plugins/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/gedit-plugins/gedit-plugins-2.26.2.ebuild | 9 | ||||
-rw-r--r-- | app-editors/gedit-plugins/metadata.xml | 3 |
3 files changed, 12 insertions, 6 deletions
diff --git a/app-editors/gedit-plugins/ChangeLog b/app-editors/gedit-plugins/ChangeLog index 692097c9a8b6..90b29466e253 100644 --- a/app-editors/gedit-plugins/ChangeLog +++ b/app-editors/gedit-plugins/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/gedit-plugins # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/ChangeLog,v 1.1 2009/07/22 18:28:43 mrpouet Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/ChangeLog,v 1.2 2009/07/22 19:49:52 mrpouet Exp $ + + 23 Jul 2009; Romain Perier <mrpouet@gentoo.org> gedit-plugins-2.26.2.ebuild, + metadata.xml: + Move sessionsaver to session global USE flag, and add GCONF_DEBUG=no *gedit-plugins-2.26.2 (23 Jul 2009) diff --git a/app-editors/gedit-plugins/gedit-plugins-2.26.2.ebuild b/app-editors/gedit-plugins/gedit-plugins-2.26.2.ebuild index 73e26ac9f5a6..99f02bdc57c0 100644 --- a/app-editors/gedit-plugins/gedit-plugins-2.26.2.ebuild +++ b/app-editors/gedit-plugins/gedit-plugins-2.26.2.ebuild @@ -1,8 +1,9 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/gedit-plugins-2.26.2.ebuild,v 1.1 2009/07/22 18:28:43 mrpouet Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit-plugins/gedit-plugins-2.26.2.ebuild,v 1.2 2009/07/22 19:49:52 mrpouet Exp $ EAPI="1" +GCONF_DEBUG="no" inherit gnome2 @@ -15,7 +16,7 @@ LICENSE="GPL-2" KEYWORDS="~amd64" SLOT="0" -IUSE="bookmarks +bracketcompletion charmap +codecomment colorpicker +drawspaces +joinlines python +sessionsaver showtabbar smartspaces terminal" +IUSE="bookmarks +bracketcompletion charmap +codecomment colorpicker +drawspaces +joinlines python +session showtabbar smartspaces terminal" RDEPEND=">=x11-libs/gtk+-2.14 gnome-base/gconf @@ -38,7 +39,9 @@ pkg_setup() local myplugins= for plugin in ${IUSE/python}; do - if use ${plugin/+}; then + if use session && [ "${plugin/+}" = "session" ]; then + myplugins="${myplugins:+${myplugins},}sessionsaver" + elif use ${plugin/+}; then myplugins="${myplugins:+${myplugins},}${plugin/+}" fi done diff --git a/app-editors/gedit-plugins/metadata.xml b/app-editors/gedit-plugins/metadata.xml index 22e119aced7f..b72197bc33fd 100644 --- a/app-editors/gedit-plugins/metadata.xml +++ b/app-editors/gedit-plugins/metadata.xml @@ -14,8 +14,7 @@ <flag name='codecomment'>Comment and uncomment blocks of code</flag> <flag name='colorpicker'>Pick a color from a dialog and insert its hexadecimal representation</flag> <flag name='drawspaces'>Draw spaces and tabs</flag> - <flag name='joinlines'>Join several lines or split long ones</flag> - <flag name='sessionsaver'>Save and restore your working sessions</flag> + <flag name='joinlines'>Join several lines or split long ones</flag> <flag name='showtabbar'>Add a menu entry to show/hide the tabbar</flag> <flag name='smartspaces'>Forget you're not using tabulations</flag> <flag name='terminal'>Embed a terminal in the bottom pane</flag> |