diff options
author | Peter Alfredsen <loki_val@gentoo.org> | 2008-11-25 22:18:28 +0000 |
---|---|---|
committer | Peter Alfredsen <loki_val@gentoo.org> | 2008-11-25 22:18:28 +0000 |
commit | a2fc69fce92cce79cc3f2f1eb69d5ed8e87da443 (patch) | |
tree | e849cc04e54d32a9510dc07cd666354a00cebd29 | |
parent | Bumped to 2.6.5 for yet another security issue, see http://wordpress.org/deve... (diff) | |
download | gentoo-2-a2fc69fce92cce79cc3f2f1eb69d5ed8e87da443.tar.gz gentoo-2-a2fc69fce92cce79cc3f2f1eb69d5ed8e87da443.tar.bz2 gentoo-2-a2fc69fce92cce79cc3f2f1eb69d5ed8e87da443.zip |
Update ebuild for gtk-sharp-2.12*
(Portage version: 2.2_rc16/cvs/Linux 2.6.28-rc4 x86_64)
-rw-r--r-- | dev-dotnet/monouml/ChangeLog | 5 | ||||
-rw-r--r-- | dev-dotnet/monouml/monouml-0.1.ebuild | 22 |
2 files changed, 19 insertions, 8 deletions
diff --git a/dev-dotnet/monouml/ChangeLog b/dev-dotnet/monouml/ChangeLog index 5a8ecfe61766..a3c0a861b62d 100644 --- a/dev-dotnet/monouml/ChangeLog +++ b/dev-dotnet/monouml/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-dotnet/monouml # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/monouml/ChangeLog,v 1.6 2008/05/30 22:45:28 jurek Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/monouml/ChangeLog,v 1.7 2008/11/25 22:18:28 loki_val Exp $ + + 22 Nov 2008; Peter Alfredsen <loki_val@gentoo.org> monouml-0.1.ebuild: + Update ebuild for gtk-sharp-2.12* 30 May 2008; Jurek Bartuszek <jurek@gentoo.org> monouml-0.1.ebuild: Added dev-util/pkgconfig dependency (bug #206118) diff --git a/dev-dotnet/monouml/monouml-0.1.ebuild b/dev-dotnet/monouml/monouml-0.1.ebuild index 65d1324dbf0c..772bcd311398 100644 --- a/dev-dotnet/monouml/monouml-0.1.ebuild +++ b/dev-dotnet/monouml/monouml-0.1.ebuild @@ -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/dev-dotnet/monouml/monouml-0.1.ebuild,v 1.6 2008/05/30 22:45:28 jurek Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/monouml/monouml-0.1.ebuild,v 1.7 2008/11/25 22:18:28 loki_val Exp $ inherit mono eutils @@ -15,16 +15,24 @@ SRC_URI="http://forge.novell.com/modules/xfcontent/private.php/${PN}/MonoUML/${M LICENSE="GPL-2" IUSE="" -DEPEND=">=dev-lang/mono-1.1.4 - >=dev-dotnet/gtk-sharp-1.9.2 - >=dev-dotnet/gnome-sharp-1.9.2 - >=dev-dotnet/glade-sharp-1.9.2 - app-arch/unzip - dev-util/pkgconfig" +RDEPEND=">=dev-lang/mono-1.1.4 + >=dev-dotnet/gtk-sharp-1.9.2 + >=dev-dotnet/gnome-sharp-1.9.2 + || ( >=dev-dotnet/gtk-sharp-2.12.6 >=dev-dotnet/glade-sharp-1.9.2 )" +DEPEND="${RDEPEND} + app-arch/unzip + dev-util/pkgconfig" KEYWORDS="amd64 x86" SLOT="0" +pkg_setup() { + if has_version '>=dev-dotnet/gtk-sharp-2.12.6' + then + built_with_use --missing false dev-dotnet/gtk-sharp glade || die "dev-dotnet/gtk-sharp must be built with glade support" + fi +} + src_unpack() { unpack ${A} cd "${S}" |