diff options
author | Kathryn Kulick <gothgirl@gentoo.org> | 2006-10-21 01:42:12 +0000 |
---|---|---|
committer | Kathryn Kulick <gothgirl@gentoo.org> | 2006-10-21 01:42:12 +0000 |
commit | 8d2fab7f21fcc13067618d35d17651037292b6c3 (patch) | |
tree | 66f87d114ce2f8af2b6d9b2cddbac3d3a6169881 /net-im | |
parent | Stable for HPPA (bug #151835). (diff) | |
download | gentoo-2-8d2fab7f21fcc13067618d35d17651037292b6c3.tar.gz gentoo-2-8d2fab7f21fcc13067618d35d17651037292b6c3.tar.bz2 gentoo-2-8d2fab7f21fcc13067618d35d17651037292b6c3.zip |
gadu iuse fixed and temporary fix for mono
(Portage version: 2.1.2_pre2-r9)
Diffstat (limited to 'net-im')
-rw-r--r-- | net-im/gaim/ChangeLog | 5 | ||||
-rw-r--r-- | net-im/gaim/gaim-2.0.0_beta4.ebuild | 11 |
2 files changed, 12 insertions, 4 deletions
diff --git a/net-im/gaim/ChangeLog b/net-im/gaim/ChangeLog index 863cdfcd2e61..c86b1662d671 100644 --- a/net-im/gaim/ChangeLog +++ b/net-im/gaim/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-im/gaim # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/ChangeLog,v 1.416 2006/10/19 22:08:35 gothgirl Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/ChangeLog,v 1.417 2006/10/21 01:42:12 gothgirl Exp $ + + 21 Oct 2006; gothgirl <gothgirl@gentoo.org> gaim-2.0.0_beta4.ebuild: + Gadu iuse fix, and temporary fix for mono use flag *gaim-2.0.0_beta4 (19 Oct 2006) diff --git a/net-im/gaim/gaim-2.0.0_beta4.ebuild b/net-im/gaim/gaim-2.0.0_beta4.ebuild index 85317cd30299..7010ec6f055f 100644 --- a/net-im/gaim/gaim-2.0.0_beta4.ebuild +++ b/net-im/gaim/gaim-2.0.0_beta4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-2.0.0_beta4.ebuild,v 1.1 2006/10/19 22:08:35 gothgirl Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-im/gaim/gaim-2.0.0_beta4.ebuild,v 1.2 2006/10/21 01:42:12 gothgirl Exp $ inherit flag-o-matic eutils toolchain-funcs debug multilib mono autotools perl-app gnome2 @@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/gaim/${MY_PV}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="avahi audiofile bonjour cjk crypt dbus debug doc eds gadu gnutls meanwhile mono nas nls perl silc spell startup-notification tcl tk xscreensaver custom-flags ssl qq msn" +IUSE="avahi audiofile bonjour cjk crypt dbus debug doc eds gadu gnutls meanwhile mono nas nls perl silc spell startup-notification tcl tk xscreensaver custom-flags ssl qq msn gadu" RDEPEND=" audiofile? ( media-libs/libao @@ -214,7 +214,12 @@ src_compile() { "--with-dynamic-prpls=${DYNAMIC_PRPLS}" \ ${myconf} " || die "Configuration failed" - gnome2_src_compile || die "Make failed" + # This is a tempory fix until Makefile is fixed!! + if use mono; then + gnome2_src_compile -j1 || die "Make failed" + else + gnome2_src_compile || die "Make failed" + fi } src_install() { |