Gentoo Archives: gentoo-commits

From: "Arfrever Frehtes Taifersar Arahesis (arfrever)" <arfrever@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/icu/files: icu-4.6.1-parallel_installation.patch
Date: Wed, 27 Apr 2011 18:49:52
Message-Id: 20110427184931.D43022004B@flycatcher.gentoo.org
1 arfrever 11/04/27 18:49:31
2
3 Added: icu-4.6.1-parallel_installation.patch
4 Log:
5 Fix parallel installation (bug #272328).
6
7 (Portage version: 2.2.0_alpha30_p6/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-libs/icu/files/icu-4.6.1-parallel_installation.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/files/icu-4.6.1-parallel_installation.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/files/icu-4.6.1-parallel_installation.patch?rev=1.1&content-type=text/plain
14
15 Index: icu-4.6.1-parallel_installation.patch
16 ===================================================================
17 https://bugs.gentoo.org/show_bug.cgi?id=272328
18 https://ssl.icu-project.org/trac/ticket/7628
19 https://ssl.icu-project.org/trac/changeset/29657
20
21 --- extra/uconv/Makefile.in
22 +++ extra/uconv/Makefile.in
23 @@ -1,6 +1,6 @@
24 ## ******************************************************************************
25 ## *
26 -## * Copyright (C) 1999-2009, International Business Machines
27 +## * Copyright (C) 1999-2011, International Business Machines
28 ## * Corporation and others. All Rights Reserved.
29 ## *
30 ## *******************************************************************************
31 @@ -147,7 +147,7 @@
32 endif
33
34
35 -package-resfiles: $(RESDIR)/$(RESDIR).lst pkgdata.inc
36 +package-resfiles: $(RESFILES) $(RESDIR)/$(RESDIR).lst pkgdata.inc
37 $(INVOKE) $(PKGDATA_INVOKE_OPTS) $(TOOLBINDIR)/pkgdata -p $(MSGNAME) $(PKGDATA_OPTS) -m $(PKGMODE) -s $(RESDIR) -d $(RESDIR) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
38
39 $(RESDIR)/$(RESDIR).lst: Makefile $(srcdir)/resfiles.mk
40 @@ -159,7 +159,7 @@
41
42 # no install for static mode
43 ifneq ($(UCONVMSG_MODE),static)
44 -install-resfiles: $(RESFILES)
45 +install-resfiles: $(RESFILES) $(RESDIR)/$(RESDIR).lst pkgdata.inc
46 $(MKINSTALLDIRS) $(DESTDIR)$(ICUDATA_DIR)
47 $(INVOKE) $(TOOLBINDIR)/pkgdata -p $(RESDIR) -O pkgdata.inc -m $(PKGMODE) -d $(RESDIR) -I $(INSTALLTO) -T $(RESDIR) $(RESDIR)/$(RESDIR).lst
48 else