Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/fslurp/files/
Date: Mon, 28 Sep 2015 06:51:31
Message-Id: 1443422998.848a0133f3ca6885482641c6c40238de6a78f6bf.monsieurp@gentoo
1 commit: 848a0133f3ca6885482641c6c40238de6a78f6bf
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Mon Sep 28 06:49:32 2015 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Mon Sep 28 06:49:58 2015 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=848a0133
7
8 app-misc/fslurp: Clean up old.
9
10 Package-Manager: portage-2.2.18
11 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
12
13 app-misc/fslurp/files/fslurp-0.9-makefile.patch | 19 -----------
14 app-misc/fslurp/files/fslurp-2.1.2-makefile.patch | 41 -----------------------
15 2 files changed, 60 deletions(-)
16
17 diff --git a/app-misc/fslurp/files/fslurp-0.9-makefile.patch b/app-misc/fslurp/files/fslurp-0.9-makefile.patch
18 deleted file mode 100644
19 index 5c2eea2..0000000
20 --- a/app-misc/fslurp/files/fslurp-0.9-makefile.patch
21 +++ /dev/null
22 @@ -1,19 +0,0 @@
23 ---- fslurp-0.9/makefile
24 -+++ fslurp-0.9/makefile
25 -@@ -6,14 +6,14 @@
26 -
27 - INCLUDES = fslurp.h fronius.h externs.h
28 -
29 --CFLAGS = -Wall
30 -+CFLAGS += -Wall
31 -
32 - LINKFLAGS = -lm
33 -
34 - VERSION := fslurp-$(shell tail -1 version)
35 -
36 - fslurp: $(SOURCE) $(INCLUDES)
37 -- gcc $(CFLAGS) -o fslurp $(SOURCE) $(LINKFLAGS)
38 -+ $(CC) $(CFLAGS) $(LDFLAGS) -o fslurp $(SOURCE) $(LINKFLAGS)
39 -
40 - test: fslurp
41 - ./fslurp
42
43 diff --git a/app-misc/fslurp/files/fslurp-2.1.2-makefile.patch b/app-misc/fslurp/files/fslurp-2.1.2-makefile.patch
44 deleted file mode 100644
45 index 487bb1f..0000000
46 --- a/app-misc/fslurp/files/fslurp-2.1.2-makefile.patch
47 +++ /dev/null
48 @@ -1,41 +0,0 @@
49 ---- fslurp-2.1.2/Makefile
50 -+++ fslurp-2.1.2/Makefile
51 -@@ -46,31 +46,31 @@
52 - SIMINCLUDES = simulator.h
53 -
54 - #DEBUGFLAGS = -g
55 --CFLAGS = -c -Wall $(DEBUGFLAGS)
56 -+CFLAGS += -c -Wall $(DEBUGFLAGS)
57 -
58 --LDFLAGS = -lm
59 -+LIBS = -lm
60 -
61 - VERSION := fslurp-$(shell tail -1 version)
62 -
63 - all: $(TARGETS)
64 -
65 - fslurp: $(FSLURP_OBJS)
66 -- $(CC) $(LDFLAGS) $^ -o $@
67 -+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
68 -
69 - simSolarNet2i1s: \
70 - $(SIMSOLARNET2I1S_OBJS)
71 -- $(CC) $(LDFLAGS) $^ -o $@
72 -+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
73 -
74 - simSolarNet1i0s: \
75 - $(SIMSOLARNET1I0S_OBJS)
76 -- $(CC) $(LDFLAGS) $^ -o $@
77 -+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
78 -
79 - simSolarNet0i0s: \
80 - $(SIMSOLARNET0I0S_OBJS)
81 -- $(CC) $(LDFLAGS) $^ -o $@
82 -+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
83 -
84 - simIFCEasy: $(SIMIFCEASY_OBJS)
85 -- $(CC) $(LDFLAGS) $^ -o $@
86 -+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
87 -
88 - test: $(TARGETS) clean
89 - ./testcase.sh