Merge "src: only copy config if it doesn't exist"
[barometer.git] / src / collectd / Makefile
1 # makefile to manage collectd package
2 #
3
4 # Copyright 2016 OPNFV
5 #
6 # Licensed under the Apache License, Version 2.0 (the "License");
7 # you may not use this file except in compliance with the License.
8 # You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17
18 #
19 # Contributors:
20 #   Aihua Li, Huawei Technologies.
21 #   Maryam Tahhan, Intel Corporation.
22
23 include ../mk/master.mk
24 include ../package-list.mk
25
26 WORK_DIR = collectd
27 TAG_DONE_FLAG = $(WORK_DIR)/.$(COLLECTD_TAG).done
28 BUILD_CMD = ./build.sh
29 CONFIG_CMD =
30 CONFIG_CMD += ./configure
31
32 LIBPQOS_DIR = $(shell echo $$LIBPQOS_DIR)
33 ifeq ($(LIBPQOS_DIR),)
34 LIBPQOS_DIR = /usr
35 endif
36
37
38 CONFIG_CMD += --enable-syslog
39 CONFIG_CMD += --enable-logfile
40 CONFIG_CMD += --with-libpqos=$(LIBPQOS_DIR)
41 CONFIG_CMD += --with-hugepages
42 CONFIG_CMD += --enable-exec
43 CONFIG_CMD += --enable-python
44 CONFIG_CMD += --enable-threshold
45
46 .PHONY: install force_install config force_make
47
48 # install depends on make
49 #force_install: force_make
50
51 all: force_make
52         @echo "Finished making $(WORK_DIR)"
53
54 config $(WORK_DIR)/Makefile: $(WORK_DIR)/configure
55         $(AT)cd $(WORK_DIR); $(CONFIG_CMD)
56         @echo "Configure done"
57
58 force_make: $(WORK_DIR)/Makefile
59         $(AT)cd $(WORK_DIR) && git pull $(COLLECTD_URL) $(COLLECTD_TAG)
60         @echo "git pull done"
61         $(AT) $(MAKE) -C $(WORK_DIR) $(MORE_MAKE_FLAGS)
62         @echo "Make done"
63
64 force_install:
65         $(AT)$(MAKE) -C $(WORK_DIR) install
66         $(AT)cp $(WORK_DIR)/contrib/systemd.collectd.service /etc/systemd/system/
67         $(AT)mv /etc/systemd/system/systemd.collectd.service /etc/systemd/system/collectd.service
68         $(AT)chmod +x /etc/systemd/system/collectd.service
69         $(AT)sed -i -e 's/ExecStart=\/usr\/sbin\/collectd/ExecStart=\/opt\/collectd\/sbin\/collectd/g' /etc/systemd/system/collectd.service
70         $(AT)sed -i -e 's/CapabilityBoundingSet=/CapabilityBoundingSet=CAP_SETUID CAP_SETGID/g' /etc/systemd/system/collectd.service
71         $(AT)systemctl daemon-reload
72         $(AT)sudo ./include_config.sh
73         @echo "Make install done"
74
75 install: force_install
76
77
78 # hard way to clean and clobber
79 clean:
80         $(AT)cd $(WORK_DIR) && git clean -xfd *.o
81 clobber:
82         $(AT)rm -rf $(WORK_DIR)
83
84 # distclean is for developer who would like to keep the
85 # clone git repo, saving time to fetch again from url
86 distclean:
87         $(AT)cd $(WORK_DIR) && git clean -xfd && git checkout -f
88
89 test:
90         @echo "Make test in $(WORK_DIR) (stub) "
91
92 sanity:
93         @echo "Make sanity in $(WORK_DIR) (stub) "
94
95 .PHONY: boot
96 # boot collectd is the process to produce the script 'configure'
97 boot $(WORK_DIR)/configure:
98         @echo "booting up collectd"
99         $(AT)cd $(WORK_DIR); $(BUILD_CMD)
100         @echo "done booting collectd"
101
102 boot $(WORK_DIR)/configure: $(TAG_DONE_FLAG)
103
104 $(WORK_DIR):
105         $(AT)git clone $(COLLECTD_URL)
106
107 $(TAG_DONE_FLAG): $(WORK_DIR)
108         $(AT)cd collectd; git checkout $(COLLECTD_TAG)
109 ifneq ($(PATCH_FILE),)
110         $(AT)cd $(WORK_DIR); patch -p1 < ../$(PATCH_FILE)
111 endif
112         $(AT)touch $@