summaryrefslogtreecommitdiff
path: root/package/ipcad/patches/patch-Makefile
blob: 8ced9f13a93d4e850a9a6ab366c8cff8a5904ef7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
--- ipcad-3.7.3.orig/Makefile	2007-04-22 10:08:45.000000000 +0200
+++ ipcad-3.7.3/Makefile	2014-03-23 17:59:56.000000000 +0100
@@ -1,4 +1,163 @@
-all: bootstrap
 
-bootstrap:
-	./configure && make
+prefix= /usr
+exec_prefix= ${prefix}
+bindir= /usr/bin
+sysconfdir= /etc
+datadir= /usr/share
+
+CC= /home/wbx/hudson/toolchain_x86_64-linux-gnu/usr/bin/arm-openadk-linux-muslgnueabihf-gcc
+LDFLAGS= -L/home/wbx/hudson/target_arm_musl_eabihf/lib -L/home/wbx/hudson/target_arm_musl_eabihf/usr/lib -Wl,-O1 -Wl,-rpath -Wl,/usr/lib -Wl,-rpath-link -Wl,/home/wbx/hudson/target_arm_musl_eabihf/usr/lib -Wl,-z,relro,-z,now
+LIBS= -lpcap 
+CFLAGS= -march=armv6 -mtune=arm1176jzf-s -mfpu=vfp -mfloat-abi=hard -fwrapv -fno-ident -fhonour-copts -fomit-frame-pointer -Os -pipe -fno-unwind-tables -fno-asynchronous-unwind-tables -g3 -DHAVE_CONFIG_H -W -Wall
+CPPFLAGS=-DIPCAD_VERSION=\"3.7.3\"
+CPPFLAGS+=-DCONFIG_FILE=\"${sysconfdir}/ipcad.conf\"
+CPPFLAGS+=-DHAVE_CONFIG_H -D_REENTRANT -D_THREAD_SAFE
+CPPFLAGS+=-DPSRC_pcap -DIFST_linux
+
+YACC=bison -y
+LEX=flex
+INSTALL=/usr/bin/install -c
+
+MANROOT=/usr/share/man/man
+MAN8=${MANROOT}8
+MAN5=${MANROOT}5
+
+NROFF= groff -Tascii -mandoc
+
+PACKAGE=ipcad
+TARGETS=ipcad
+VERSION=3.7.3
+
+IPCAD_OBJS= main.o process.o pps.o disp.o storage.o usage.o cfgy.o cfglex.o cfgread.o cfgvar.o dump.o import.o nflow.o cshelly.o cslex.o csparse.o service.o rw.o servers.o opt.o pidfile.o sf_lite.o
+IPCAD_OBJS+= ifst_linux.o		# Interface statistics
+IPCAD_OBJS+= ifs_list.o			# Interface statistics
+IPCAD_OBJS+= loop-pcap.o		# Method of capturing
+IPCAD_OBJS+= loop-file.o		# Method of capturing
+IPCAD_OBJS+= loop-divert.o		# Method of capturing
+IPCAD_OBJS+= loop-dynamic.o		# Method of capturing
+IPCAD_OBJS+= loop-ulog.o loop-ipq.o	# Methods of capturing
+IPCAD_OBJS+= psrc.o psrc-pcap.o	# Initialize capturers
+IPCAD_OBJS+= psrc-ipq.o psrc-ulog.o	# Initialize capturers
+IPCAD_OBJS+= psrc-file.o		# Initialize capturers
+IPCAD_OBJS+= psrc-dynamic.o		# Initialize capturers
+IPCAD_OBJS+= psrc-divert.o		# Initialize capturers
+IPCAD_OBJS+= wrap_oclose.o		# Special file descriptors cache
+IPCAD_OBJS+= genhash.o			# General hashing
+
+all: ${TARGETS} man
+
+ipcad: ${IPCAD_OBJS}
+	${CC} ${CFLAGS} -o $@ ${IPCAD_OBJS} ${LDFLAGS} ${LIBS}
+
+.SUFFIXES:
+.SUFFIXES: .o .c .0 .8 .5
+
+.c.o:
+	${CC} ${CPPFLAGS} ${CFLAGS} -o $@ -c $<
+
+.8.0:
+	${NROFF} $< > $@
+
+.5.0:
+	${NROFF} $< > $@
+
+cfgy.h cfgy.c: cfg.y
+	${YACC} -p ipcacfg -d cfg.y
+	@mv y.tab.c cfgy.c
+	@mv y.tab.h cfgy.h
+
+cshelly.h cshelly.c: cshell.y
+	${YACC} -p CS -d cshell.y
+	@mv y.tab.c cshelly.c
+	@mv y.tab.h cshelly.h
+
+cslex.c: cslex.l
+	${LEX} -s -p -Cem -ocslex.c -PCS cslex.l
+
+cfglex.c: cfglex.l
+	${LEX} -s -p -Cem -ocfglex.c -Pipcacfg cfglex.l
+
+
+man: ipcad.8 ipcad.conf.5
+
+distdir = $(PACKAGE)-$(VERSION)
+distdir:
+	rm -rf $(distdir)
+	mkdir $(distdir)
+	cp *.c *.h $(distdir)
+	cp ipcad.8 ipcad.conf.5 $(distdir)
+	cp *.y *.l $(distdir)
+	cp *.in configure install-sh $(distdir)
+	cp ipcad.conf.default $(distdir)
+	cp ipcad.conf.simple $(distdir)
+	cp ipcad.spec.in $(distdir)
+	cp Makefile.in Makefile $(distdir)
+	cp ChangeLog INSTALL README TODO BUGS AUTHORS COPYING FAQ $(distdir)
+	cd $(distdir) && make distclean
+
+dist: distdir
+	tar chof - $(distdir) | GZIP="--best" gzip -c > $(distdir).tar.gz
+	rm -rf $(distdir)
+
+clean:
+	rm -f *.o ${TARGETS} *.core 1
+	rm -f *.0
+
+distclean: clean
+	rm -f config.h
+	rm -f config.cache config.log config.status
+	rm -f Makefile
+	rm -f $(distdir).tar.gz
+	rm -f ipcad.spec
+	(echo "all: bootstrap"; echo; echo "bootstrap:"; \
+		echo "	./configure && make") > Makefile
+
+maintainer-clean: distclean
+	@echo "This command is intended for maintainers to use; it"
+	@echo "deletes files that may need special tools to rebuild."
+	rm -f Makefile
+	rm -f *.tab.* cfgy.? *lex.c
+	rm -f config.h.in configure
+
+install: all install-bin install-conf
+
+install-bin:
+	@${INSTALL} -d $(DESTDIR)${bindir}
+	${INSTALL} ipcad $(DESTDIR)${bindir}
+
+install-man: man
+	${INSTALL} -m 444 ipcad.8 $(DESTDIR)${MAN8}/ipcad.8
+	${INSTALL} -m 444 ipcad.conf.5 $(DESTDIR)${MAN5}/ipcad.conf.5
+
+install-conf:
+	@${INSTALL} -d $(DESTDIR)${sysconfdir}
+	${INSTALL} -m 644 ipcad.conf.simple $(DESTDIR)${sysconfdir}/ipcad.conf.simple
+	-@diff ${sysconfdir}/ipcad.conf					\
+	      ${sysconfdir}/ipcad.conf.default >/dev/null 2>&1;		\
+	if [ "$$?" -eq 0 ] || [ ! -f ${sysconfdir}/ipcad.conf ]; then	\
+	echo ${INSTALL} -m 644 ipcad.conf.default $(DESTDIR)${sysconfdir}/ipcad.conf.default; \
+	${INSTALL} -m 644 ipcad.conf.default $(DESTDIR)${sysconfdir}/ipcad.conf.default; \
+	echo ${INSTALL} -m 644 ipcad.conf.default $(DESTDIR)${sysconfdir}/ipcad.conf;	\
+	${INSTALL} -m 644 ipcad.conf.default $(DESTDIR)${sysconfdir}/ipcad.conf;	\
+	echo "**********************************************";		\
+	echo "* Please customize ${sysconfdir}/ipcad.conf *";		\
+	echo "**********************************************";		\
+	else								\
+	echo ${INSTALL} -m 644 ipcad.conf.default $(DESTDIR)${sysconfdir}/ipcad.conf.default; \
+	${INSTALL} -m 644 ipcad.conf.default $(DESTDIR)${sysconfdir}/ipcad.conf.default; \
+	echo "*********************************************";		\
+	echo "* Updated ${sysconfdir}/ipcad.conf.default *";		\
+	echo "*********************************************";		\
+	fi
+	@echo ""
+	@echo "Now you might want to 'make install-man'"
+	@echo ""
+
+
+uninstall:
+	rm -f ${bindir}/ipcad
+	rm -f ${sysconfdir}/ipcad.conf.default
+	rm -f ${sysconfdir}/ipcad.conf.simple
+	rm -f ${MAN8}/ipcad.8
+	rm -f ${MAN5}/ipcad.conf.5
+