Gentoo Archives: gentoo-commits

From: "Saleem Abdulrasool (compnerd)" <compnerd@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-util/monodevelop/files: monodevelop-0.19-parallel-build.patch
Date: Mon, 03 Mar 2008 06:04:19
Message-Id: E1JW3mZ-00016w-VR@stork.gentoo.org
1 compnerd 08/03/03 06:04:15
2
3 Added: monodevelop-0.19-parallel-build.patch
4 Log:
5 die parallel builds die! add a nasty hack to make it sorta kinda but not really work
6 (Portage version: 2.1.4.4)
7
8 Revision Changes Path
9 1.1 dev-util/monodevelop/files/monodevelop-0.19-parallel-build.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop/files/monodevelop-0.19-parallel-build.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-util/monodevelop/files/monodevelop-0.19-parallel-build.patch?rev=1.1&content-type=text/plain
13
14 Index: monodevelop-0.19-parallel-build.patch
15 ===================================================================
16 --- src/addins/MonoDevelop.GtkCore/Makefile.am 2008-03-02 19:51:56.000000000 -0800
17 +++ src/addins/MonoDevelop.GtkCore/Makefile.am 2008-03-02 19:52:17.000000000 -0800
18 @@ -98,6 +98,9 @@
19 $(CSC) $(CSC_FLAGS) -debug -out:$@ -target:library \
20 $(build_resources:%=/resource:%) $(build_sources) $(REFS)
21
22 +$(ASSEMBLY).mdb: $(ASSEMBLY)
23 + true
24 +
25 if HAVE_GNOME_SHARP
26 assemblydir = $(MD_ADDIN_DIR)/MonoDevelop.GtkCore
27 assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).mdb
28 --- src/addins/MonoDevelop.WebReferences/Makefile.am 2008-03-02 19:50:26.000000000 -0800
29 +++ src/addins/MonoDevelop.WebReferences/Makefile.am 2008-03-02 19:51:33.000000000 -0800
30 @@ -56,6 +56,9 @@
31 $(CSC) $(CSC_FLAGS) -debug -out:$@ -target:library \
32 $(build_resources:%=/resource:%) $(build_sources) $(REFS)
33
34 +$(ASSEMBLY).mdb: $(ASSEMBLY)
35 + true
36 +
37 assemblydir = $(MD_ADDIN_DIR)/MonoDevelop.WebReferences
38 assembly_DATA = $(ASSEMBLY) $(ASSEMBLY).mdb
39
40 --- src/addins/MonoDevelop.GtkCore/Makefile.am.orig 2008-03-02 21:16:08.000000000 -0800
41 +++ src/addins/MonoDevelop.GtkCore/Makefile.am 2008-03-02 21:16:49.000000000 -0800
42 @@ -84,7 +84,9 @@
43 svn cp -m "Update Stetic sources" svn+ssh://mono-cvs.ximian.com/source/trunk/stetic svn+ssh://mono-cvs.ximian.com/source/trunk/monodevelop/main/src/addins/MonoDevelop.GtkCore/lib/stetic
44
45 if HAVE_GNOME_SHARP
46 -all: $(ASSEMBLY)
47 +all: stetic_dlls $(ASSEMBLY)
48 +stetic_dlls:
49 + cd lib ; make -f Makefile ; cd ..
50 else
51 all:
52 endif
53
54
55
56 --
57 gentoo-commits@l.g.o mailing list