diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2009-08-23 00:14:31 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2009-08-23 00:14:31 +0000 |
commit | 360f718d026ba827bb98323336de296fea7efc1b (patch) | |
tree | 112c00aa1b05da5fc8f5cf8e9833aee2d95f67ac /eclass | |
parent | Use shared libmilter library (#245950). (diff) | |
download | gentoo-2-360f718d026ba827bb98323336de296fea7efc1b.tar.gz gentoo-2-360f718d026ba827bb98323336de296fea7efc1b.tar.bz2 gentoo-2-360f718d026ba827bb98323336de296fea7efc1b.zip |
The gnome-desktop-sharp assembly is currently locked to libgnome-desktop.so.11. Since it seems Gnome upstream will not make ABI-incompatible changes for now, we can relax dependencies. Solves bug 279072.
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/gtk-sharp-module.eclass | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/eclass/gtk-sharp-module.eclass b/eclass/gtk-sharp-module.eclass index f3c126622b88..ead9ffa4d304 100644 --- a/eclass/gtk-sharp-module.eclass +++ b/eclass/gtk-sharp-module.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-module.eclass,v 1.24 2009/05/03 20:03:10 loki_val Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-module.eclass,v 1.25 2009/08/23 00:14:31 loki_val Exp $ # @ECLASS: gtk-sharp-module.eclass # @MAINTAINER: @@ -203,9 +203,11 @@ case ${PF} in ;; #gnome-desktop-sharp tarball gnome-desktop-sharp-*) - # NOTE: This is REQUIRED to be locked to PV_MAJOR - # libgnome-desktop-2.so.INTEGER is hardcoded in gnomedesktop-sharp.dll.config - add_depend "=gnome-base/gnome-desktop-${PV_MAJOR}*" + # NOTE: libgnome-desktop-2.so has been known to make binary- + # incompatible changes, requiring .so bumps. gnome-desktop-sharp + # is locked to a specific .so.n version, so strict dependencies + # may be required in the future (as it has in the past). + add_depend ">=gnome-base/gnome-desktop-${PV_MAJOR}" ;; gnome-panel-sharp-*) add_depend ">=gnome-base/gnome-panel-${PV_MAJOR}" |