-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
368 lines (285 loc) · 11.1 KB
/
Makefile
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
#
# Makefile for epgsearch, a Video Disk Recorder plugin
#
# Christian Wieninger cwieninger at gmx.de
#
# Adapted to the new VDR makefile environment by Copperhead,
# refined by Stefan Hofmann
#
### ------------
### CONFIG START
###
### to change an option just edit the value: 0 => false, 1 => true
### edit one of these lines to '1', if you don't want the addon epgsearchonly,
### conflictcheckonly or quickepgsearch
WITHOUT_EPGSEARCHONLY=0
WITHOUT_CONFLICTCHECKONLY=0
WITHOUT_QUICKSEARCH=0
### edit this to '0' if you don't want epgsearch to auto config itself
AUTOCONFIG=1
### if AUTOCONFIG is not active you can manually enable the
### optional modules or patches for other plugins
ifeq ($(AUTOCONFIG),0)
# if you want to use Perl compatible regular expressions (PCRE) or libtre for
# unlimited fuzzy searching, uncomment this and set the value to pcre/pcre2
# or tre - also have a look at INSTALL for further notes on this
#REGEXLIB = pcre2
# uncomment this to enable support for the pin plugin.
#USE_PINPLUGIN = 1
# uncomment this to enable support for the graphtft plugin.
#USE_GRAPHTFT = 1
endif
### the sendmail executable to use when epgsearch is configured to use the
### sendmail method for sending mail
SENDMAIL = /usr/sbin/sendmail
###
### CONFIG END
### do not edit below this line if you don't know what you do ;-)
### -------------------------------------------------------------
PLUGIN = epgsearch
MAINMENUSHORTCUT = epgsearchmainmenushortcut
PLUGIN2 = epgsearchonly
PLUGIN3 = conflictcheckonly
PLUGIN4 = quickepgsearch
### The version number of this plugin (taken from the main source file):
VERSION = $(shell grep 'static const char VERSION\[\] *=' $(PLUGIN).c | awk '{ print $$6 }' | sed -e 's/[";]//g')
### The directory environment:
# Use package data if installed...otherwise assume we're under the VDR source directory:
PKG_CONFIG ?= pkg-config
#PKGCFG = $(if $(VDRDIR),$(shell $(PKG_CONFIG) --variable=$(1) $(VDRDIR)/vdr.pc),$(shell $(PKG_CONFIG) --variable=$(1) vdr || $(PKG_CONFIG) --variable=$(1) ../../../vdr.pc))
PKGCFG = $(if $(VDRDIR),$(shell $(PKG_CONFIG) --variable=$(1) $(VDRDIR)/vdr.pc),$(shell PKG_CONFIG_PATH="$$PKG_CONFIG_PATH:../../.." $(PKG_CONFIG) --variable=$(1) vdr))
LIBDIR = $(call PKGCFG,libdir)
LOCDIR = $(call PKGCFG,locdir)
MANDIR = $(call PKGCFG,mandir)
CONFDIR = $(call PKGCFG,configdir)
BINDIR = $(call PKGCFG,bindir)
#
TMPDIR ?= /tmp
PLGCFG = $(call PKGCFG,plgcfg)
-include $(PLGCFG)
### The compiler options:
export CFLAGS = $(call PKGCFG,cflags)
export CXXFLAGS = $(call PKGCFG,cxxflags)
### configuring modules
ifeq ($(AUTOCONFIG),1)
ifeq (exists, $(shell $(PKG_CONFIG) libpcre2-posix && echo exists))
REGEXLIB = pcre2
else ifeq (exists, $(shell $(PKG_CONFIG) libpcre && echo exists))
REGEXLIB = pcre
else ifeq (exists, $(shell $(PKG_CONFIG) tre && echo exists))
REGEXLIB = tre
endif
ifeq (exists, $(shell test -e ../pin && echo exists))
USE_PINPLUGIN = 1
endif
ifeq (exists, $(shell test -e ../graphtft && echo exists))
USE_GRAPHTFT = 1
endif
ifeq (exists, $(shell test -e ../graphtftng && echo exists))
USE_GRAPHTFT = 1
endif
endif
### The version number of VDR's plugin API:
APIVERSION = $(call PKGCFG,apiversion)
### The name of the distribution archive:
ARCHIVE = $(PLUGIN)-$(VERSION)
PACKAGE = vdr-$(ARCHIVE)
### Includes and Defines (add further entries here):
INCLUDES +=
DEFINES +=
ifneq ($(SENDMAIL),)
DEFINES += -DSENDMAIL='"$(SENDMAIL)"'
endif
### The object files (add further files here):
ALL = libvdr-$(PLUGIN).so createcats
ifeq ($(WITHOUT_EPGSEARCHONLY), 0)
ALL += libvdr-$(PLUGIN2).so
endif
ifeq ($(WITHOUT_CONFLICTCHECKONLY), 0)
ALL += libvdr-$(PLUGIN3).so
endif
ifeq ($(WITHOUT_QUICKSEARCH), 0)
ALL += libvdr-$(PLUGIN4).so
endif
OBJS = afuzzy.o blacklist.o changrp.o confdloader.o conflictcheck.o conflictcheck_thread.o distance.o $(PLUGIN).o epgsearchcats.o epgsearchcfg.o epgsearchext.o epgsearchsetup.o epgsearchsvdrp.o epgsearchtools.o mail.o md5.o menu_announcelist.o menu_blacklistedit.o menu_blacklists.o menu_commands.o menu_conflictcheck.o menu_deftimercheckmethod.o menu_dirselect.o menu_event.o menu_favorites.o menu_main.o menu_myedittimer.o menu_quicksearch.o menu_recsdone.o menu_search.o menu_searchactions.o menu_searchedit.o menu_searchresults.o menu_searchtemplate.o menu_switchtimers.o menu_templateedit.o menu_timersdone.o menu_whatson.o noannounce.o pending_notifications.o rcfile.o recdone.o recdone_thread.o recstatus.o searchtimer_thread.o services.o switchtimer.o switchtimer_thread.o templatefile.o timer_thread.o timerdone.o timerstatus.o uservars.o varparser.o
ifeq ($(REGEXLIB), pcre2)
LIBS += $(shell pcre2-config --libs-posix)
INCLUDE += $(shell pcre2-config --cflags)
DEFINES += -DHAVE_PCRE2POSIX
else ifeq ($(REGEXLIB), pcre)
LIBS += $(shell pcre-config --libs-posix)
INCLUDE += $(shell pcre-config --cflags)
DEFINES += -DHAVE_PCREPOSIX
else ifeq ($(REGEXLIB), tre)
LIBS += -L$(shell $(PKG_CONFIG) --variable=libdir tre) $(shell $(PKG_CONFIG) --libs tre)
DEFINES += -DHAVE_LIBTRE
INCLUDE += $(shell $(PKG_CONFIG) --cflags tre)
endif
ifdef USE_PINPLUGIN
DEFINES += -DUSE_PINPLUGIN
endif
ifdef USE_GRAPHTFT
DEFINES += -DUSE_GRAPHTFT
endif
ifdef CFLC
DEFINES += -DCFLC
endif
ifdef DEBUG_CONFL
DEFINES += -DDEBUG_CONFL
endif
### length of the filling '-' in the channel separators, defaults to
### "----------------------------------------"
### overwrite this with PLUGIN_EPGSEARCH_SEP_ITEMS=---
### to avoid problems with graphlcd
ifdef PLUGIN_EPGSEARCH_SEP_ITEMS
DEFINES += -DMENU_SEPARATOR_ITEMS='"$(PLUGIN_EPGSEARCH_SEP_ITEMS)"'
endif
OBJS2 = mainmenushortcut.o epgsearchonly.o
LIBS2 =
OBJS3 = mainmenushortcut.o conflictcheckonly.o
LIBS3 =
OBJS4 = mainmenushortcut.o quickepgsearch.o
LIBS4 =
### The main target:
all: $(ALL) i18n docs
### Implicit rules:
%.o: %.c
@echo CC $@
$(Q)$(CXX) $(CXXFLAGS) -c $(DEFINES) -DPLUGIN_NAME_I18N='"$(PLUGIN)"' $(INCLUDES) -o $@ $<
mainmenushortcut.o: mainmenushortcut.c
@echo CC $@
$(Q)$(CXX) $(CXXFLAGS) -c $(DEFINES) -DPLUGIN_NAME_I18N='"$(MAINMENUSHORTCUT)"' $(INCLUDES) -o $@ $<
epgsearchonly.o: epgsearchonly.c
@echo CC $@
$(Q)$(CXX) $(CXXFLAGS) -c $(DEFINES) -DPLUGIN_NAME_I18N='"$(PLUGIN2)"' $(INCLUDES) -o $@ $<
conflictcheckonly.o: conflictcheckonly.c
@echo CC $@
$(Q)$(CXX) $(CXXFLAGS) -c $(DEFINES) -DPLUGIN_NAME_I18N='"$(PLUGIN3)"' $(INCLUDES) -o $@ $<
quickepgsearch.o: quickepgsearch.c
@echo CC $@
$(Q)$(CXX) $(CXXFLAGS) -c $(DEFINES) -DPLUGIN_NAME_I18N='"$(PLUGIN4)"' $(INCLUDES) -o $@ $<
# Dependencies:
MAKEDEP = $(CXX) -MM -MG
DEPFILE = .dependencies
$(DEPFILE): Makefile
@$(MAKEDEP) $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) $(OBJS2:%.o=%.c) $(OBJS3:%.o=%.c) $(OBJS4:%.o=%.c)> $@
ifneq ($(MAKECMDGOALS),clean)
-include $(DEPFILE)
endif
DEPFILE_DOC = .dependencies_doc
DEPFILE_stmp = .doc_stmp
$(DEPFILE_DOC): Makefile
@rm -f $(DEPFILE_DOC)
@./docsrc2man.sh --depend $(DEPFILE_stmp) > $(DEPFILE_DOC)
ifneq ($(MAKECMDGOALS),clean)
-include $(DEPFILE_DOC)
endif
### Internationalization (I18N):
PODIR = po
I18Npo = $(wildcard $(PODIR)/*.po)
I18Nmo = $(addsuffix .mo, $(foreach file, $(I18Npo), $(basename $(file))))
I18Nmsgs = $(addprefix $(DESTDIR)$(LOCDIR)/, $(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo, $(notdir $(foreach file, $(I18Npo), $(basename $(file))))))
I18Npot = $(PODIR)/$(PLUGIN).pot
%.mo: %.po
@echo MO $@
$(Q)msgfmt -c -o $@ $<
$(I18Npot): $(wildcard *.c)
@echo GT$@
$(Q)xgettext -C -cTRANSLATORS --no-wrap --no-location -k -ktr -ktrNOOP --package-name=vdr-$(PLUGIN) --package-version=$(VERSION) --msgid-bugs-address='<see README>' -o $@ `ls $^`
%.po: $(I18Npot)
@echo PO $@
$(Q)msgmerge -U --no-wrap --no-location --backup=none -q -N $@ $<
@touch $@
$(I18Nmsgs): $(DESTDIR)$(LOCDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo
@echo IN $@
$(Q)install -D -m644 $< $@
.PHONY: i18n
i18n: $(I18Nmo) $(I18Npot)
install-i18n: $(I18Nmsgs)
### Targets:
libvdr-$(PLUGIN).so: $(OBJS)
@echo LD $@
$(Q)$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -o $@
libvdr-$(PLUGIN2).so: $(OBJS2)
@echo LD $@
$(Q)$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS2) $(LIBS2) -o $@
libvdr-$(PLUGIN3).so: $(OBJS3)
@echo LD $@
$(Q)$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS3) $(LIBS3) -o $@
libvdr-$(PLUGIN4).so: $(OBJS4)
@echo LD $@
$(Q)$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS4) $(LIBS4) -o $@
createcats: createcats.o Makefile
@echo LD $@
$(Q)$(CXX) $(CXXFLAGS) $(LDFLAGS) createcats.o -o $@
$(DEPFILE_stmp):
./docsrc2man.sh
./docsrc2html.sh
ln -sf ./doc/en/epgsearch.4.txt MANUAL
ln -sf ./doc/en/epgsearch.1.txt README
ln -sf ./doc/de/epgsearch.1.txt README.DE
@rm -f $(DEPFILE_stmp)
@date > $(DEPFILE_stmp)
docs: $(DEPFILE_stmp)
install-$(PLUGIN): libvdr-$(PLUGIN).so
@echo IN $@
$(Q)install -D libvdr-$(PLUGIN).so $(DESTDIR)$(LIBDIR)/libvdr-$(PLUGIN).so.$(APIVERSION)
install-$(PLUGIN2): libvdr-$(PLUGIN2).so
@echo IN $@
$(Q)install -D libvdr-$(PLUGIN2).so $(DESTDIR)$(LIBDIR)/libvdr-$(PLUGIN2).so.$(APIVERSION)
install-$(PLUGIN3): libvdr-$(PLUGIN3).so
@echo IN $@
$(Q)install -D libvdr-$(PLUGIN3).so $(DESTDIR)$(LIBDIR)/libvdr-$(PLUGIN3).so.$(APIVERSION)
install-$(PLUGIN4): libvdr-$(PLUGIN4).so
@echo IN $@
$(Q)install -D libvdr-$(PLUGIN4).so $(DESTDIR)$(LIBDIR)/libvdr-$(PLUGIN4).so.$(APIVERSION)
install-conf:
mkdir -p $(DESTDIR)$(CONFDIR)/plugins/$(PLUGIN)/conf.d
@for i in conf/*; do\
if ! [ -e $(DESTDIR)$(CONFDIR)/plugins/$$i ] ; then\
cp -p $$i $(DESTDIR)$(CONFDIR)/plugins/$(PLUGIN);\
fi\
done
install-doc: docs
mkdir -p $(DESTDIR)$(MANDIR)/man1
mkdir -p $(DESTDIR)$(MANDIR)/man4
mkdir -p $(DESTDIR)$(MANDIR)/man5
mkdir -p $(DESTDIR)$(MANDIR)/de/man1
mkdir -p $(DESTDIR)$(MANDIR)/de/man5
cp man/en/*1.gz $(DESTDIR)$(MANDIR)/man1/
cp man/en/*4.gz $(DESTDIR)$(MANDIR)/man4/
cp man/en/*5.gz $(DESTDIR)$(MANDIR)/man5/
cp man/de/*1.gz $(DESTDIR)$(MANDIR)/de/man1/
cp man/de/*5.gz $(DESTDIR)$(MANDIR)/de/man5/
install-bin: createcats
mkdir -p $(DESTDIR)$(BINDIR)
cp createcats $(DESTDIR)$(BINDIR)
install: install-lib install-i18n install-conf install-doc install-bin
install-lib: install-$(PLUGIN) install-$(PLUGIN2) install-$(PLUGIN3) install-$(PLUGIN4)
dist: docs clean
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@mkdir $(TMPDIR)/$(ARCHIVE)
@cp -a * $(TMPDIR)/$(ARCHIVE)
@-rm -rf $(TMPDIR)/$(ARCHIVE)/doc-src
@-rm -rf $(TMPDIR)/$(ARCHIVE)/html
@-rm -rf $(TMPDIR)/$(ARCHIVE)/docsrc2man.sh
@-rm -rf $(TMPDIR)/$(ARCHIVE)/docsrc2html.sh
@tar czf $(PACKAGE).tgz -C $(TMPDIR) $(ARCHIVE)
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@ln -sf README.git README
@echo Distribution package created as $(PACKAGE).tgz
distfull: docs clean
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@mkdir $(TMPDIR)/$(ARCHIVE)
@cp -a * $(TMPDIR)/$(ARCHIVE)
@tar czf $(PACKAGE).tgz -C $(TMPDIR) $(ARCHIVE)
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@ln -sf README.git README
@echo complete distribution package created as $(PACKAGE).tgz
clean:
@-rm -f $(PODIR)/*.mo $(PODIR)/*.pot
@-rm -f $(OBJS) $(OBJS2) $(OBJS3) $(OBJS4) $(DEPFILE) *.so *.tgz core* createcats createcats.o pod2*.tmp
@-find . \( -name "*~" -o -name "#*#" \) -print0 | xargs -0r rm -f
@-rm -rf doc html man
@-rm -f MANUAL README README.DE
@-rm -f $(DEPFILE_stmp) $(DEPFILE_DOC)