Gentoo Archives: gentoo-commits

From: "Peter Alfredsen (loki_val)" <loki_val@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in eclass: gtk-sharp-module.eclass
Date: Wed, 26 Nov 2008 14:03:07
Message-Id: E1L5Kyv-0004qd-75@stork.gentoo.org
1 loki_val 08/11/26 14:03:05
2
3 Modified: gtk-sharp-module.eclass
4 Log:
5 All of the ebuilds currently using eclass build with -j8.
6
7 Revision Changes Path
8 1.4 eclass/gtk-sharp-module.eclass
9
10 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gtk-sharp-module.eclass?rev=1.4&view=markup
11 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gtk-sharp-module.eclass?rev=1.4&content-type=text/plain
12 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/eclass/gtk-sharp-module.eclass?r1=1.3&r2=1.4
13
14 Index: gtk-sharp-module.eclass
15 ===================================================================
16 RCS file: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-module.eclass,v
17 retrieving revision 1.3
18 retrieving revision 1.4
19 diff -u -r1.3 -r1.4
20 --- gtk-sharp-module.eclass 26 Nov 2008 10:03:42 -0000 1.3
21 +++ gtk-sharp-module.eclass 26 Nov 2008 14:03:05 -0000 1.4
22 @@ -1,6 +1,6 @@
23 # Copyright 1999-2008 Gentoo Foundation
24 # Distributed under the terms of the GNU General Public License v2
25 -# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-module.eclass,v 1.3 2008/11/26 10:03:42 loki_val Exp $
26 +# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-module.eclass,v 1.4 2008/11/26 14:03:05 loki_val Exp $
27
28 # Author : Peter Johanson <latexer@g.o>, butchered by ikelos, then loki_val.
29 # Based off of original work in gst-plugins.eclass by <foser@g.o>
30 @@ -168,12 +168,12 @@
31 gtk-sharp-module_src_compile() {
32
33 cd "${S}"/${GTK_SHARP_MODULE_DIR}
34 - LANG=C emake -j1 || die "emake failed"
35 + LANG=C emake ${OVERRIDEJOBS} || die "emake failed"
36 }
37
38 gtk-sharp-module_src_install() {
39 cd ${GTK_SHARP_MODULE_DIR}
40 - LANG=C emake GACUTIL_FLAGS="/root ${D}/usr/$(get_libdir) /gacdir /usr/$(get_libdir) /package gtk-sharp${GTK_SHARP_SLOT_DEC}" \
41 + LANG=C emake ${OVERRIDEJOBS} GACUTIL_FLAGS="/root ${D}/usr/$(get_libdir) /gacdir /usr/$(get_libdir) /package gtk-sharp${GTK_SHARP_SLOT_DEC}" \
42 DESTDIR="${D}" install || die "emake install failed"
43 }