diff options
author | Matthieu Sozeau <mattam@gentoo.org> | 2005-07-13 21:34:22 +0000 |
---|---|---|
committer | Matthieu Sozeau <mattam@gentoo.org> | 2005-07-13 21:34:22 +0000 |
commit | e0230df080e7f2b29c597d0ca54cdfe84decc8a1 (patch) | |
tree | dcc81c52d5e02d5ec421b50af10d07939185d253 | |
parent | Version bump, bug #95629. (diff) | |
download | historical-e0230df080e7f2b29c597d0ca54cdfe84decc8a1.tar.gz historical-e0230df080e7f2b29c597d0ca54cdfe84decc8a1.tar.bz2 historical-e0230df080e7f2b29c597d0ca54cdfe84decc8a1.zip |
Fix for bug #98883.
Package-Manager: portage-2.0.51.22-r1
-rw-r--r-- | net-misc/unison/ChangeLog | 7 | ||||
-rw-r--r-- | net-misc/unison/Manifest | 5 | ||||
-rw-r--r-- | net-misc/unison/files/unison-2.12.0-gtk2-bug.patch | 11 | ||||
-rw-r--r-- | net-misc/unison/unison-2.12.0.ebuild | 4 |
4 files changed, 23 insertions, 4 deletions
diff --git a/net-misc/unison/ChangeLog b/net-misc/unison/ChangeLog index 85ac969aff59..1e5ebecb54d3 100644 --- a/net-misc/unison/ChangeLog +++ b/net-misc/unison/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-misc/unison # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.28 2005/07/13 01:39:15 mattam Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/ChangeLog,v 1.29 2005/07/13 21:34:22 mattam Exp $ + + 13 Jul 2005; Matthieu Sozeau <mattam@gentoo.org> + +files/unison-2.12.0-gtk2-bug.patch, unison-2.12.0.ebuild: + Fix for gtk2 bug (#56070 on gnome's bugzilla). Already worked around in 2.13.0. + Fixes bug #98883. 13 Jul 2005; Matthieu Sozeau <mattam@gentoo.org> unison-2.12.0.ebuild, unison-2.13.0.ebuild: diff --git a/net-misc/unison/Manifest b/net-misc/unison/Manifest index 8ee2045b867b..208e31c34ba4 100644 --- a/net-misc/unison/Manifest +++ b/net-misc/unison/Manifest @@ -1,6 +1,7 @@ -MD5 f25c885718cd8d8cdddea5881b8212ad unison-2.12.0.ebuild 1848 +MD5 857e1378e44879086214cb8d79d99052 unison-2.12.0.ebuild 1919 MD5 c0616beadc61fb00cf73a9c540268188 unison-2.13.0.ebuild 1920 -MD5 3bb12d443279cf85c4ba83a1ca01a36f ChangeLog 4175 +MD5 fd77c03119267f1aae585e32034bb5e6 ChangeLog 4390 MD5 8b350f19c06fcabf1053b0421b7c3f5a metadata.xml 155 MD5 f2b7bb2888f634f6b2e887a7f6ceda64 files/digest-unison-2.12.0 204 MD5 76c33afd24bb34b9dbe90989e3235e36 files/digest-unison-2.13.0 204 +MD5 402b704e5c7c71a69fd6400c395834ec files/unison-2.12.0-gtk2-bug.patch 490 diff --git a/net-misc/unison/files/unison-2.12.0-gtk2-bug.patch b/net-misc/unison/files/unison-2.12.0-gtk2-bug.patch new file mode 100644 index 000000000000..637f19adcb28 --- /dev/null +++ b/net-misc/unison/files/unison-2.12.0-gtk2-bug.patch @@ -0,0 +1,11 @@ +--- uigtk2.ml.old 2005-03-12 17:17:59.000000000 +0100 ++++ uigtk2.ml 2005-07-13 19:55:34.856959280 +0200 +@@ -1314,7 +1314,7 @@ + mainWindow#scroll_vertical `JUMP (min p 1.) in + + ignore (mainWindow#connect#unselect_row ~callback: +- (fun ~row ~column ~event -> current := None; updateDetails ())); ++ (fun ~row ~column ~event -> current := None)); + ignore (mainWindow#connect#select_row ~callback: + (fun ~row ~column ~event -> current := Some row; updateDetails ())); + diff --git a/net-misc/unison/unison-2.12.0.ebuild b/net-misc/unison/unison-2.12.0.ebuild index 3bae8c800452..73ac7888b870 100644 --- a/net-misc/unison/unison-2.12.0.ebuild +++ b/net-misc/unison/unison-2.12.0.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.12.0.ebuild,v 1.2 2005/07/13 01:39:15 mattam Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/unison/unison-2.12.0.ebuild,v 1.3 2005/07/13 21:34:22 mattam Exp $ inherit eutils @@ -28,6 +28,8 @@ src_unpack() { # Fix for coreutils change of tail syntax cd ${S} sed -i -e 's/tail -1/tail -n 1/' Makefile.OCaml + # Fix for bad button behavior + epatch ${FILESDIR}/${P}-gtk2-bug.patch } src_compile() { |