From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id BD8E3138247 for ; Sun, 1 Dec 2013 18:42:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2A568E0960; Sun, 1 Dec 2013 18:42:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 87F97E0960 for ; Sun, 1 Dec 2013 18:42:19 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91A2333F2CE for ; Sun, 1 Dec 2013 18:42:18 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 7CFC9E5535 for ; Sun, 1 Dec 2013 18:42:16 +0000 (UTC) From: "Gilles Dartiguelongue" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Gilles Dartiguelongue" Message-ID: <1385923204.9d1b6622493c74cd73f8740f721eebc725480261.eva@gentoo> Subject: [gentoo-commits] proj/gnome:master commit in: app-editors/gedit-plugins/ X-VCS-Repository: proj/gnome X-VCS-Files: app-editors/gedit-plugins/gedit-plugins-3.10.0.ebuild X-VCS-Directories: app-editors/gedit-plugins/ X-VCS-Committer: eva X-VCS-Committer-Name: Gilles Dartiguelongue X-VCS-Revision: 9d1b6622493c74cd73f8740f721eebc725480261 X-VCS-Branch: master Date: Sun, 1 Dec 2013 18:42:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: a9aae79a-0473-47bb-9bf4-917fee2ec39a X-Archives-Hash: 2d06a700276c0a5255d7dfb0d27ff8f4 commit: 9d1b6622493c74cd73f8740f721eebc725480261 Author: Gilles Dartiguelongue gentoo org> AuthorDate: Sun Dec 1 17:40:25 2013 +0000 Commit: Gilles Dartiguelongue gentoo org> CommitDate: Sun Dec 1 18:40:04 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=9d1b6622 app-editors/gedit-plugins: 3.8.3-r1 → 3.10.0 --- .../gedit-plugins/gedit-plugins-3.10.0.ebuild | 72 ++++++++++++++++++++++ 1 file changed, 72 insertions(+) diff --git a/app-editors/gedit-plugins/gedit-plugins-3.10.0.ebuild b/app-editors/gedit-plugins/gedit-plugins-3.10.0.ebuild new file mode 100644 index 0000000..eefab59 --- /dev/null +++ b/app-editors/gedit-plugins/gedit-plugins-3.10.0.ebuild @@ -0,0 +1,72 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI="5" +GCONF_DEBUG="no" +GNOME2_LA_PUNT="yes" # plugins are dlopened +PYTHON_COMPAT=( python3_{2,3} ) +PYTHON_REQ_USE="xml" + +inherit eutils gnome2 multilib python-r1 + +DESCRIPTION="Official plugins for gedit" +HOMEPAGE="http://live.gnome.org/GeditPlugins" + +LICENSE="GPL-2+" +KEYWORDS="~amd64 ~x86" +SLOT="0" + +IUSE_plugins="charmap git terminal" +IUSE="+python ${IUSE_plugins}" +REQUIRED_USE=" + charmap? ( python ) + git? ( python ) + terminal? ( python ) + python? ( ${REQUIRED_PYTHON_USE} ) +" + +RDEPEND=" + >=app-editors/gedit-3.9[python?] + >=dev-libs/glib-2.32:2 + >=dev-libs/libpeas-1.7.0[gtk,python?] + >=x11-libs/gtk+-3.9:3 + >=x11-libs/gtksourceview-3.9.2:3.0 + python? ( + ${PYTHON_DEPS} + >=app-editors/gedit-3[introspection,${PYTHON_USEDEP}] + dev-libs/libpeas[${PYTHON_USEDEP}] + dev-python/dbus-python[${PYTHON_USEDEP}] + dev-python/pycairo + dev-python/pygobject:3[cairo,${PYTHON_USEDEP}] + >=x11-libs/gtk+-3.9:3[introspection] + >=x11-libs/gtksourceview-3.9.2:3.0[introspection] + x11-libs/pango[introspection] + x11-libs/gdk-pixbuf:2[introspection] + ) + charmap? ( >=gnome-extra/gucharmap-3:2.90[introspection] ) + git? ( >=dev-libs/libgit2-glib-0.0.6 ) + terminal? ( x11-libs/vte:2.90[introspection] ) +" +DEPEND="${RDEPEND} + >=dev-util/intltool-0.40.0 + sys-devel/gettext + virtual/pkgconfig +" + +src_configure() { + # DEFAULT_PLUGINS from configure.ac + local myplugins="bookmarks,drawspaces,wordcompletion" + + # python plugins with no extra dependencies beyond what USE=python brings + use python && myplugins="${myplugins},bracketcompletion,codecomment,colorpicker,colorschemer,commander,dashboard,joinlines,multiedit,textsize,smartspaces,synctex" + + # python plugins with extra dependencies + for plugin in ${IUSE_plugins/+}; do + use ${plugin} && myplugins="${myplugins},${plugin}" + done + + gnome2_src_configure \ + --with-plugins=${myplugins} \ + $(use_enable python) +}