summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrice Clement <monsieurp@gentoo.org>2015-09-28 06:49:32 +0000
committerPatrice Clement <monsieurp@gentoo.org>2015-09-28 06:49:58 +0000
commit848a0133f3ca6885482641c6c40238de6a78f6bf (patch)
tree24d98e5f24330bba8cd77649e07c4b7add9aed6b
parentapp-misc/fslurp: Clean up old. (diff)
downloadgentoo-848a0133f3ca6885482641c6c40238de6a78f6bf.tar.gz
gentoo-848a0133f3ca6885482641c6c40238de6a78f6bf.tar.bz2
gentoo-848a0133f3ca6885482641c6c40238de6a78f6bf.zip
app-misc/fslurp: Clean up old.
Package-Manager: portage-2.2.18 Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
-rw-r--r--app-misc/fslurp/files/fslurp-0.9-makefile.patch19
-rw-r--r--app-misc/fslurp/files/fslurp-2.1.2-makefile.patch41
2 files changed, 0 insertions, 60 deletions
diff --git a/app-misc/fslurp/files/fslurp-0.9-makefile.patch b/app-misc/fslurp/files/fslurp-0.9-makefile.patch
deleted file mode 100644
index 5c2eea232082..000000000000
--- a/app-misc/fslurp/files/fslurp-0.9-makefile.patch
+++ /dev/null
@@ -1,19 +0,0 @@
---- fslurp-0.9/makefile
-+++ fslurp-0.9/makefile
-@@ -6,14 +6,14 @@
-
- INCLUDES = fslurp.h fronius.h externs.h
-
--CFLAGS = -Wall
-+CFLAGS += -Wall
-
- LINKFLAGS = -lm
-
- VERSION := fslurp-$(shell tail -1 version)
-
- fslurp: $(SOURCE) $(INCLUDES)
-- gcc $(CFLAGS) -o fslurp $(SOURCE) $(LINKFLAGS)
-+ $(CC) $(CFLAGS) $(LDFLAGS) -o fslurp $(SOURCE) $(LINKFLAGS)
-
- test: fslurp
- ./fslurp
diff --git a/app-misc/fslurp/files/fslurp-2.1.2-makefile.patch b/app-misc/fslurp/files/fslurp-2.1.2-makefile.patch
deleted file mode 100644
index 487bb1fc0e6a..000000000000
--- a/app-misc/fslurp/files/fslurp-2.1.2-makefile.patch
+++ /dev/null
@@ -1,41 +0,0 @@
---- fslurp-2.1.2/Makefile
-+++ fslurp-2.1.2/Makefile
-@@ -46,31 +46,31 @@
- SIMINCLUDES = simulator.h
-
- #DEBUGFLAGS = -g
--CFLAGS = -c -Wall $(DEBUGFLAGS)
-+CFLAGS += -c -Wall $(DEBUGFLAGS)
-
--LDFLAGS = -lm
-+LIBS = -lm
-
- VERSION := fslurp-$(shell tail -1 version)
-
- all: $(TARGETS)
-
- fslurp: $(FSLURP_OBJS)
-- $(CC) $(LDFLAGS) $^ -o $@
-+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
-
- simSolarNet2i1s: \
- $(SIMSOLARNET2I1S_OBJS)
-- $(CC) $(LDFLAGS) $^ -o $@
-+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
-
- simSolarNet1i0s: \
- $(SIMSOLARNET1I0S_OBJS)
-- $(CC) $(LDFLAGS) $^ -o $@
-+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
-
- simSolarNet0i0s: \
- $(SIMSOLARNET0I0S_OBJS)
-- $(CC) $(LDFLAGS) $^ -o $@
-+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
-
- simIFCEasy: $(SIMIFCEASY_OBJS)
-- $(CC) $(LDFLAGS) $^ -o $@
-+ $(CC) $(LDFLAGS) $^ -o $@ $(LIBS)
-
- test: $(TARGETS) clean
- ./testcase.sh