summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Mende <angelos@gentoo.org>2011-04-30 15:42:10 +0000
committerChristoph Mende <angelos@gentoo.org>2011-04-30 15:42:10 +0000
commitb6f2066a7a8516eb596597bf5e2d803a50d5bdc9 (patch)
treefe75a1b31f321ff7b1d4d4d4a5ca64aa7a699b9d /gnome-extra/docky
parentRevision bump to fix few bugs reported on bugzilla. Wrong libgcrypt dependenc... (diff)
downloadgentoo-2-b6f2066a7a8516eb596597bf5e2d803a50d5bdc9.tar.gz
gentoo-2-b6f2066a7a8516eb596597bf5e2d803a50d5bdc9.tar.bz2
gentoo-2-b6f2066a7a8516eb596597bf5e2d803a50d5bdc9.zip
Remove old
(Portage version: 2.2.0_alpha30/cvs/Linux x86_64)
Diffstat (limited to 'gnome-extra/docky')
-rw-r--r--gnome-extra/docky/ChangeLog6
-rw-r--r--gnome-extra/docky/docky-2.1.1.ebuild45
-rw-r--r--gnome-extra/docky/files/docky-2.1.1-mono-2.10.patch139
3 files changed, 5 insertions, 185 deletions
diff --git a/gnome-extra/docky/ChangeLog b/gnome-extra/docky/ChangeLog
index 70409a3e42a9..a921e8f37fd2 100644
--- a/gnome-extra/docky/ChangeLog
+++ b/gnome-extra/docky/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for gnome-extra/docky
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/gnome-extra/docky/ChangeLog,v 1.2 2011/04/07 15:40:31 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/gnome-extra/docky/ChangeLog,v 1.3 2011/04/30 15:42:10 angelos Exp $
+
+ 30 Apr 2011; Christoph Mende <angelos@gentoo.org> -docky-2.1.1.ebuild,
+ -files/docky-2.1.1-mono-2.10.patch:
+ Remove old
*docky-2.1.2 (07 Apr 2011)
diff --git a/gnome-extra/docky/docky-2.1.1.ebuild b/gnome-extra/docky/docky-2.1.1.ebuild
deleted file mode 100644
index 079db713d071..000000000000
--- a/gnome-extra/docky/docky-2.1.1.ebuild
+++ /dev/null
@@ -1,45 +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/docky/docky-2.1.1.ebuild,v 1.1 2011/03/13 17:28:56 angelos Exp $
-
-EAPI=3
-inherit eutils gnome2 mono
-
-DESCRIPTION="Elegant, powerful, clean dock"
-HOMEPAGE="https://wiki.go-docky.com"
-SRC_URI="http://launchpad.net/${PN}/2.1/${PV}/+download/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug nls"
-
-RDEPEND="dev-dotnet/dbus-sharp
- dev-dotnet/dbus-sharp-glib
- dev-dotnet/gconf-sharp
- >=dev-dotnet/gio-sharp-0.2-r1
- dev-dotnet/glib-sharp
- dev-dotnet/gnome-desktop-sharp
- dev-dotnet/gnome-keyring-sharp
- dev-dotnet/gtk-sharp
- dev-dotnet/mono-addins
- dev-dotnet/notify-sharp
- dev-dotnet/rsvg-sharp
- dev-dotnet/wnck-sharp"
-
-DEPEND="${RDEPEND}
- dev-util/intltool
- dev-util/pkgconfig"
-
-pkg_setup() {
- G2CONF="${G2CONF}
- --disable-dependency-tracking
- --enable-release
- $(use_enable nls)"
-
- DOCS="AUTHORS NEWS"
-}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-mono-2.10.patch
-}
diff --git a/gnome-extra/docky/files/docky-2.1.1-mono-2.10.patch b/gnome-extra/docky/files/docky-2.1.1-mono-2.10.patch
deleted file mode 100644
index 74619e5f13a8..000000000000
--- a/gnome-extra/docky/files/docky-2.1.1-mono-2.10.patch
+++ /dev/null
@@ -1,139 +0,0 @@
-=== modified file 'Docky.CairoHelper/Docky.CairoHelper/DockySurface.cs'
---- Docky.CairoHelper/Docky.CairoHelper/DockySurface.cs 2010-12-29 15:35:31 +0000
-+++ Docky.CairoHelper/Docky.CairoHelper/DockySurface.cs 2011-03-13 17:16:18 +0000
-@@ -150,7 +150,7 @@
- {
- DockySurface result = new DockySurface (area.Width, area.Height, this);
-
-- Internal.Show (result.Context, 0 - area.X, 0 - area.Y);
-+ Internal.Show (result.Context, -area.X, -area.Y);
-
- return result;
- }
-
-=== modified file 'Docky.Items/Docky.Painters/PagingDockPainter.cs'
---- Docky.Items/Docky.Painters/PagingDockPainter.cs 2011-01-26 04:43:08 +0000
-+++ Docky.Items/Docky.Painters/PagingDockPainter.cs 2011-03-13 17:16:18 +0000
-@@ -117,7 +117,7 @@
- ShowBuffer (surface, LastPage, offset);
- } else {
- ShowBuffer (surface, Page, Allocation.Width - offset);
-- ShowBuffer (surface, LastPage, 0 - offset);
-+ ShowBuffer (surface, LastPage, -offset);
- }
-
- // fade out the edges during a slide
-
-=== modified file 'Docky/Docky/CairoHelper/DockySurface_Extensions.cs'
---- Docky/Docky/CairoHelper/DockySurface_Extensions.cs 2010-12-29 08:12:28 +0000
-+++ Docky/Docky/CairoHelper/DockySurface_Extensions.cs 2011-03-13 17:16:18 +0000
-@@ -44,15 +44,15 @@
- double cos, sin;
- cos = Math.Cos (rotation);
- sin = Math.Sin (rotation);
-- Matrix m = new Matrix (cos, sin, 0 - sin, cos, point.X, point.Y);
-+ Matrix m = new Matrix (cos, sin, -sin, cos, point.X, point.Y);
- cr.Transform (m);
-
- if (zoom != 1)
- cr.Scale (zoom, zoom);
-
- cr.SetSource (self.Internal,
-- 0 - self.Width / 2,
-- 0 - self.Height / 2);
-+ -self.Width / 2,
-+ -self.Height / 2);
-
- cr.PaintWithAlpha (opacity);
-
-@@ -85,7 +85,7 @@
- double cos, sin;
- cos = Math.Cos (rotation);
- sin = Math.Sin (rotation);
-- Matrix m = new Matrix (cos, sin, 0 - sin, cos, point.X, point.Y);
-+ Matrix m = new Matrix (cos, sin, -sin, cos, point.X, point.Y);
- cr.Transform (m);
-
- if (zoom != 1)
-@@ -97,8 +97,8 @@
- cr.Scale (1, -1);
-
- cr.SetSource (self.Internal,
-- 0 - self.Width / 2,
-- 0 - self.Height / 2);
-+ -self.Width / 2,
-+ -self.Height / 2);
-
- cr.PaintWithAlpha (opacity * .3);
-
-
-=== modified file 'Docky/Docky/Interface/DockWindow.cs'
---- Docky/Docky/Interface/DockWindow.cs 2011-03-03 08:59:59 +0000
-+++ Docky/Docky/Interface/DockWindow.cs 2011-03-13 17:16:18 +0000
-@@ -2749,10 +2749,10 @@
- } else {
- switch (Position) {
- case DockPosition.Top:
-- cr.SetSource (main_buffer.Internal, 0, 0 - HideOffset * ZoomedDockHeight);
-+ cr.SetSource (main_buffer.Internal, 0, -HideOffset * ZoomedDockHeight);
- break;
- case DockPosition.Left:
-- cr.SetSource (main_buffer.Internal, 0 - HideOffset * ZoomedDockHeight, 0);
-+ cr.SetSource (main_buffer.Internal, -HideOffset * ZoomedDockHeight, 0);
- break;
- case DockPosition.Right:
- cr.SetSource (main_buffer.Internal, HideOffset * ZoomedDockHeight, 0);
-
-=== modified file 'Docky/Docky/Menus/DockMenu.cs'
---- Docky/Docky/Menus/DockMenu.cs 2010-10-15 15:32:36 +0000
-+++ Docky/Docky/Menus/DockMenu.cs 2011-03-13 17:16:18 +0000
-@@ -543,15 +543,15 @@
- switch (Orientation) {
- case DockPosition.Top:
- cr.Scale (1, -1);
-- cr.Translate (0, 0 - background_buffer.Height);
-+ cr.Translate (0, -background_buffer.Height);
- break;
- case DockPosition.Left:
- cr.Rotate (Math.PI * .5);
-- cr.Translate (0, 0 - background_buffer.Height);
-+ cr.Translate (0, -background_buffer.Height);
- break;
- case DockPosition.Right:
- cr.Rotate (Math.PI * -0.5);
-- cr.Translate (0 - background_buffer.Width, 0);
-+ cr.Translate (-background_buffer.Width, 0);
- break;
- }
-
-
-=== modified file 'StandardPlugins/Clock/src/ClockDockItem.cs'
---- StandardPlugins/Clock/src/ClockDockItem.cs 2010-11-21 22:19:54 +0000
-+++ StandardPlugins/Clock/src/ClockDockItem.cs 2011-03-13 17:16:18 +0000
-@@ -388,20 +388,20 @@
- double minuteRotation = 2 * Math.PI * (DateTime.Now.Minute / 60.0) + Math.PI;
- cr.Rotate (minuteRotation);
- cr.MoveTo (0, radius - radius * .35);
-- cr.LineTo (0, 0 - radius * .15);
-+ cr.LineTo (0, -radius * .15);
- cr.Stroke ();
-- cr.Rotate (0 - minuteRotation);
-+ cr.Rotate (-minuteRotation);
-
- cr.Color = new Cairo.Color (0, 0, 0);
- double hourRotation = 2 * Math.PI * (DateTime.Now.Hour / (ShowMilitary ? 24.0 : 12.0)) +
- Math.PI + (Math.PI / (ShowMilitary ? 12.0 : 6.0)) * DateTime.Now.Minute / 60.0;
- cr.Rotate (hourRotation);
- cr.MoveTo (0, radius - radius * .5);
-- cr.LineTo (0, 0 - radius * .15);
-+ cr.LineTo (0, -radius * .15);
- cr.Stroke ();
-- cr.Rotate (0 - hourRotation);
-+ cr.Rotate (-hourRotation);
-
-- cr.Translate (0 - center, 0 - center);
-+ cr.Translate (-center, -center);
-
- RenderFileOntoContext (cr, System.IO.Path.Combine (ThemePath, "clock-glass.svg"), radius * 2);
- RenderFileOntoContext (cr, System.IO.Path.Combine (ThemePath, "clock-frame.svg"), radius * 2);
-