* [gentoo-commits] proj/gnome:master commit in: dev-libs/seed/, app-text/evince/, app-text/libgxps/, app-editors/gedit/, ...
@ 2011-11-04 2:04 Alexandre Restovtsev
0 siblings, 0 replies; only message in thread
From: Alexandre Restovtsev @ 2011-11-04 2:04 UTC (permalink / raw
To: gentoo-commits
commit: f99ac18f4b4583e66c6063435897015ae12faffa
Author: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
AuthorDate: Fri Nov 4 02:04:01 2011 +0000
Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
CommitDate: Fri Nov 4 02:04:01 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=f99ac18f
gedit, gedit-plugins, libgxps, evince, seed, eog, totem: moved to gx86
---
.../gedit-plugins/gedit-plugins-3.2.1.ebuild | 97 -----------
app-editors/gedit/gedit-3.2.1.ebuild | 116 -------------
app-text/evince/evince-3.2.1.ebuild | 109 ------------
app-text/libgxps/libgxps-0.1.0.ebuild | 50 ------
.../libpeas-1.2.0-PeasPluginInfo-annotation.patch | 57 ------
dev-libs/libpeas/libpeas-1.2.0-r1.ebuild | 75 --------
dev-libs/seed/files/seed-3.2.0-gio-libs.patch | 34 ----
dev-libs/seed/seed-3.2.0.ebuild | 89 ----------
media-gfx/eog/eog-3.2.1.ebuild | 65 -------
media-video/totem/totem-3.2.1.ebuild | 182 --------------------
10 files changed, 0 insertions(+), 874 deletions(-)
diff --git a/app-editors/gedit-plugins/gedit-plugins-3.2.1.ebuild b/app-editors/gedit-plugins/gedit-plugins-3.2.1.ebuild
deleted file mode 100644
index a60e9d7..0000000
--- a/app-editors/gedit-plugins/gedit-plugins-3.2.1.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="3"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes" # plugins are dlopened
-PYTHON_DEPEND="python? 2:2.6"
-PYTHON_USE_WITH="xml"
-PYTHON_USE_WITH_OPT="python"
-
-inherit gnome2 multilib python eutils
-
-DESCRIPTION="Offical plugins for gedit"
-HOMEPAGE="http://live.gnome.org/GeditPlugins"
-
-LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86"
-SLOT="0"
-
-IUSE_plugins="charmap synctex terminal"
-IUSE="+python ${IUSE_plugins}"
-
-RDEPEND=">=app-editors/gedit-3.2.0[python?]
- >=dev-libs/glib-2.26.0:2
- >=dev-libs/libpeas-0.7.3[gtk,python?]
- >=x11-libs/gtk+-3.0.0:3
- >=x11-libs/gtksourceview-3.0.0:3.0
- python? (
- >=app-editors/gedit-3.0.0[introspection]
- || ( dev-python/pygobject:2[introspection] dev-python/pygobject:3 )
- >=x11-libs/gtk+-3.0.0:3[introspection]
- >=x11-libs/gtksourceview-3.0.0:3.0[introspection]
- x11-libs/pango[introspection]
- x11-libs/gdk-pixbuf:2[introspection]
- )
- charmap? ( >=gnome-extra/gucharmap-3.0.0:2.90[introspection] )
- synctex? ( >=dev-python/dbus-python-0.82 )
- terminal? ( x11-libs/vte:2.90[introspection] )"
-DEPEND="${RDEPEND}
- >=dev-util/intltool-0.40.0
- dev-util/pkgconfig
- sys-devel/gettext"
-
-pkg_setup() {
- # DEFAULT_PLUGINS from configure.ac
- local myplugins="bookmarks,drawspaces,wordcompletion,taglist"
-
- # python plugins with no extra dependencies beyond what USE=python brings
- use python && myplugins="${myplugins},bracketcompletion,codecomment,colorpicker,commander,joinlines,multiedit,textsize,sessionsaver,smartspaces"
-
- # python plugins with extra dependencies
- for plugin in ${IUSE_plugins/+}; do
- use ${plugin} || continue
- # FIXME: put in REQUIRED_USE when python.eclass supports EAPI4
- if use python; then
- myplugins="${myplugins},${plugin}"
- else
- ewarn "Plugin '${plugin}' auto-disabled due to USE=-python"
- fi
- done
-
- DOCS="AUTHORS ChangeLog* NEWS README"
-
- G2CONF="${G2CONF}
- --disable-schemas-compile
- --disable-dependency-tracking
- --with-plugins=${myplugins}
- $(use_enable python)"
-
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- gnome2_src_prepare
-
- # disable pyc compiling
- for d in . build-aux ; do
- ln -sfn $(type -P true) "${d}/py-compile"
- done
-}
-
-src_test() {
- emake check || die "make check failed"
-}
-
-pkg_postinst() {
- gnome2_pkg_postinst
- python_need_rebuild
- python_mod_optimize /usr/$(get_libdir)/gedit/plugins
-}
-
-pkg_postrm() {
- gnome2_pkg_postrm
- python_mod_cleanup /usr/$(get_libdir)/gedit/plugins
-}
diff --git a/app-editors/gedit/gedit-3.2.1.ebuild b/app-editors/gedit/gedit-3.2.1.ebuild
deleted file mode 100644
index 5df7790..0000000
--- a/app-editors/gedit/gedit-3.2.1.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/gedit/gedit-2.30.2.ebuild,v 1.1 2010/06/13 19:34:52 pacho Exp $
-
-EAPI="4"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes" # plugins are dlopened
-PYTHON_DEPEND="2"
-
-inherit gnome2 python eutils virtualx
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="A text editor for the GNOME desktop"
-HOMEPAGE="http://www.gnome.org/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc +introspection +python spell"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux"
-fi
-
-# X libs are not needed for OSX (aqua)
-COMMON_DEPEND="
- >=x11-libs/libSM-1.0
- >=dev-libs/libxml2-2.5.0:2
- >=dev-libs/glib-2.28:2
- >=x11-libs/gtk+-3.1.6:3[introspection?]
- >=x11-libs/gtksourceview-3.0.0:3.0[introspection?]
- >=dev-libs/libpeas-1.1.0[gtk]
-
- gnome-base/gsettings-desktop-schemas
- gnome-base/gvfs
-
- x11-libs/libX11
- x11-libs/libICE
- x11-libs/libSM
-
- net-libs/libsoup:2.4
-
- introspection? ( >=dev-libs/gobject-introspection-0.9.3 )
- python? (
- >=dev-libs/gobject-introspection-0.9.3
- >=x11-libs/gtk+-3.0:3[introspection]
- >=x11-libs/gtksourceview-2.91.9:3.0[introspection]
- >=dev-python/pygobject-3.0.0:3 )
- spell? (
- >=app-text/enchant-1.2
- >=app-text/iso-codes-0.35
- )"
-
-RDEPEND="${COMMON_DEPEND}
- x11-themes/gnome-icon-theme-symbolic"
-
-DEPEND="${COMMON_DEPEND}
- >=sys-devel/gettext-0.17
- >=dev-util/intltool-0.40
- >=dev-util/pkgconfig-0.9
- >=app-text/scrollkeeper-0.3.11
- >=app-text/gnome-doc-utils-0.9.0
- ~app-text/docbook-xml-dtd-4.1.2
- doc? ( >=dev-util/gtk-doc-1 )"
-# gnome-common and gtk-doc-am needed to eautoreconf
-
-pkg_setup() {
- DOCS="AUTHORS BUGS ChangeLog MAINTAINERS NEWS README"
- # TODO: Zeitgeist support, if GNOME 3 adds it to moduleset (3.2?)
- G2CONF="${G2CONF}
- --disable-zeitgeist
- --disable-deprecations
- --disable-schemas-compile
- --disable-scrollkeeper
- --enable-updater
- --enable-gvfs-metadata
- $(use_enable introspection)
- $(use_enable python)
- $(use_enable spell)"
-
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- gnome2_src_prepare
-
- # disable pyc compiling
- mv "${S}"/py-compile "${S}"/py-compile.orig
- ln -s $(type -P true) "${S}"/py-compile
-}
-
-src_test() {
- # FIXME: this should be handled at eclass level
- "${EROOT}${GLIB_COMPILE_SCHEMAS}" --allow-any-name "${S}/data" || die
-
- GSETTINGS_SCHEMA_DIR="${S}/data" Xemake check
-}
-
-pkg_postinst() {
- gnome2_pkg_postinst
- if use python; then
- python_mod_optimize /usr/$(get_libdir)/gedit/plugins
- # FIXME: take care of gi.overrides with USE=introspection
- fi
-
-}
-
-pkg_postrm() {
- gnome2_pkg_postrm
- if use python; then
- python_mod_cleanup /usr/$(get_libdir)/gedit/plugins
- fi
-}
diff --git a/app-text/evince/evince-3.2.1.ebuild b/app-text/evince/evince-3.2.1.ebuild
deleted file mode 100644
index 8457a63..0000000
--- a/app-text/evince/evince-3.2.1.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-text/evince/evince-2.32.0.ebuild,v 1.2 2010/12/07 19:38:52 eva Exp $
-
-EAPI="4"
-GCONF_DEBUG="yes"
-GNOME2_LA_PUNT="yes"
-
-inherit eutils gnome2
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="Simple document viewer for GNOME"
-HOMEPAGE="http://www.gnome.org/projects/evince/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="dbus debug djvu doc dvi gnome-keyring +introspection nautilus t1lib tiff xps"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x64-solaris"
-fi
-
-# Since 2.26.2, can handle poppler without cairo support. Make it optional ?
-# not mature enough
-# atk used in libview
-# gdk-pixbuf used all over the place
-# libX11 used for totem-screensaver
-RDEPEND="
- >=app-text/libspectre-0.2.0
- dev-libs/atk
- >=dev-libs/glib-2.25.11:2
- >=dev-libs/libxml2-2.5:2
- sys-libs/zlib
- x11-libs/gdk-pixbuf:2
- >=x11-libs/gtk+-3.0.2:3[introspection?]
- x11-libs/libX11
- >=x11-libs/libSM-1
- x11-libs/libICE
- gnome-base/gsettings-desktop-schemas
- || (
- >=x11-themes/gnome-icon-theme-2.17.1
- >=x11-themes/hicolor-icon-theme-0.10 )
- >=x11-libs/cairo-1.10.0
- >=app-text/poppler-0.16[cairo]
- djvu? ( >=app-text/djvu-3.5.17 )
- dvi? (
- virtual/tex-base
- dev-libs/kpathsea
- t1lib? ( >=media-libs/t1lib-5.0.0 ) )
- gnome-keyring? ( >=gnome-base/gnome-keyring-2.22.0 )
- introspection? ( >=dev-libs/gobject-introspection-0.6 )
- nautilus? ( >=gnome-base/nautilus-2.91.4[introspection?] )
- tiff? ( >=media-libs/tiff-3.6 )
- xps? ( >=app-text/libgxps-0.0.1 )
-"
-DEPEND="${RDEPEND}
- app-text/scrollkeeper
- >=app-text/gnome-doc-utils-0.3.2
- ~app-text/docbook-xml-dtd-4.1.2
- >=dev-util/pkgconfig-0.9
- sys-devel/gettext
- >=dev-util/intltool-0.35
- >=dev-util/gtk-doc-am-1.13
- doc? ( >=dev-util/gtk-doc-1.13 )"
-
-ELTCONF="--portage"
-
-# Needs dogtail and pyspi from http://fedorahosted.org/dogtail/
-# Releases: http://people.redhat.com/zcerza/dogtail/releases/
-RESTRICT="test"
-
-pkg_setup() {
- # Passing --disable-help would drop offline help, that would be inconsistent
- # with helps of the most of Gnome apps that doesn't require network for that.
- G2CONF="${G2CONF}
- --disable-schemas-compile
- --disable-scrollkeeper
- --disable-static
- --disable-tests
- --enable-pdf
- --enable-comics
- --enable-thumbnailer
- --with-smclient=xsmp
- --with-platform=gnome
- --enable-help
- $(use_enable dbus)
- $(use_enable djvu)
- $(use_enable dvi)
- $(use_with gnome-keyring keyring)
- $(use_enable introspection)
- $(use_enable nautilus)
- $(use_enable t1lib)
- $(use_enable tiff)
- $(use_enable xps)"
- DOCS="AUTHORS ChangeLog NEWS README TODO"
-}
-
-src_prepare() {
- # Do not depend on gnome-icon-theme, bug #326855
- sed 's/gnome-icon-theme//' -i configure.ac || die "sed failed"
-
- # Fix .desktop file so menu item shows up
- epatch "${FILESDIR}"/${PN}-0.7.1-display-menu.patch
-
- gnome2_src_prepare
-}
diff --git a/app-text/libgxps/libgxps-0.1.0.ebuild b/app-text/libgxps/libgxps-0.1.0.ebuild
deleted file mode 100644
index 61f5fb9..0000000
--- a/app-text/libgxps/libgxps-0.1.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="4"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="Library for handling and rendering XPS documents"
-HOMEPAGE="http://live.gnome.org/libgxps"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~amd64 ~x86"
-fi
-IUSE="debug doc +introspection jpeg static-libs tiff"
-
-RDEPEND=">=app-arch/libarchive-2.8
- >=dev-libs/glib-2.24:2
- media-libs/freetype:2
- >=x11-libs/cairo-1.10
- introspection? ( >=dev-libs/gobject-introspection-0.10.1 )
- jpeg? ( virtual/jpeg )
- tiff? ( media-libs/tiff[zlib] )"
-DEPEND="${RDEPEND}
- dev-util/pkgconfig
- doc? (
- app-text/docbook-xml-dtd:4.1.2
- >=dev-util/gtk-doc-1.14 )"
-
-# There is no automatic test suite, only an interactive test application
-RESTRICT="test"
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-test
- $(use_enable debug)
- $(use_enable introspection)
- $(use_with jpeg libjpeg)
- $(use_enable static-libs static)
- $(use_with tiff libtiff)"
- DOCS="AUTHORS ChangeLog NEWS README TODO"
-}
diff --git a/dev-libs/libpeas/files/libpeas-1.2.0-PeasPluginInfo-annotation.patch b/dev-libs/libpeas/files/libpeas-1.2.0-PeasPluginInfo-annotation.patch
deleted file mode 100644
index 3a2e9b4..0000000
--- a/dev-libs/libpeas/files/libpeas-1.2.0-PeasPluginInfo-annotation.patch
+++ /dev/null
@@ -1,57 +0,0 @@
-From afa50c526ce1aab53eff3c3373a97180fc90abe2 Mon Sep 17 00:00:00 2001
-From: Garrett Regier <garrettregier@gmail.com>
-Date: Thu, 29 Sep 2011 15:46:49 -0700
-Subject: [PATCH] Annotate PeasPluginInfo return values as transfer none
-
-Otherwise GObject-Introspection says that it is transfer full.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=660524
----
- libpeas-gtk/peas-gtk-plugin-manager-view.c | 2 +-
- libpeas/peas-engine.c | 2 +-
- libpeas/peas-extension-base.c | 3 ++-
- 3 files changed, 4 insertions(+), 3 deletions(-)
-
-diff --git a/libpeas-gtk/peas-gtk-plugin-manager-view.c b/libpeas-gtk/peas-gtk-plugin-manager-view.c
-index 7eb7361..5f8f55f 100644
---- a/libpeas-gtk/peas-gtk-plugin-manager-view.c
-+++ b/libpeas-gtk/peas-gtk-plugin-manager-view.c
-@@ -952,7 +952,7 @@ peas_gtk_plugin_manager_view_set_selected_plugin (PeasGtkPluginManagerView *view
- *
- * Returns the currently selected plugin, or %NULL if a plugin is not selected.
- *
-- * Returns: the selected plugin.
-+ * Returns: (transfer none): the selected plugin.
- */
- PeasPluginInfo *
- peas_gtk_plugin_manager_view_get_selected_plugin (PeasGtkPluginManagerView *view)
-diff --git a/libpeas/peas-engine.c b/libpeas/peas-engine.c
-index 1adf4ff..7b57d56 100644
---- a/libpeas/peas-engine.c
-+++ b/libpeas/peas-engine.c
-@@ -733,7 +733,7 @@ compare_plugin_info_and_name (PeasPluginInfo *info,
- * Gets the #PeasPluginInfo corresponding with @plugin_name,
- * or %NULL if @plugin_name was not found.
- *
-- * Returns: the #PeasPluginInfo corresponding with
-+ * Returns: (transfer none): the #PeasPluginInfo corresponding with
- * a given plugin module name.
- */
- PeasPluginInfo *
-diff --git a/libpeas/peas-extension-base.c b/libpeas/peas-extension-base.c
-index 329a25f..7c4cba0 100644
---- a/libpeas/peas-extension-base.c
-+++ b/libpeas/peas-extension-base.c
-@@ -141,7 +141,8 @@ peas_extension_base_class_init (PeasExtensionBaseClass *klass)
- *
- * Get information relative to @extbase.
- *
-- * Return value: the #PeasPluginInfo relative to the #PeasExtensionBase.
-+ * Return value: (transfer none): the #PeasPluginInfo relative
-+ * to the #PeasExtensionBase.
- */
- PeasPluginInfo *
- peas_extension_base_get_plugin_info (PeasExtensionBase *extbase)
---
-1.7.7.2
-
diff --git a/dev-libs/libpeas/libpeas-1.2.0-r1.ebuild b/dev-libs/libpeas/libpeas-1.2.0-r1.ebuild
deleted file mode 100644
index aba6158..0000000
--- a/dev-libs/libpeas/libpeas-1.2.0-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="4"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-PYTHON_DEPEND="python? 2:2.5"
-
-inherit eutils gnome2 python virtualx
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="A GObject plugins library"
-HOMEPAGE="http://www.gnome.org/"
-
-LICENSE="LGPL-2"
-SLOT="0"
-IUSE="doc gjs +gtk glade +python seed vala"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~amd64 ~x86"
-fi
-
-RDEPEND=">=dev-libs/glib-2.23.6:2
- >=dev-libs/gobject-introspection-0.10.1
- gjs? ( >=dev-libs/gjs-1.29.16 )
- glade? ( >=dev-util/glade-3.9.1:3.10 )
- gtk? ( >=x11-libs/gtk+-2.91.1:3[introspection] )
- python? ( >=dev-python/pygobject-3.0.0:3 )
- seed? ( >=dev-libs/seed-2.91.91 )"
-DEPEND="${RDEPEND}
- >=dev-util/intltool-0.40
- >=sys-devel/gettext-0.17
- doc? ( >=dev-util/gtk-doc-1.11 )
- vala? ( >=dev-lang/vala-0.11.1:0.12 )"
-
-DOCS="AUTHORS ChangeLog NEWS README"
-
-pkg_setup() {
- G2CONF="${G2CONF}
- $(use_enable gjs)
- $(use_enable glade glade-catalog)
- $(use_enable gtk)
- $(use_enable python)
- $(use_enable seed)
- $(use_enable vala)
- VALAC=$(type -P valac-0.12)
- --disable-deprecation
- --disable-static"
- # Wtf, --disable-gcov, --enable-gcov=no, --enable-gcov, all enable gcov
- # What do we do about gdb, valgrind, gcov, etc?
-
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- # Upstream patch to fix g-i annotations; prevents crashes
- epatch "${FILESDIR}/${P}-PeasPluginInfo-annotation.patch"
-
- gnome2_src_prepare
-}
-
-src_test() {
- # FIXME: Tests fail because of some bug involving Xvfb and Gtk.IconTheme
- # DO NOT REPORT UPSTREAM, this is not a libpeas bug.
- # To reproduce:
- # >>> from gi.repository import Gtk
- # >>> Gtk.IconTheme.get_default().has_icon("gtk-about")
- # This should return True, it returns False for Xvfb
- Xemake check
-}
diff --git a/dev-libs/seed/files/seed-3.2.0-gio-libs.patch b/dev-libs/seed/files/seed-3.2.0-gio-libs.patch
deleted file mode 100644
index 691b4f4..0000000
--- a/dev-libs/seed/files/seed-3.2.0-gio-libs.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From f382387b9b56d72adbc6888f924e3838a1a94668 Mon Sep 17 00:00:00 2001
-From: Funda Wang <fundawang@gmail.com>
-Date: Fri, 23 Sep 2011 05:58:33 +0000
-Subject: fix #659910 - fix linkage against libgio - broken by webkit going...
-
----
-diff --git a/configure.ac b/configure.ac
-index 12fa4b8..adc33b1 100644
---- a/configure.ac
-+++ b/configure.ac
-@@ -129,6 +129,9 @@ AC_SUBST(GNOME_JS_DIR)
- dnl ========================GThread============================================
- PKG_CHECK_MODULES(GTHREAD, gthread-2.0)
-
-+dnl ========================GIO================================================
-+PKG_CHECK_MODULES(GIO, gio-2.0)
-+
- dnl =============================Modules=======================================
- dnl ==== canvas ====
- AC_ARG_ENABLE(canvas-module,
-diff --git a/libseed/Makefile.am b/libseed/Makefile.am
-index b45c893..5ff186b 100644
---- a/libseed/Makefile.am
-+++ b/libseed/Makefile.am
-@@ -43,6 +43,7 @@ libseed@SEED_GTK_VERSION@_la_LIBADD = \
- $(WEBKIT_LIBS) \
- $(SEED_PROFILE_LIBS) \
- $(SEED_OSX_LIBS) \
-+ $(GIO_LIBS) \
- $(FFI_LIBS) -ldl
-
- seedheaders_HEADERS = seed.h seed-debug.h seed-module.h
---
-cgit v0.9.0.2
diff --git a/dev-libs/seed/seed-3.2.0.ebuild b/dev-libs/seed/seed-3.2.0.ebuild
deleted file mode 100644
index 09da6cc..0000000
--- a/dev-libs/seed/seed-3.2.0.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="4"
-WANT_AUTOMAKE="1.11"
-GNOME2_LA_PUNT="yes"
-
-inherit autotools eutils gnome2 virtualx
-
-DESCRIPTION="Javascript bindings for Webkit-GTK and GNOME libraries"
-HOMEPAGE="http://live.gnome.org/Seed"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug doc profile test"
-
-RDEPEND="
- >=dev-libs/gobject-introspection-1
-
- dev-libs/glib:2
- virtual/libffi
- x11-libs/cairo
- x11-libs/gtk+:3[introspection]
- net-libs/webkit-gtk:3
- gnome-base/gnome-js-common
- dev-db/sqlite:3
- dev-libs/dbus-glib
- dev-libs/mpfr
- dev-libs/libxml2:2
- sys-apps/dbus
- sys-libs/readline"
-DEPEND="${RDEPEND}
- sys-devel/gettext
- >=dev-util/pkgconfig-0.9
- >=dev-util/intltool-0.35
- doc? ( >=dev-util/gtk-doc-0.9 )
- profile? ( sys-devel/gcc )"
-
-DOCS="AUTHORS ChangeLog NEWS README"
-
-# Lots of tests fail: https://bugzilla.gnome.org/show_bug.cgi?id=660644
-RESTRICT="test"
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-static
- --with-webkit=3.0
- --enable-readline-module
- --enable-os-module
- --enable-ffi-module
- --enable-gtkbuilder-module
- --enable-cairo-module
- --enable-gettext-module
- --enable-dbus-module
- --enable-mpfr-module
- --enable-sqlite-module
- --enable-libxml-module"
-
- # configure behaves very strangely and enables profiling if we pass either
- # --disable-profile or --enable-profile
- if use profile; then
- G2CONF="${G2CONF}
- --enable-profile
- --enable-profile-modules"
- if ! use debug; then
- elog "USE=profile needs debug, auto-enabling..."
- G2CONF="${G2CONF} --enable-debug"
- fi
- fi
-
- if use profile && has ccache ${FEATURES}; then
- ewarn "USE=profile behaves very badly with ccache; it tries to create"
- ewarn "profiling data in CCACHE_DIR. Please disable one of them!"
- fi
-}
-
-src_prepare() {
- # Upstream patch to fix linking with libgio; will be in next release
- epatch "${FILESDIR}/${P}-gio-libs.patch"
- eautoreconf
-
- gnome2_src_prepare
-}
-
-src_test() {
- Xemake check
-}
diff --git a/media-gfx/eog/eog-3.2.1.ebuild b/media-gfx/eog/eog-3.2.1.ebuild
deleted file mode 100644
index 704ff9b..0000000
--- a/media-gfx/eog/eog-3.2.1.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/eog/eog-2.32.1.ebuild,v 1.1 2010/11/28 23:00:08 pacho Exp $
-
-EAPI="4"
-GCONF_DEBUG="yes"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="The Eye of GNOME image viewer"
-HOMEPAGE="http://www.gnome.org/projects/eog/"
-
-LICENSE="GPL-2"
-SLOT="1"
-IUSE="doc +exif +introspection +jpeg lcms +svg tiff xmp"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-fi
-
-RDEPEND=">=x11-libs/gtk+-3.0.2:3[introspection]
- >=dev-libs/glib-2.29.4:2
- >=dev-libs/libxml2-2:2
- >=dev-libs/libpeas-0.7.4[gtk]
- >=gnome-base/gnome-desktop-2.91.2:3
- >=gnome-base/gsettings-desktop-schemas-2.91.92
- >=x11-themes/gnome-icon-theme-2.19.1
- >=x11-misc/shared-mime-info-0.20
-
- x11-libs/gdk-pixbuf:2[jpeg?,tiff?]
- x11-libs/libX11
-
- exif? (
- >=media-libs/libexif-0.6.14
- virtual/jpeg:0 )
- introspection? ( >=dev-libs/gobject-introspection-0.9.3 )
- jpeg? ( virtual/jpeg:0 )
- lcms? ( media-libs/lcms:2 )
- svg? ( >=gnome-base/librsvg-2.26:2 )
- xmp? ( media-libs/exempi:2 )"
-
-DEPEND="${RDEPEND}
- app-text/gnome-doc-utils
- sys-devel/gettext
- >=dev-util/intltool-0.40
- >=dev-util/pkgconfig-0.17
- doc? ( >=dev-util/gtk-doc-1.10 )"
-
-pkg_setup() {
- G2CONF="${G2CONF}
- $(use_enable introspection)
- $(use_with jpeg libjpeg)
- $(use_with exif libexif)
- $(use_with lcms cms)
- $(use_with xmp)
- $(use_with svg librsvg)
- --disable-scrollkeeper
- --disable-schemas-compile"
- DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README THANKS TODO"
-}
diff --git a/media-video/totem/totem-3.2.1.ebuild b/media-video/totem/totem-3.2.1.ebuild
deleted file mode 100644
index fcc4c51..0000000
--- a/media-video/totem/totem-3.2.1.ebuild
+++ /dev/null
@@ -1,182 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-video/totem/totem-2.30.0-r1.ebuild,v 1.1 2010/06/13 20:36:55 pacho Exp $
-
-EAPI="4"
-GCONF_DEBUG="yes"
-GNOME2_LA_PUNT="yes" # plugins are dlopened
-WANT_AUTOMAKE="1.11"
-PYTHON_DEPEND="python? 2:2.4"
-PYTHON_USE_WITH="threads"
-PYTHON_USE_WITH_OPT="python"
-
-inherit gnome2 multilib python
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="Media player for GNOME"
-HOMEPAGE="http://projects.gnome.org/totem/"
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-fi
-IUSE="bluetooth doc grilo +introspection iplayer lirc nautilus nsplugin +python +youtube vala" # zeroconf
-
-# TODO:
-# Cone (VLC) plugin needs someone with the right setup (remi ?)
-# coherence plugin broken upstream
-#
-# FIXME: Automagic tracker-0.9.0
-# XXX: Add Zeitgeist support when it gets added to GNOME 3 (3.2?)
-# Runtime dependency on gnome-session-2.91
-RDEPEND=">=dev-libs/glib-2.27.92:2
- >=x11-libs/gdk-pixbuf-2.23.0:2
- >=x11-libs/gtk+-2.99.3:3[introspection?]
- >=dev-libs/totem-pl-parser-2.32.4[introspection?]
- >=dev-libs/libpeas-1.1.0[gtk]
- >=x11-themes/gnome-icon-theme-2.16
- x11-libs/cairo
- >=dev-libs/libxml2-2.6:2
- >=media-libs/clutter-1.6.8:1.0
- >=media-libs/clutter-gst-1.3.9:1.0
- >=media-libs/clutter-gtk-1.0.2:1.0
- >=media-libs/gstreamer-0.10.30:0.10
- >=media-libs/gst-plugins-base-0.10.30:0.10
- x11-libs/mx:1.0
-
- media-libs/gst-plugins-good:0.10
- media-plugins/gst-plugins-taglib:0.10
- media-plugins/gst-plugins-gio:0.10
- media-plugins/gst-plugins-pango:0.10
- media-plugins/gst-plugins-x:0.10
- media-plugins/gst-plugins-meta:0.10
-
- x11-libs/libICE
- x11-libs/libSM
- x11-libs/libX11
- x11-libs/libXtst
- >=x11-libs/libXxf86vm-1.0.1
-
- bluetooth? ( net-wireless/bluez )
- grilo? ( >=media-libs/grilo-0.1.16 )
- introspection? ( >=dev-libs/gobject-introspection-0.6.7 )
- lirc? ( app-misc/lirc )
- nautilus? ( >=gnome-base/nautilus-2.91.3 )
- nsplugin? (
- >=dev-libs/dbus-glib-0.82
- >=x11-misc/shared-mime-info-0.22 )
- python? (
- >=dev-libs/gobject-introspection-0.6.7
- >=dev-python/pygobject-2.90.3:3
- >=x11-libs/gtk+-2.91.7:3[introspection]
- dev-python/pyxdg
- dev-python/gst-python:0.10
- dev-python/dbus-python
- iplayer? (
- dev-python/httplib2
- dev-python/feedparser
- dev-python/beautifulsoup ) )
- vala? ( >=dev-lang/vala-0.12.1:0.12 )
- youtube? (
- >=dev-libs/libgdata-0.7.0
- net-libs/libsoup:2.4
- media-plugins/gst-plugins-soup:0.10
- >=dev-libs/totem-pl-parser-2.32.4[quvi] )"
-# zeroconf? ( >=net-libs/libepc-0.5.0 )
-# XXX: zeroconf requires unreleased version of libepc
-
-DEPEND="${RDEPEND}
- sys-devel/gettext
- x11-proto/xproto
- x11-proto/xextproto
- app-text/scrollkeeper
- >=app-text/gnome-doc-utils-0.20.3
- >=dev-util/intltool-0.40
- >=dev-util/pkgconfig-0.20
- app-text/docbook-xml-dtd:4.5
- gnome-base/gnome-common
- dev-util/gtk-doc-am
- doc? ( >=dev-util/gtk-doc-1.14 )"
-# docbook-xml-dtd is needed for user doc
-
-# see bug #359379
-REQUIRED_USE="python? ( introspection )"
-
-pkg_setup() {
- DOCS="AUTHORS ChangeLog NEWS README TODO"
- G2CONF="${G2CONF}
- --disable-run-in-source-tree
- --disable-schemas-compile
- --disable-scrollkeeper
- --disable-static
- --with-smclient=auto
- --enable-easy-codec-installation
- $(use_enable introspection)
- $(use_enable nautilus)
- $(use_enable nsplugin browser-plugins)
- $(use_enable python)
- $(use_enable python introspection)
- $(use_enable vala)
- VALAC=$(type -P valac-0.12)
- BROWSER_PLUGIN_DIR=/usr/$(get_libdir)/nsbrowser/plugins"
- #--with-smclient=auto needed to correctly link to libICE and libSM
-
- # Disabled: sample-python, sample-vala, zeitgeist-dp
- local plugins="brasero-disc-recorder,chapters,im-status,gromit"
- plugins="${plugins},media-player-keys,ontop,properties,screensaver"
- plugins="${plugins},screenshot,sidebar-test,skipto"
- use bluetooth && plugins="${plugins},bemused"
- use grilo && plugins="${plugins},grilo"
- use iplayer && plugins="${plugins},iplayer"
- use lirc && plugins="${plugins},lirc"
- use nautilus && plugins="${plugins},save-file"
- use python && plugins="${plugins},dbusservice,pythonconsole,opensubtitles"
- use vala && plugins="${plugins},rotation"
- use youtube && plugins="${plugins},youtube"
- # XXX: zeroconf requires unreleased version of libepc
- # use zeroconf && plugins="${plugins},publish"
-
- G2CONF="${G2CONF} --with-plugins=${plugins}"
-
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- # AC_CONFIG_AUX_DIR_DEFAULT doesn't exist, and eautoreconf/aclocal fails
- mkdir -p m4
-
- #if [[ ${PV} != 9999 ]]; then
- # intltoolize --force --copy --automake || die "intltoolize failed"
- # eautoreconf
- #fi
-
- # disable pyc compiling
- mv py-compile py-compile.orig
- ln -s $(type -P true) py-compile
-
- gnome2_src_prepare
-}
-
-pkg_postinst() {
- gnome2_pkg_postinst
- if use python; then
- python_need_rebuild
- python_mod_optimize /usr/$(get_libdir)/totem/plugins
- fi
-
- ewarn
- ewarn "If totem doesn't play some video format, please check your"
- ewarn "USE flags on media-plugins/gst-plugins-meta"
- ewarn
-}
-
-pkg_postrm() {
- gnome2_pkg_postrm
- python_mod_cleanup /usr/$(get_libdir)/totem/plugins
-}
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-11-04 2:05 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-04 2:04 [gentoo-commits] proj/gnome:master commit in: dev-libs/seed/, app-text/evince/, app-text/libgxps/, app-editors/gedit/, Alexandre Restovtsev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox