* [gentoo-commits] proj/gnome:master commit in: x11-themes/gnome-backgrounds/, gnome-extra/mousetweaks/, gnome-extra/gcalctool/, ...
@ 2011-11-06 13:55 Alexandre Restovtsev
0 siblings, 0 replies; only message in thread
From: Alexandre Restovtsev @ 2011-11-06 13:55 UTC (permalink / raw
To: gentoo-commits
commit: ae5d3e1df35f445007015789a254d117fdcf068d
Author: Alexandre Rostovtsev <tetromino <AT> gentoo <DOT> org>
AuthorDate: Sun Nov 6 13:54:21 2011 +0000
Commit: Alexandre Restovtsev <tetromino <AT> gmail <DOT> com>
CommitDate: Sun Nov 6 13:54:21 2011 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/gnome.git;a=commit;h=ae5d3e1d
lots of packages: moved to gx86
---
.../eselect-gnome-shell-extensions-20110911.ebuild | 50 ----
.../files/20110911.eselect | 305 --------------------
app-arch/file-roller/file-roller-3.2.1.ebuild | 94 ------
.../gnome-applets/gnome-applets-3.2.1.ebuild | 140 ---------
gnome-base/gnome-panel/gnome-panel-3.2.1.ebuild | 94 ------
| 43 ---
| 33 ---
.../gnome-shell-extensions-3.0.2-r1.ebuild | 85 ------
.../gnome-shell-extensions-3.2.0-r1.ebuild | 89 ------
.../gnome-system-monitor-3.2.1.ebuild | 46 ---
| 80 -----
.../gnome-web-photo/gnome-web-photo-0.10.4.ebuild | 30 --
| 44 ---
.../epiphany-extensions-3.2.0.ebuild | 53 ----
www-client/epiphany/epiphany-3.2.1.ebuild | 83 ------
.../gnome-backgrounds-3.2.0.ebuild | 22 --
16 files changed, 0 insertions(+), 1291 deletions(-)
diff --git a/app-admin/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20110911.ebuild b/app-admin/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20110911.ebuild
deleted file mode 100644
index c35301a..0000000
--- a/app-admin/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20110911.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"
-
-DESCRIPTION="Manages system defaults for GNOME Shell extensions"
-HOMEPAGE="http://www.gentoo.org"
-SRC_URI=""
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-# gnome-shell schemas are used in pkg_postinst
-COMMON_DEPEND="app-admin/eselect
- >=dev-libs/glib-2.26:2
- gnome-base/gsettings-desktop-schemas
- gnome-base/gnome-shell"
-RDEPEND="${COMMON_DEPEND}
- dev-lang/perl
- dev-perl/JSON"
-DEPEND="${COMMON_DEPEND}"
-S="${WORKDIR}" # for now, since installing from ${FILESDIR}
-
-src_install() {
- insinto "/usr/share/eselect/modules"
- newins "${FILESDIR}/${PV}.eselect" "gnome-shell-extensions.eselect"
- keepdir "/etc/eselect/gnome-shell-extensions"
- # The actual gschema override file will be greated in pkg_postinst.
- dosym "/etc/eselect/gnome-shell-extensions/${PN}.gschema.override" \
- "/usr/share/glib-2.0/schemas/${PN}.gschema.override"
-}
-
-pkg_postinst() {
- einfo "Updating list of installed extensions"
- eselect gnome-shell-extensions update || die
- local keyname="disabled-extensions"
- has_version ">=gnome-base/gnome-shell-3.1.90" &&
- keyname="enabled-extensions"
- elog
- elog "eselect gnome-shell-extensions manages the system default value of"
- elog "the org.gnome.shell ${keyname} key. To override the default"
- elog "for an individual user, use the gsettings command, e.g."
- elog "\$ gsettings set org.gnome.shell ${keyname} \"['foo', 'bar']\""
- elog "To undo per-user changes and use the system default, do"
- elog "\$ gsettings reset org.gnome.shell ${keyname}"
- elog
-}
diff --git a/app-admin/eselect-gnome-shell-extensions/files/20110911.eselect b/app-admin/eselect-gnome-shell-extensions/files/20110911.eselect
deleted file mode 100644
index ef288c7..0000000
--- a/app-admin/eselect-gnome-shell-extensions/files/20110911.eselect
+++ /dev/null
@@ -1,305 +0,0 @@
-# -*-eselect-*- vim: ft=eselect
-# Copyright 2009-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2 or later
-# $Id: $
-
-DESCRIPTION="Manage default settings for systemwide GNOME Shell extensions"
-AUTHOR="tetromino@gmail.com"
-MAINTAINER="gnome@gentoo.org"
-SVN_DATE='$Date: 2011/09/11 18:00:00 -0400 $'
-VERSION=$(svn_date_to_version "${SVN_DATE}")
-
-#
-# Basic idea: eselect manages a gschema override file located in
-# /etc/eselect/gnome-shell-extensions/ that overrides GNOME Shell's
-# 'disabled-extensions' or 'enabled-extensions' (depending on
-# current shell version) GSettings key; the override file is
-# symlinked from /usr/share/glib-2.0/schemas/
-#
-
-gse_prepare() {
- XDG_DATA_DIRS=${XDG_DATA_DIRS:="${EROOT}/usr/local/share:${EROOT}/usr/share"}
- ETCDIR="${EROOT}/etc/eselect/gnome-shell-extensions"
- SCHEMADIR="${EROOT}/usr/share/glib-2.0/schemas"
- OVERRIDE_FILE="eselect-gnome-shell-extensions.gschema.override"
- CONFIG_FILE="config"
- if [[ ! -d "${SCHEMADIR}" ]]; then
- die -q "No ${SCHEMADIR} directory."
- elif [[ ! -d "${ETCDIR}" ]]; then
- die -q "No ${ETCDIR} directory."
- fi
-
- warnings=()
- errors=()
- available=()
- available_dirs=()
- enabled=()
-
- if [[ -e "${ETCDIR}/${CONFIG_FILE}" ]]; then
- source "${ETCDIR}/${CONFIG_FILE}" || die -q "Failed to source ${ETCDIR}/${CONFIG_FILE}"
- enabled=( "${enabled_saved[@]}" )
- fi
-}
-
-has() {
- # Copied from portage's isolated-functions.sh
- local needle=$1
- shift
-
- local x
- for x in "$@"; do
- [[ "${x}" = "${needle}" ]] && return 0
- done
- return 1
-}
-
-gse_print_warnings() {
- local n
-
- for (( n = 0; n < ${#warnings[@]}; ++n )); do
- write_warning_msg "${warnings[n]}"
- done
-
- for (( n = 0; n < ${#errors[@]}-1; ++n )); do
- write_error_msg "${errors[n]}"
- done
- [[ ${#errors[@]} = 0 ]] && return
- die -q "${errors[n]}"
-}
-
-gse_die() {
- errors=( "${errors[@]}" "$@" )
- gse_print_warnings
- die # should not happen...
-}
-
-gse_read_available() {
- local d
-
- gse_prepare
- # Do not expand * to '*' if $p is empty
- shopt -s nullglob
-
- for p in $(echo "${XDG_DATA_DIRS}" | tr -s ':' '\n'); do
- pushd "${p}/gnome-shell/extensions" &> /dev/null || continue
- for d in *; do
- local full_d="${p}/gnome-shell/extensions/${d}"
- # skip invalid extension directories
- if ! [[ -d "${d}" && -f "${d}/metadata.json" && -s "${d}/metadata.json" ]]; then
- warnings=( "${warnings[@]}" "${full_d} is not a valid extension" )
- continue
- fi
- # earlier entries in XDG_DATA_DIRS take precedence
- if has "${d}" "${available[@]}"; then
- warnings=( "${warnings[@]}" "Skipping ${full_d}" )
- continue
- fi
- available_dirs=( "${available_dirs[@]}" "${full_d}" )
- available=( "${available[@]}" "${d}" )
- done
- popd > /dev/null
- done
- # Sort $available
- if [[ -n "${available[@]}" ]]; then
- eval available=( $(printf '%q\n' "${available[@]}" | sort ) )
- fi
-}
-
-gse_write_config_file() {
- local f="${ETCDIR}/${CONFIG_FILE}"
-
- # Sort and uniquefy $enabled
- eval enabled_saved=( $(printf '%q\n' "${enabled[@]}" | sort -u ) )
-
- if [[ -e "${f}" ]]; then
- [[ -f "${f}" && -w "${f}" ]] || gse_die "${f} is not writable"
- else
- [[ -w "${ETCDIR}" ]] || gse_die "${ETCDIR} is not writable"
- fi
-
- cat > "${f}" <<EOF || gse_die "Failed to write ${f}"
-# Generated and used by eselect gnome-shell-extensions; do not edit manually
-$(declare -p enabled_saved)
-EOF
-}
-
-gse_write_override_file() {
- local f="${ETCDIR}/${OVERRIDE_FILE}"
- local local key value e
-
- case $(gnome-shell --version) in
- "GNOME Shell 2"* | "GNOME Shell 3.0"* | "GNOME Shell 3.1."[012345678]* )
- # <gnome-shell-3.1.90 uses 'disabled-extensions' key
- key="disabled-extensions"
- for e in "${available[@]}"; do
- has "${e}" "${enabled[@]}" || value+="'${e}', "
- done
- value=`echo "${value}" | sed -e 's:, $::'`
- ;;
- * )
- # >=gnome-shell-3.1.90 uses 'enabled-extensions' key
- key="enabled-extensions"
- for e in "${enabled[@]}"; do
- value+="'${e}', "
- done
- value=`echo "${value}" | sed -e 's:, $::'`
- ;;
- esac
-
- if [[ -e "${f}" ]]; then
- [[ -f "${f}" && -w "${f}" ]] || gse_die "${f} not writable"
- else
- [[ -w "${ETCDIR}" ]] || gse_die "${ETCDIR}/ not writable"
- fi
-
- cat > "${f}" <<EOF || gse_die "Failed to write ${f}"
-# Generated and used by eselect gnome-shell-extensions; do not edit manually
-[org.gnome.shell]
-${key}=[${value}]
-EOF
- glib-compile-schemas "${SCHEMADIR}" || gse_die "Failed to compile schemas in ${SCHEMADIR}"
-}
-
-gse_get_name() {
- # $1 is an index into available_dirs
- perl -e 'use JSON; undef $/; print decode_json(<>)->{name};' \
- "${available_dirs[${1}]}/metadata.json"
-}
-
-gse_get_description() {
- # $1 is an index into available_dirs
- perl -e 'use JSON; undef $/; print decode_json(<>)->{description};' \
- "${available_dirs[${1}]}/metadata.json"
-}
-
-### list action
-
-describe_list() {
- echo "List ids of available GNOME Shell extensions"
-}
-
-describe_list_options() {
- echo "-v, --verbose : Display extension names and descriptions"
-}
-
-do_list() {
- local n
-
- gse_read_available
- write_list_start "Available extensions ($(highlight '*') means enabled for all users by default):"
- for (( n = 0; n < ${#available[@]}; ++n )); do
- has "${available[n]}" "${enabled[@]}" &&
- available[n]=$(highlight_marker "${available[n]}")
- if [[ $1 = "--verbose" || $1 = "-v" ]]; then
- available[n]+="\n\tfull name : $(gse_get_name $n)\n\tdescription : $(gse_get_description $n)"
- fi
- done
- write_numbered_list -m "(none found)" "${available[@]}"
- gse_print_warnings
-}
-
-### enable action
-
-describe_enable() {
- echo "Enable specified extension(s) for all users by default"
-}
-
-describe_enable_parameters() {
- echo "<extension>"
-}
-
-describe_enable_options() {
- echo "<extension> : Extension id or number (from 'list' action)"
-}
-
-do_enable() {
- local arg ext n
-
- gse_read_available
- for arg in "$@"; do
- local found=
- for (( n = 0; n < ${#available[@]}; ++n )); do
- ext="${available[n]}"
- if [[ "${arg}" = $((n+1)) || "${arg}" = "${ext}" ]]; then
- has "${ext}" "${enabled[@]}" &&
- warnings=( "${warnings[@]}" "Extension ${arg} is already enabled" )
- # will be uniquefied in gse_write_config_file
- enabled=( "${enabled[@]}" "${ext}" )
- found=yes
- break
- fi
- done
- [[ ${found} = "yes" ]] || errors=( "${errors[@]}" "Failed to find extension ${arg}" )
- done
- gse_write_override_file
- gse_write_config_file
- gse_print_warnings
-}
-
-### disable action
-
-describe_disable() {
- echo "Disable specified extension(s) for all users by default"
-}
-
-describe_disable_parameters() {
- echo "<extension>"
-}
-
-describe_disable_options() {
- echo "<extension> : Extension id or number (from 'list' action)"
-}
-
-gse_unenable() {
- # remove $1 from the enabled array
- local found e
- local new_enabled=()
-
- for e in "${enabled[@]}"; do
- if [[ "$1" = "${e}" ]]; then
- found="yes"
- else
- new_enabled=( "${new_enabled[@]}" "${e}" )
- fi
- done
- enabled=( "${new_enabled[@]}" )
- [[ "${found}" = "yes" ]] && return 0
- return 1
-}
-
-do_disable() {
- local arg ext n
-
- gse_read_available
- for arg in "$@"; do
- local found=
- for (( n = 0; n < ${#available[@]}; ++n )); do
- ext="${available[n]}"
- if [[ "${arg}" = $((n+1)) || "${arg}" = "${ext}" ]]; then
- gse_unenable "${ext}" ||
- warnings=( "${warnings[@]}" "Extension ${arg} is already marked as disabled" )
- found=yes
- break
- fi
- done
- [[ ${found} = "yes" ]] ||
- errors=( "${errors[@]}" "Failed to find extension ${arg}" )
- done
- gse_write_override_file
- gse_write_config_file
- gse_print_warnings
-}
-
-### update action
-
-describe_update() {
- echo "Scan for installed extensions, disable ones that haven't been enabled"
- echo "earlier, and update gsettings keys if GNOME Shell has been upgraded"
-}
-
-do_update() {
- # Run this after emerging a new extension package
- gse_read_available
- gse_write_override_file
- gse_print_warnings
-}
diff --git a/app-arch/file-roller/file-roller-3.2.1.ebuild b/app-arch/file-roller/file-roller-3.2.1.ebuild
deleted file mode 100644
index d79e304..0000000
--- a/app-arch/file-roller/file-roller-3.2.1.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/file-roller/file-roller-2.32.1.ebuild,v 1.2 2010/12/07 19:37:09 eva Exp $
-
-EAPI="4"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit eutils gnome2
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="Archive manager for GNOME"
-HOMEPAGE="http://fileroller.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="nautilus packagekit"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
-fi
-
-# gdk-pixbuf used extensively in the source
-# cairo used in eggtreemultidnd.c
-# pango used in fr-window
-RDEPEND=">=dev-libs/glib-2.29.14:2
- sys-apps/file
- x11-libs/cairo
- x11-libs/gdk-pixbuf:2
- >=x11-libs/gtk+-3.0.2:3
- x11-libs/pango
- nautilus? ( >=gnome-base/nautilus-3.0.0 )
- packagekit? ( app-admin/packagekit-base )
-"
-DEPEND="${RDEPEND}
- sys-devel/gettext
- >=dev-util/intltool-0.40.0
- dev-util/pkgconfig
- app-text/gnome-doc-utils"
-# eautoreconf needs:
-# gnome-base/gnome-common
-
-pkg_setup() {
- # --disable-debug because enabling it adds -O0 to CFLAGS
- G2CONF="${G2CONF}
- --disable-dependency-tracking
- --disable-scrollkeeper
- --disable-run-in-place
- --disable-static
- --disable-schemas-compile
- --disable-debug
- --enable-magic
- $(use_enable nautilus nautilus-actions)
- $(use_enable packagekit)"
- DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README TODO"
-}
-
-src_prepare() {
- gnome2_src_prepare
-
- # Use absolute path to GNU tar since star doesn't have the same
- # options. On Gentoo, star is /usr/bin/tar, GNU tar is /bin/tar
- epatch "${FILESDIR}"/${PN}-2.10.3-use_bin_tar.patch
-
- # File providing Gentoo package names for various archivers
- cp -f "${FILESDIR}/3.1.2-packages.match" data/packages.match || die
-}
-
-pkg_postinst() {
- gnome2_pkg_postinst
-
- elog "${PN} is a frontend for several archiving utilities. If you want a"
- elog "particular achive format support, see ${HOMEPAGE}"
- elog "and install the relevant package."
- elog
- elog "for example:"
- elog " 7-zip - app-arch/p7zip"
- elog " ace - app-arch/unace"
- elog " arj - app-arch/arj"
- elog " cpio - app-arch/cpio"
- elog " deb - app-arch/dpkg"
- elog " iso - app-cdr/cdrtools"
- elog " jar,zip - app-arch/zip and app-arch/unzip"
- elog " lha - app-arch/lha"
- elog " lzma - app-arch/xz-utils"
- elog " lzop - app-arch/lzop"
- elog " rar - app-arch/unrar"
- elog " rpm - app-arch/rpm"
- elog " unstuff - app-arch/stuffit"
- elog " zoo - app-arch/zoo"
-}
diff --git a/gnome-base/gnome-applets/gnome-applets-3.2.1.ebuild b/gnome-base/gnome-applets/gnome-applets-3.2.1.ebuild
deleted file mode 100644
index 3e8abda..0000000
--- a/gnome-base/gnome-applets/gnome-applets-3.2.1.ebuild
+++ /dev/null
@@ -1,140 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-applets/gnome-applets-2.32.1.1.ebuild,v 1.6 2011/02/08 19:04:13 ssuominen Exp $
-
-EAPI="4"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="no" # bug 340725, no other la files
-PYTHON_DEPEND="2:2.4"
-
-inherit eutils gnome2 python
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="Applets for the GNOME Desktop and Panel"
-HOMEPAGE="http://www.gnome.org/"
-
-LICENSE="GPL-2 FDL-1.1 LGPL-2"
-SLOT="0"
-IUSE="gnome ipv6 networkmanager policykit"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
-fi
-
-# null applet still needs bonobo support for gnome-panel?
-#
-# Latest gnome-panel needed due to commit 45a4988a6
-# atk, cairo, pango used in multiple applets
-RDEPEND=">=x11-libs/gtk+-3.0.0:3
- dev-libs/atk
- >=dev-libs/glib-2.22:2
- >=gnome-base/gconf-2.8:2
- >=gnome-base/gnome-panel-2.91.91
- x11-libs/cairo
- >=x11-libs/libxklavier-4.0
- >=x11-libs/libwnck-2.91.0:3
- >=x11-libs/libnotify-0.7
- x11-libs/pango
- >=sys-apps/dbus-1.1.2
- >=dev-libs/dbus-glib-0.74
- >=dev-libs/libxml2-2.5.0
- >=x11-themes/gnome-icon-theme-2.15.91
- >=dev-libs/libgweather-2.91.0
- x11-libs/libX11
-
- gnome? (
- gnome-base/gnome-settings-daemon
-
- >=gnome-extra/gucharmap-2.33.0:2.90
- >=gnome-base/libgtop-2.11.92
-
- >=dev-python/pygobject-2.26:2[introspection]
- gnome-base/gconf[introspection]
- gnome-base/gnome-panel[introspection]
- x11-libs/gdk-pixbuf[introspection]
- x11-libs/gtk+:3[introspection]
- x11-libs/pango[introspection] )
- networkmanager? ( >=net-misc/networkmanager-0.7.0 )
- policykit? ( >=sys-auth/polkit-0.92 )"
-DEPEND="${RDEPEND}
- >=app-text/scrollkeeper-0.1.4
- >=app-text/gnome-doc-utils-0.3.2
- >=dev-util/pkgconfig-0.19
- >=dev-util/intltool-0.35
- dev-libs/libxslt
- app-text/docbook-xml-dtd:4.1.2
- app-text/docbook-xml-dtd:4.3"
-
-pkg_setup() {
- DOCS="AUTHORS ChangeLog NEWS README"
- # We don't want HAL or battstat.
- # mixer applet uses gstreamer, conflicts with the mixer provided by g-s-d
- # GNOME 3 has a hard-dependency on pulseaudio, so gstmixer applet is useless
- G2CONF="${G2CONF}
- --disable-scrollkeeper
- --disable-schemas-install
- --without-hal
- --disable-battstat
- --disable-mixer-applet
- $(use_enable ipv6)
- $(use_enable networkmanager)
- $(use_enable policykit polkit)"
-
- python_set_active_version 2
- python_pkg_setup
-}
-
-src_prepare() {
- gnome2_src_prepare
-
- # disable pyc compiling
- mv py-compile py-compile.orig
- ln -s $(type -P true) py-compile
-
- # Invest applet tests need gconf/proxy/...
- # Note: for now, invest tests are commented out by upstream
- #sed 's/^TESTS.*/TESTS=/g' -i invest-applet/invest/Makefile.am \
- # invest-applet/invest/Makefile.in || die "disabling invest tests failed"
-
- python_convert_shebangs -r 2 .
-}
-
-src_test() {
- unset DBUS_SESSION_BUS_ADDRESS
- emake check
-}
-
-src_install() {
- gnome2_src_install
-
- local APPLETS="accessx-status charpick cpufreq drivemount geyes
- gkb-new gweather invest-applet mini-commander
- multiload null_applet stickynotes trashapplet"
-
- # mixer is out because gnome3 uses pulseaudio
- # modemlights is out because it needs system-tools-backends-1
- # battstat is disabled because we don't want HAL anywhere
-
- for applet in ${APPLETS} ; do
- docinto ${applet}
-
- for d in AUTHORS ChangeLog NEWS README README.themes TODO ; do
- [ -s ${applet}/${d} ] && dodoc ${applet}/${d}
- done
- done
-}
-
-pkg_postinst() {
- gnome2_pkg_postinst
-
- # check for new python modules on bumps
- python_mod_optimize invest
-}
-
-pkg_postrm() {
- gnome2_pkg_postrm
- python_mod_cleanup invest
-}
diff --git a/gnome-base/gnome-panel/gnome-panel-3.2.1.ebuild b/gnome-base/gnome-panel/gnome-panel-3.2.1.ebuild
deleted file mode 100644
index cac1523..0000000
--- a/gnome-base/gnome-panel/gnome-panel-3.2.1.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-base/gnome-panel/gnome-panel-2.32.1.ebuild,v 1.3 2011/01/15 19:54:59 nirbheek Exp $
-
-EAPI="4"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="The GNOME panel"
-HOMEPAGE="http://www.gnome.org/"
-
-LICENSE="GPL-2 FDL-1.1 LGPL-2"
-SLOT="0"
-IUSE="doc eds +introspection networkmanager"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- # Odd behaviour w.r.t. panels: https://bugzilla.gnome.org/show_bug.cgi?id=631553
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
-fi
-
-RDEPEND=">=gnome-base/gnome-desktop-2.91:3
- >=x11-libs/pango-1.15.4[introspection?]
- >=dev-libs/glib-2.25.12:2
- >=x11-libs/gtk+-3.0:3[introspection?]
- x11-libs/gdk-pixbuf:2
- >=dev-libs/libgweather-2.91:2
- dev-libs/libxml2:2
- gnome-base/dconf
- >=gnome-base/gconf-2.6.1:2[introspection?]
- >=gnome-base/gnome-menus-3.1.4:3
- gnome-base/gsettings-desktop-schemas
- gnome-base/librsvg:2
- >=net-libs/telepathy-glib-0.14.0
- >=x11-libs/cairo-1[X]
- x11-libs/libXau
- x11-libs/libICE
- x11-libs/libSM
- >=x11-libs/libXrandr-1.2
- >=x11-libs/libwnck-2.91:3
-
- eds? ( >=gnome-extra/evolution-data-server-2.91.2 )
- introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
- networkmanager? ( >=net-misc/networkmanager-0.6.7 )"
-DEPEND="${RDEPEND}
- >=dev-lang/perl-5
- >=app-text/gnome-doc-utils-0.3.2
- >=dev-util/pkgconfig-0.9
- >=dev-util/intltool-0.40
- ~app-text/docbook-xml-dtd-4.1.2
- doc? ( >=dev-util/gtk-doc-1 )"
-# eautoreconf needs
-# gnome-base/gnome-common
-# dev-util/gtk-doc-am
-
-pkg_setup() {
- # XXX: Make presence/telepathy-glib support optional?
- # We can do that if we intend to support fallback-only as a setup
- G2CONF="${G2CONF}
- --disable-deprecation-flags
- --disable-static
- --disable-scrollkeeper
- --disable-schemas-install
- --disable-schemas-compile
- --with-in-process-applets=clock,notification-area,wncklet
- --enable-telepathy-glib
- $(use_enable networkmanager network-manager)
- $(use_enable introspection)
- $(use_enable eds)"
- DOCS="AUTHORS ChangeLog HACKING NEWS README"
-}
-
-pkg_postinst() {
- local entries="${EROOT}etc/gconf/schemas/panel-default-setup.entries"
- local gconftool="${EROOT}usr/bin/gconftool-2"
-
- if [ -e "$entries" ]; then
- einfo "Setting panel gconf defaults..."
-
- GCONF_CONFIG_SOURCE="$("${gconftool}" --get-default-source | sed "s;:/;:${ROOT};")"
-
- "${gconftool}" --direct --config-source \
- "${GCONF_CONFIG_SOURCE}" --load="${entries}"
- fi
-
- # Calling this late so it doesn't process the GConf schemas file we already
- # took care of.
- gnome2_pkg_postinst
-}
diff --git a/gnome-extra/gcalctool/gcalctool-6.2.0.ebuild b/gnome-extra/gcalctool/gcalctool-6.2.0.ebuild
deleted file mode 100644
index d6d5333..0000000
--- a/gnome-extra/gcalctool/gcalctool-6.2.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gcalctool/gcalctool-5.32.2.ebuild,v 1.1 2010/11/28 14:53:45 pacho Exp $
-
-EAPI="4"
-GCONF_DEBUG="no"
-
-inherit gnome2
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="A calculator application for GNOME"
-HOMEPAGE="http://live.gnome.org/Gcalctool http://calctool.sourceforge.net/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
-fi
-
-COMMON_DEPEND=">=x11-libs/gtk+-2.90.7:3
- >=dev-libs/glib-2.25.10:2
- dev-libs/libxml2"
-DEPEND="${COMMON_DEPEND}
- >=app-text/gnome-doc-utils-0.3.2
- app-text/scrollkeeper
- >=dev-util/intltool-0.35
- >=dev-util/pkgconfig-0.9
- sys-devel/bison
- sys-devel/flex
- sys-devel/gettext"
-RDEPEND="${COMMON_DEPEND}
- !<gnome-extra/gnome-utils-2.3"
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-schemas-compile"
- DOCS="AUTHORS ChangeLog* NEWS README"
-}
diff --git a/gnome-extra/gnome-shell-extensions/files/gnome-shell-extensions-3.2.0-dock-popup-menus.patch b/gnome-extra/gnome-shell-extensions/files/gnome-shell-extensions-3.2.0-dock-popup-menus.patch
deleted file mode 100644
index e2cc380..0000000
--- a/gnome-extra/gnome-shell-extensions/files/gnome-shell-extensions-3.2.0-dock-popup-menus.patch
+++ /dev/null
@@ -1,33 +0,0 @@
-From 967aee7aad2accfb38d91ab56b6c5e91d86a2722 Mon Sep 17 00:00:00 2001
-From: Stefan 'psYchotic' Zwanenburg <stefanhetzwaantje@gmail.com>
-Date: Wed, 12 Oct 2011 01:16:18 +0000
-Subject: dock: Fix popup menus
-
-The dock popup menus weren't working because a signal had been renamed
-('popup' -> 'open-state-changed').
-
-https://bugzilla.gnome.org/show_bug.cgi?id=661484
----
-diff --git a/extensions/dock/extension.js b/extensions/dock/extension.js
-index 47cd76f..240f8a8 100644
---- a/extensions/dock/extension.js
-+++ b/extensions/dock/extension.js
-@@ -682,7 +682,7 @@ DockIcon.prototype = {
- this._menu.connect('activate-window', Lang.bind(this, function (menu, window) {
- this.activateWindow(window);
- }));
-- this._menu.connect('popup', Lang.bind(this, function (menu, isPoppedUp) {
-+ this._menu.connect('open-state-changed', Lang.bind(this, function (menu, isPoppedUp) {
- if (!isPoppedUp){
- //Restore value of autohidedock
- this._dock._restoreHideDock();
-@@ -776,7 +776,6 @@ DockIconMenu.prototype = {
- this._source = source;
-
- this.connect('activate', Lang.bind(this, this._onActivate));
-- this.connect('open-state-changed', Lang.bind(this, this._onOpenStateChanged));
-
- this.actor.add_style_class_name('dock-menu');
-
---
-cgit v0.9.0.2
diff --git a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.0.2-r1.ebuild b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.0.2-r1.ebuild
deleted file mode 100644
index 7182306..0000000
--- a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.0.2-r1.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="4"
-GCONF_DEBUG="no"
-GNOME_TARBALL_SUFFIX="bz2"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-if [[ ${PV} = 9999 ]]; then
- EGIT_BRANCH="gnome-3-0"
- inherit gnome2-live
-fi
-
-DESCRIPTION="JavaScript extensions for GNOME Shell"
-HOMEPAGE="http://live.gnome.org/GnomeShell/Extensions"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="examples"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~amd64 ~x86"
-fi
-
-COMMON_DEPEND="
- >=dev-libs/glib-2.26
- >=gnome-base/gnome-desktop-2.91.6:3
- app-admin/eselect-gnome-shell-extensions"
-RDEPEND="${COMMON_DEPEND}
- gnome-base/gnome-desktop:3[introspection]
- =gnome-base/gnome-shell-3.0*
- media-libs/clutter:1.0[introspection]
- net-libs/telepathy-glib[introspection]
- x11-libs/gtk+:3[introspection]
- x11-libs/pango[introspection]"
-DEPEND="${COMMON_DEPEND}
- sys-devel/gettext
- >=dev-util/pkgconfig-0.22
- >=dev-util/intltool-0.26
- gnome-base/gnome-common"
-
-pkg_setup() {
- DOCS="NEWS README"
- G2CONF="${G2CONF}
- --enable-extensions=all
- --disable-schemas-compile"
-}
-
-src_prepare() {
- gnome2_src_prepare
-
- # xrandr-indicator crashes gnome-shell with <gjs-0.7.15;
- # see gnome bug 649077. For simplicity, just disable it for gnome-3.0.
- sed -e 's:\(ALL_EXTENSIONS=.*\)xrandr-indicator:\1:' \
- -i configure || die
-}
-
-src_install() {
- gnome2_src_install
-
- local example="example@gnome-shell-extensions.gnome.org"
- if use examples; then
- mv "${ED}usr/share/gnome-shell/extensions/${example}" \
- "${ED}usr/share/doc/${PF}/" || die
- else
- rm -r "${ED}usr/share/gnome-shell/extensions/${example}" || die
- fi
-}
-
-pkg_postinst() {
- gnome2_pkg_postinst
-
- einfo "Updating list of installed extensions"
- eselect gnome-shell-extensions update || die
- elog
- elog "Installed extensions installed are initially disabled by default."
- elog "To change the system default and enable some extensions, you can use"
- elog "# eselect gnome-shell-extensions"
- elog "Alternatively, you can use the org.gnome.shell disabled-extensions"
- elog "gsettings key to change the disabled extension list per-user."
- elog
-}
diff --git a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.2.0-r1.ebuild b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.2.0-r1.ebuild
deleted file mode 100644
index 1c51832..0000000
--- a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-3.2.0-r1.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"
-GCONF_DEBUG="no"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-if [[ ${PV} = 9999 ]]; then
-# EGIT_BRANCH="gnome-3-0"
- inherit gnome2-live
-fi
-
-DESCRIPTION="JavaScript extensions for GNOME Shell"
-HOMEPAGE="http://live.gnome.org/GnomeShell/Extensions"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="examples"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~amd64 ~x86"
-fi
-
-COMMON_DEPEND="
- >=dev-libs/glib-2.26
- >=gnome-base/gnome-desktop-2.91.6:3[introspection]
- >=gnome-base/libgtop-2.28.3[introspection]
- app-admin/eselect-gnome-shell-extensions"
-RDEPEND="${COMMON_DEPEND}
- >=dev-libs/gjs-1.29
- dev-libs/gobject-introspection
- =gnome-base/gnome-shell-3.2*
- media-libs/clutter:1.0[introspection]
- net-libs/telepathy-glib[introspection]
- x11-libs/gtk+:3[introspection]
- x11-libs/pango[introspection]"
-DEPEND="${COMMON_DEPEND}
- sys-devel/gettext
- >=dev-util/pkgconfig-0.22
- >=dev-util/intltool-0.26
- gnome-base/gnome-common"
-
-pkg_setup() {
- DOCS="NEWS README"
- G2CONF="${G2CONF}
- --enable-extensions=all
- --disable-schemas-compile"
-}
-
-src_prepare() {
- gnome2_src_prepare
-
- # Fix popup menus in dock extension; will be in next release
- epatch "${FILESDIR}/${P}-dock-popup-menus.patch"
-
- # xrandr-indicator crashes gnome-shell with <gjs-0.7.15;
- # see gnome bug 649077. For simplicity, just disable it for gnome-3.0.
- # sed -e 's:\(ALL_EXTENSIONS=.*\)xrandr-indicator:\1:' \
- # -i configure || die
-}
-
-src_install() {
- gnome2_src_install
-
- local example="example@gnome-shell-extensions.gnome.org"
- if use examples; then
- mv "${ED}usr/share/gnome-shell/extensions/${example}" \
- "${ED}usr/share/doc/${PF}/" || die
- else
- rm -r "${ED}usr/share/gnome-shell/extensions/${example}" || die
- fi
-}
-
-pkg_postinst() {
- gnome2_pkg_postinst
-
- einfo "Updating list of installed extensions"
- eselect gnome-shell-extensions update || die
- elog
- elog "Installed extensions installed are initially disabled by default."
- elog "To change the system default and enable some extensions, you can use"
- elog "# eselect gnome-shell-extensions"
- elog "Alternatively, you can use the org.gnome.shell enabled-extensions"
- elog "gsettings key to change the disabled extension list per-user."
- elog
-}
diff --git a/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.2.1.ebuild b/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.2.1.ebuild
deleted file mode 100644
index 727b3a8..0000000
--- a/gnome-extra/gnome-system-monitor/gnome-system-monitor-3.2.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-system-monitor/gnome-system-monitor-2.28.2.ebuild,v 1.6 2011/01/30 18:56:15 armin76 Exp $
-
-EAPI="4"
-GCONF_DEBUG="no"
-
-inherit gnome2
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="The Gnome System Monitor"
-HOMEPAGE="http://www.gnome.org/"
-
-LICENSE="GPL-2"
-SLOT="0"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-fi
-IUSE=""
-
-RDEPEND=">=dev-libs/glib-2.28:2
- >=x11-libs/libwnck-2.91.0:3
- >=gnome-base/libgtop-2.28.2:2
- >=x11-libs/gtk+-3.0:3
- >=x11-themes/gnome-icon-theme-2.31
- >=dev-cpp/gtkmm-2.99:3.0
- >=dev-cpp/glibmm-2.27:2
- >=dev-libs/libxml2-2.0:2
- >=gnome-base/librsvg-2.12:2"
-
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.19
- >=dev-util/intltool-0.41.0
- >=sys-devel/gettext-0.17
- >=app-text/gnome-doc-utils-0.20"
-
-pkg_setup() {
- DOCS="AUTHORS ChangeLog NEWS README"
- G2CONF="${G2CONF}
- --disable-schemas-compile
- --disable-scrollkeeper"
-}
diff --git a/gnome-extra/gnome-utils/gnome-utils-3.2.1.ebuild b/gnome-extra/gnome-utils/gnome-utils-3.2.1.ebuild
deleted file mode 100644
index b407a2a..0000000
--- a/gnome-extra/gnome-utils/gnome-utils-3.2.1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-utils/gnome-utils-2.32.0-r1.ebuild,v 1.1 2010/12/04 18:08:10 pacho Exp $
-
-EAPI="4"
-GCONF_DEBUG="yes"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="Utilities for the Gnome2 desktop"
-HOMEPAGE="http://www.gnome.org/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="doc ipv6 test"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux"
-fi
-
-# libcanberra 0.26-r2 is needed for gtk+:3 fixes
-COMMON_DEPEND=">=dev-libs/glib-2.29.14:2
- >=x11-libs/gtk+-3.0.3:3
- >=gnome-base/gconf-2:2
- >=gnome-base/gsettings-desktop-schemas-0.1.0
- >=gnome-base/libgtop-2.12:2
- >=media-libs/libcanberra-0.26-r2[gtk3]
- x11-libs/libXext
- x11-libs/libX11"
-
-DEPEND="${COMMON_DEPEND}
- x11-proto/xextproto
- app-text/scrollkeeper
- >=dev-util/intltool-0.40
- >=dev-util/pkgconfig-0.9
- doc? ( >=dev-util/gtk-doc-1.10 )"
-
-# file collisions with g-c-c
-# nautilus is used via dbus
-RDEPEND="${COMMON_DEPEND}
- >=gnome-base/nautilus-3.0.0
- !<gnome-base/gnome-control-center-2.90"
-
-pkg_setup() {
- if ! use debug; then
- G2CONF="${G2CONF} --enable-debug=minimum"
- fi
-
- G2CONF="${G2CONF}
- $(use_enable ipv6)
- --enable-zlib
- --disable-maintainer-flags
- --disable-static
- --disable-schemas-install
- --disable-schemas-compile
- --disable-scrollkeeper"
- DOCS="AUTHORS ChangeLog NEWS README THANKS"
-}
-
-src_prepare() {
- gnome2_src_prepare
-
- # Remove idiotic -D.*DISABLE_DEPRECATED cflags
- # This method is kinda prone to breakage. Recheck carefully with next bump.
- # bug 339074
- find . -iname 'Makefile.am' -exec \
- sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' -i {} + || die "sed 1 failed"
- # Do Makefile.in after Makefile.am to avoid automake maintainer-mode
- find . -iname 'Makefile.in' -exec \
- sed -e '/-D[A-Z_]*DISABLE_DEPRECATED/d' -i {} + || die "sed 1 failed"
-
- if ! use test ; then
- sed -e 's/ tests//' -i logview/Makefile.{am,in} || die "sed 2 failed"
- fi
-}
diff --git a/gnome-extra/gnome-web-photo/gnome-web-photo-0.10.4.ebuild b/gnome-extra/gnome-web-photo/gnome-web-photo-0.10.4.ebuild
deleted file mode 100644
index 529c4d3..0000000
--- a/gnome-extra/gnome-web-photo/gnome-web-photo-0.10.4.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/gnome-web-photo/gnome-web-photo-0.10.ebuild,v 1.2 2011/03/21 23:30:20 nirbheek Exp $
-
-EAPI="4"
-GCONF_DEBUG="yes"
-
-inherit gnome2
-
-DESCRIPTION="a tool to generate images and thumbnails from HTML files"
-HOMEPAGE="ftp://ftp.gnome.org/pub/gnome/sources/gnome-web-photo"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND=">=dev-libs/glib-2.14:2
- >=x11-libs/gtk+-2.99.3:3
- >=net-libs/webkit-gtk-1.1.23:3
-"
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.19
- >=dev-util/intltool-0.40.6
- sys-devel/gettext"
-
-pkg_setup() {
- DOCS="AUTHORS ChangeLog HACKING NEWS README TODO"
- G2CONF="${G2CONF} --with-gtk=3.0"
-}
diff --git a/gnome-extra/mousetweaks/mousetweaks-3.2.1.ebuild b/gnome-extra/mousetweaks/mousetweaks-3.2.1.ebuild
deleted file mode 100644
index 4cdb7f8..0000000
--- a/gnome-extra/mousetweaks/mousetweaks-3.2.1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/mousetweaks/mousetweaks-2.32.1.ebuild,v 1.8 2011/03/23 08:21:12 nirbheek Exp $
-
-EAPI="4"
-GCONF_DEBUG="no"
-
-inherit gnome2
-
-DESCRIPTION="Mouse accessibility enhancements for the GNOME desktop"
-HOMEPAGE="http://live.gnome.org/Mousetweaks/Home"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="applet"
-
-RDEPEND="
- >=dev-libs/glib-2.25.9:2
- >=x11-libs/gtk+-3:3
- >=gnome-base/gsettings-desktop-schemas-0.1
-
- x11-libs/libX11
- x11-libs/libXtst
- x11-libs/libXfixes
- x11-libs/libXcursor
-
- applet? (
- >=gnome-base/gnome-panel-2.32
- <gnome-base/gnome-panel-2.90 )
-"
-DEPEND="${RDEPEND}
- >=dev-util/intltool-0.40
- >=dev-util/pkgconfig-0.17"
-# eautoreconf needs:
-# gnome-base/gnome-common
-
-pkg_setup() {
- DOCS="AUTHORS ChangeLog MAINTAINERS NEWS README"
- G2CONF="${G2CONF}
- --disable-schemas-compile
- $(use_enable applet pointer-capture)
- $(use_enable applet dwell-click)"
-}
diff --git a/www-client/epiphany-extensions/epiphany-extensions-3.2.0.ebuild b/www-client/epiphany-extensions/epiphany-extensions-3.2.0.ebuild
deleted file mode 100644
index 5e84961..0000000
--- a/www-client/epiphany-extensions/epiphany-extensions-3.2.0.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany-extensions/epiphany-extensions-3.0.0-r1.ebuild,v 1.1 2011/08/19 14:55:28 nirbheek Exp $
-
-EAPI="4"
-GCONF_DEBUG="yes"
-GNOME2_LA_PUNT="yes"
-
-inherit gnome2
-
-DESCRIPTION="Extensions for the Epiphany web browser"
-HOMEPAGE="http://www.gnome.org/projects/epiphany/extensions.html"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="dbus examples pcre"
-
-RDEPEND=">=www-client/epiphany-3.2.0
- app-text/opensp
- >=dev-libs/glib-2.26.0:2
- >=dev-libs/libxml2-2.6:2
- >=x11-libs/gtk+-2.90.4:3
- net-libs/webkit-gtk:3
-
- dbus? (
- >=dev-libs/dbus-glib-0.34
- sys-apps/dbus )
- pcre? ( >=dev-libs/libpcre-3.9-r2 )"
-DEPEND="${RDEPEND}
- >=dev-util/intltool-0.40
- >=dev-util/pkgconfig-0.20
- >=app-text/gnome-doc-utils-0.3.2"
-# eautoreconf dependencies:
-# gnome-base/gnome-common
-
-pkg_setup() {
- local extensions=""
- # XXX: Only enable default/useful extensions?
- extensions="actions adblock auto-reload certificates \
- error-viewer extensions-manager-ui gestures html5tube \
- java-console livehttpheaders page-info \
- push-scroller select-stylesheet \
- smart-bookmarks soup-fly tab-states"
- use dbus && extensions="${extensions} rss"
- use pcre && extensions="${extensions} greasemonkey"
- use examples && extensions="${extensions} sample"
-
- G2CONF="${G2CONF}
- --disable-schemas-compile
- --with-extensions=$(echo "${extensions}" | sed -e 's/[[:space:]]\+/,/g')"
- DOCS="AUTHORS ChangeLog HACKING NEWS README"
-}
diff --git a/www-client/epiphany/epiphany-3.2.1.ebuild b/www-client/epiphany/epiphany-3.2.1.ebuild
deleted file mode 100644
index a06f542..0000000
--- a/www-client/epiphany/epiphany-3.2.1.ebuild
+++ /dev/null
@@ -1,83 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/www-client/epiphany/epiphany-2.30.2.ebuild,v 1.1 2010/06/13 21:09:33 pacho Exp $
-
-EAPI="4"
-GCONF_DEBUG="yes"
-
-inherit eutils gnome2
-if [[ ${PV} = 9999 ]]; then
- inherit gnome2-live
-fi
-
-DESCRIPTION="GNOME webbrowser based on Webkit"
-HOMEPAGE="http://projects.gnome.org/epiphany/"
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="avahi doc +introspection +networkmanager +nss test"
-if [[ ${PV} = 9999 ]]; then
- KEYWORDS=""
-else
- KEYWORDS="~alpha ~amd64 ~ia64 ~sparc ~x86"
-fi
-
-# XXX: Should we add seed support? Seed seems to be unmaintained now.
-# Require {glib,gdbus-codegen}-2.30.0 due to GDBus API changes between 2.29.92
-# and 2.30.0
-COMMON_DEPEND=">=dev-libs/glib-2.30.0:2
- >=x11-libs/gtk+-3.0.2:3[introspection?]
- >=dev-libs/libxml2-2.6.12:2
- >=dev-libs/libxslt-1.1.7
- >=app-text/iso-codes-0.35
- >=net-libs/webkit-gtk-1.6.1:3[introspection?]
- >=net-libs/libsoup-gnome-2.33.1:2.4
- >=gnome-base/gnome-keyring-2.26.0
- >=gnome-base/gsettings-desktop-schemas-0.0.1
- >=x11-libs/libnotify-0.5.1
-
- x11-libs/libICE
- x11-libs/libSM
- x11-libs/libX11
-
- app-misc/ca-certificates
- x11-themes/gnome-icon-theme
-
- avahi? ( >=net-dns/avahi-0.6.22 )
- introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
- nss? ( dev-libs/nss )"
-# networkmanager is used purely via dbus
-RDEPEND="${COMMON_DEPEND}
- networkmanager? ( >=net-misc/networkmanager-0.8.997 )"
-DEPEND="${COMMON_DEPEND}
- app-text/gnome-doc-utils
- >=dev-util/gdbus-codegen-2.30.0
- >=dev-util/intltool-0.40
- dev-util/pkgconfig
- sys-devel/gettext
- doc? ( >=dev-util/gtk-doc-1 )"
-
-
-pkg_setup() {
- DOCS="AUTHORS ChangeLog* HACKING MAINTAINERS NEWS README TODO"
- G2CONF="${G2CONF}
- --enable-shared
- --disable-schemas-compile
- --disable-scrollkeeper
- --disable-static
- --with-distributor-name=Gentoo
- --with-ca-file=${EPREFIX}/etc/ssl/certs/ca-certificates.crt
- $(use_enable avahi zeroconf)
- $(use_enable introspection)
- $(use_enable nss)
- $(use_enable test tests)"
- # Upstream no longer makes networkmanager optional, but we still want
- # to make it possible for prefix users to use epiphany
- use networkmanager && CFLAGS="${CFLAGS} -DENABLE_NETWORK_MANAGER"
-}
-
-src_prepare() {
- # Make networkmanager optional for prefix people
- epatch "${FILESDIR}/${PN}-3.2.0-optional-networkmanager.patch"
- gnome2_src_prepare
-}
diff --git a/x11-themes/gnome-backgrounds/gnome-backgrounds-3.2.0.ebuild b/x11-themes/gnome-backgrounds/gnome-backgrounds-3.2.0.ebuild
deleted file mode 100644
index eefe22c..0000000
--- a/x11-themes/gnome-backgrounds/gnome-backgrounds-3.2.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/gnome-backgrounds/gnome-backgrounds-3.0.2.ebuild,v 1.1 2011/06/02 16:57:25 nirbheek Exp $
-
-EAPI="4"
-GCONF_DEBUG="no"
-
-inherit gnome2
-
-DESCRIPTION="A set of backgrounds packaged with the GNOME desktop"
-HOMEPAGE="http://www.gnome.org/"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd"
-IUSE=""
-
-RDEPEND=""
-DEPEND="sys-devel/gettext
- >=dev-util/intltool-0.40.0"
-
-DOCS="AUTHORS ChangeLog NEWS README"
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2011-11-06 13:55 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-06 13:55 [gentoo-commits] proj/gnome:master commit in: x11-themes/gnome-backgrounds/, gnome-extra/mousetweaks/, gnome-extra/gcalctool/, Alexandre Restovtsev
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox