Gentoo Archives: gentoo-commits

From: "Joerg Bornkessel (hd_brummy)" <hd_brummy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/vdr-cinebars/files: vdr-cinebars-0.0.5_makefile.diff
Date: Sat, 30 Jun 2012 16:37:02
Message-Id: 20120630163651.A6C0D2004C@flycatcher.gentoo.org
1 hd_brummy 12/06/30 16:36:51
2
3 Modified: vdr-cinebars-0.0.5_makefile.diff
4 Log:
5 fixed patch failure, bug 423451; vdr-plugin-2.eclass
6
7 (Portage version: 2.1.10.11/cvs/Linux i686)
8
9 Revision Changes Path
10 1.2 media-plugins/vdr-cinebars/files/vdr-cinebars-0.0.5_makefile.diff
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-cinebars/files/vdr-cinebars-0.0.5_makefile.diff?rev=1.2&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-cinebars/files/vdr-cinebars-0.0.5_makefile.diff?rev=1.2&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-cinebars/files/vdr-cinebars-0.0.5_makefile.diff?r1=1.1&r2=1.2
15
16 Index: vdr-cinebars-0.0.5_makefile.diff
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-plugins/vdr-cinebars/files/vdr-cinebars-0.0.5_makefile.diff,v
19 retrieving revision 1.1
20 retrieving revision 1.2
21 diff -u -r1.1 -r1.2
22 --- vdr-cinebars-0.0.5_makefile.diff 7 Feb 2012 22:09:17 -0000 1.1
23 +++ vdr-cinebars-0.0.5_makefile.diff 30 Jun 2012 16:36:51 -0000 1.2
24 @@ -1,25 +1,21 @@
25 -Joerg Bornkessel <hd_brummy@g.o> 2012.01.07
26 -Fix Makefile for compile on multicore CPU
27 -
28 diff -Naur cinebars-0.0.5.orig/Makefile cinebars-0.0.5/Makefile
29 ---- cinebars-0.0.5.orig/Makefile 2012-02-07 23:19:00.000000000 +0100
30 -+++ cinebars-0.0.5/Makefile 2012-02-07 23:19:31.000000000 +0100
31 +--- cinebars-0.0.5.orig/Makefile 2012-06-30 18:27:52.000000000 +0200
32 ++++ cinebars-0.0.5/Makefile 2012-06-30 18:29:25.000000000 +0200
33 @@ -49,13 +49,13 @@
34
35 ### The object files (add further files here):
36 OBJS = $(PLUGIN).o
37 -ifneq ($(VERS157),1)
38 -+#ifneq ($(VERS157),1)
39 - OBJS += i18n.o
40 +-OBJS += i18n.o
41 -endif
42 ++#ifneq ($(VERS157),1)
43 ++#OBJS += i18n.o
44 +#endif
45
46 ### The main target:
47 --all: libvdr-$(PLUGIN).so
48 -- if [ $(VERS157) = 1 ]; then make i18n; fi
49 -+all: libvdr-$(PLUGIN).so i18n
50 -+# if [ $(VERS157) = 1 ]; then make i18n; fi
51 + all: libvdr-$(PLUGIN).so
52 +- if [ $(VERS157) = 1 ]; then make i18n; fi
53 ++# if [ $(VERS157) = 1 ]; then make i18n; fi
54
55 ### Implicit rules:
56 %.o: %.c
57 -