summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2009-07-04 10:29:33 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2009-07-04 10:29:33 +0000
commit68a8d02b977a937a77d7f1a89f81a6a6ab5393fd (patch)
tree6fb355102e73e6eb1fa7532c81b07ed286156911 /dev-util/mono-debugger
parentAdd missing linguas. (diff)
downloadgentoo-2-68a8d02b977a937a77d7f1a89f81a6a6ab5393fd.tar.gz
gentoo-2-68a8d02b977a937a77d7f1a89f81a6a6ab5393fd.tar.bz2
gentoo-2-68a8d02b977a937a77d7f1a89f81a6a6ab5393fd.zip
Remove readline dependency and avoid building the static libraries since it's only loading them at runtime.
(Portage version: 2.2_rc33/cvs/Linux x86_64)
Diffstat (limited to 'dev-util/mono-debugger')
-rw-r--r--dev-util/mono-debugger/ChangeLog7
-rw-r--r--dev-util/mono-debugger/mono-debugger-2.4.2.ebuild8
2 files changed, 12 insertions, 3 deletions
diff --git a/dev-util/mono-debugger/ChangeLog b/dev-util/mono-debugger/ChangeLog
index 332892b08aa5..bbc4d945b28e 100644
--- a/dev-util/mono-debugger/ChangeLog
+++ b/dev-util/mono-debugger/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-util/mono-debugger
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-debugger/ChangeLog,v 1.31 2009/06/30 06:01:45 loki_val Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-debugger/ChangeLog,v 1.32 2009/07/04 10:29:33 flameeyes Exp $
+
+ 04 Jul 2009; Diego E. Pettenò <flameeyes@gentoo.org>
+ mono-debugger-2.4.2.ebuild:
+ Remove readline dependency and avoid building the static libraries since
+ it's only loading them at runtime.
*mono-debugger-2.4.2 (30 Jun 2009)
diff --git a/dev-util/mono-debugger/mono-debugger-2.4.2.ebuild b/dev-util/mono-debugger/mono-debugger-2.4.2.ebuild
index b2e4ac7a5ac6..c35dc8b1facd 100644
--- a/dev-util/mono-debugger/mono-debugger-2.4.2.ebuild
+++ b/dev-util/mono-debugger/mono-debugger-2.4.2.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-debugger/mono-debugger-2.4.2.ebuild,v 1.1 2009/06/30 06:01:45 loki_val Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/mono-debugger/mono-debugger-2.4.2.ebuild,v 1.2 2009/07/04 10:29:33 flameeyes Exp $
EAPI=2
@@ -15,9 +15,13 @@ KEYWORDS="-* ~x86 ~amd64"
IUSE=""
RDEPEND="!!=dev-lang/mono-2.2
- sys-libs/readline
dev-libs/glib:2"
DEPEND="${RDEPEND}
!dev-lang/mercury"
RESTRICT="test"
+
+src_configure() {
+ go-mono_src_configure \
+ --disable-static
+}