Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sci-electronics/ng-spice-rework/files: ng-spice-rework-21-src_makefile.patch ng-spice-rework-18-nostrip.patch ng-spice-rework-21-nostrip.patch ng-spice-rework-numparam.patch ng-spice-rework-15.gcc-3.4.patch ng-spice-rework-pipemode.patch ng-spice-rework-com_let.patch
Date: Thu, 24 Jun 2010 10:41:57
Message-Id: 20100624104153.340B82CF59@corvid.gentoo.org
1 jlec 10/06/24 10:41:53
2
3 Added: ng-spice-rework-21-src_makefile.patch
4 ng-spice-rework-18-nostrip.patch
5 ng-spice-rework-21-nostrip.patch
6 Removed: ng-spice-rework-numparam.patch
7 ng-spice-rework-15.gcc-3.4.patch
8 ng-spice-rework-pipemode.patch
9 ng-spice-rework-com_let.patch
10 Log:
11 Version Bump, #270876; Prevend stripping, #252036, removed old versions
12 (Portage version: 2.2_rc67/cvs/Linux x86_64)
13
14 Revision Changes Path
15 1.1 sci-electronics/ng-spice-rework/files/ng-spice-rework-21-src_makefile.patch
16
17 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ng-spice-rework/files/ng-spice-rework-21-src_makefile.patch?rev=1.1&view=markup
18 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ng-spice-rework/files/ng-spice-rework-21-src_makefile.patch?rev=1.1&content-type=text/plain
19
20 Index: ng-spice-rework-21-src_makefile.patch
21 ===================================================================
22 diff --git a/src/Makefile.am b/src/Makefile.am
23 index f0c4779..4257b5a 100644
24 --- a/src/Makefile.am
25 +++ b/src/Makefile.am
26 @@ -127,6 +127,9 @@ endif
27 winmain.o: winmain.c ../config.h
28 $(COMPILE) -DSIMULATOR -o winmain.o -c $(srcdir)/winmain.c
29
30 +mkdepdir:
31 + test -d $(DEPDIR) || mkdir $(DEPDIR)
32 +
33 spice.lo: main.c ../config.h
34 $(LTCOMPILE) -DSIMULATOR -c -o spice.o $<
35
36 @@ -307,7 +310,7 @@ install-tclspice:
37 $(mkinstalldirs) $(DESTDIR)$(libdir)/spice
38 $(INSTALL_DATA) pkgIndex.tcl $(DESTDIR)$(libdir)/spice
39
40 -tclspice.lo: tclspice.c
41 +tclspice.lo: tclspice.c mkdepdir
42 $(LTCOMPILE) -DTCLSPICE_version="\"$(TCLSPICE_VERSION)\"" -MT tclspice.lo -MD -MP -MF $(DEPDIR)/tclspice.Tpo -c -o tclspice.o $<
43 mv -f $(DEPDIR)/tclspice.Tpo $(DEPDIR)/tclspice.Plo
44
45
46
47
48 1.1 sci-electronics/ng-spice-rework/files/ng-spice-rework-18-nostrip.patch
49
50 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ng-spice-rework/files/ng-spice-rework-18-nostrip.patch?rev=1.1&view=markup
51 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ng-spice-rework/files/ng-spice-rework-18-nostrip.patch?rev=1.1&content-type=text/plain
52
53 Index: ng-spice-rework-18-nostrip.patch
54 ===================================================================
55 diff --git a/configure.in b/configure.in
56 index 270be67..d87472b 100644
57 --- a/configure.in
58 +++ b/configure.in
59 @@ -205,7 +205,7 @@ dnl the above AC_PROG_CC may set CFLAGS to "-O2 -g"
60 if test "$enable_debug" = "no"; then
61 if test "x$GCC" = "xyes"; then
62 AC_MSG_WARN(Removing debugging option!)
63 - CFLAGS="$ext_CFLAGS -O2 -Wall -s"
64 + CFLAGS="$ext_CFLAGS -O2 -Wall"
65 else
66 AC_MSG_WARN(Removing debugging option!)
67 CFLAGS="$ext_CFLAGS -O2"
68 diff --git a/src/xspice/icm/makedefs.in b/src/xspice/icm/makedefs.in
69 index e1b0fa9..b17d0de 100644
70 --- a/src/xspice/icm/makedefs.in
71 +++ b/src/xspice/icm/makedefs.in
72 @@ -37,13 +37,13 @@ endif
73 CMPP = $(TOPDIR)$(top_builddir)/src/xspice/cmpp/cmpp
74
75 # Flags to use when linking shared library
76 -LDFLAGS = -shared
77 +LDFLAGS += -shared
78 ifeq "$(strip $(uname))" "Darwin"
79 - LDFLAGS = -bundle -flat_namespace -undefined suppress
80 + LDFLAGS += -bundle -flat_namespace -undefined suppress
81 endif
82 ifeq "$(strip $(uname))" "SunOS"
83 ifneq "$(CC)" "gcc"
84 - LDFLAGS = -G
85 + LDFLAGS += -G
86 endif
87 endif
88
89
90
91
92 1.1 sci-electronics/ng-spice-rework/files/ng-spice-rework-21-nostrip.patch
93
94 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ng-spice-rework/files/ng-spice-rework-21-nostrip.patch?rev=1.1&view=markup
95 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-electronics/ng-spice-rework/files/ng-spice-rework-21-nostrip.patch?rev=1.1&content-type=text/plain
96
97 Index: ng-spice-rework-21-nostrip.patch
98 ===================================================================
99 diff --git a/configure.in b/configure.in
100 index 63fc1b3..b8e3624 100644
101 --- a/configure.in
102 +++ b/configure.in
103 @@ -210,7 +210,7 @@ dnl the above AC_PROG_CC may set CFLAGS to "-O2 -g"
104 if test "$enable_debug" = "no"; then
105 if test "x$GCC" = "xyes"; then
106 AC_MSG_WARN(Removing debugging option!)
107 - CFLAGS="$ext_CFLAGS -O2 -Wall -s"
108 + CFLAGS="$ext_CFLAGS -O2 -Wall"
109 else
110 AC_MSG_WARN(Removing debugging option!)
111 CFLAGS="$ext_CFLAGS -O2"
112 diff --git a/src/xspice/icm/makedefs.in b/src/xspice/icm/makedefs.in
113 index 5dad7b0..e0b4931 100644
114 --- a/src/xspice/icm/makedefs.in
115 +++ b/src/xspice/icm/makedefs.in
116 @@ -39,9 +39,9 @@ endif
117 CMPP = $(TOPDIR)$(top_builddir)/src/xspice/cmpp/cmpp
118
119 # Flags to use when linking shared library
120 -LDFLAGS = -shared
121 +LDFLAGS += -shared
122 ifeq "$(strip $(uname))" "Darwin"
123 - LDFLAGS = -bundle -flat_namespace -undefined suppress
124 + LDFLAGS += -bundle -flat_namespace -undefined suppress
125 endif
126 ifeq "$(strip $(uname))" "SunOS"
127 ifneq "$(CC)" "gcc"