2013-01-17 13:16:44 +01:00
|
|
|
#
|
|
|
|
# Makefile for a Video Disk Recorder plugin
|
|
|
|
#
|
|
|
|
# $Id$
|
|
|
|
|
2013-12-22 10:39:46 +01:00
|
|
|
# External image lib to use: imagemagick, graphicsmagick
|
|
|
|
IMAGELIB = imagemagick
|
|
|
|
|
2013-01-17 13:16:44 +01:00
|
|
|
# The official name of this plugin.
|
|
|
|
# This name will be used in the '-P...' option of VDR to load the plugin.
|
|
|
|
# By default the main source file also carries this name.
|
|
|
|
#
|
|
|
|
PLUGIN = tvguide
|
|
|
|
|
|
|
|
### 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:
|
|
|
|
PKGCFG = $(if $(VDRDIR),$(shell pkg-config --variable=$(1) $(VDRDIR)/vdr.pc),$(shell pkg-config --variable=$(1) vdr || pkg-config --variable=$(1) ../../../vdr.pc))
|
2013-02-01 15:57:40 +01:00
|
|
|
LIBDIR = $(call PKGCFG,libdir)
|
|
|
|
LOCDIR = $(call PKGCFG,locdir)
|
|
|
|
PLGCFG = $(call PKGCFG,plgcfg)
|
|
|
|
VDRCONFDIR= $(call PKGCFG,configdir)
|
2013-07-09 00:17:42 +02:00
|
|
|
PLGRESDIR = $(call PKGCFG,resdir)/plugins/$(PLUGIN)
|
2013-01-17 13:16:44 +01:00
|
|
|
TMPDIR ?= /tmp
|
|
|
|
|
|
|
|
### The compiler options:
|
|
|
|
export CFLAGS = $(call PKGCFG,cflags)
|
|
|
|
export CXXFLAGS = $(call PKGCFG,cxxflags)
|
|
|
|
|
|
|
|
### Allow user defined options to overwrite defaults:
|
|
|
|
-include $(PLGCFG)
|
|
|
|
|
|
|
|
APIVERSION = $(call PKGCFG,apiversion)
|
|
|
|
|
|
|
|
### The name of the distribution archive:
|
|
|
|
|
|
|
|
ARCHIVE = $(PLUGIN)-$(VERSION)
|
|
|
|
PACKAGE = vdr-$(ARCHIVE)
|
|
|
|
|
|
|
|
### The name of the shared object file:
|
|
|
|
|
|
|
|
SOFILE = libvdr-$(PLUGIN).so
|
|
|
|
|
|
|
|
### Includes and Defines (add further entries here):
|
|
|
|
|
|
|
|
DEFINES += -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
|
2013-02-07 14:25:09 +01:00
|
|
|
|
2013-12-22 10:39:46 +01:00
|
|
|
ifeq ($(IMAGELIB), imagemagick)
|
|
|
|
INCLUDES += $(shell pkg-config --cflags Magick++)
|
|
|
|
LIBS += $(shell pkg-config --libs Magick++)
|
|
|
|
else ifeq ($(IMAGELIB), graphicsmagick)
|
|
|
|
INCLUDES += $(shell pkg-config --cflags GraphicsMagick++)
|
|
|
|
LIBS += $(shell pkg-config --libs GraphicsMagick++)
|
|
|
|
endif
|
2013-01-17 13:16:44 +01:00
|
|
|
|
|
|
|
### The object files (add further files here):
|
|
|
|
|
2013-12-23 09:12:19 +01:00
|
|
|
OBJS = $(PLUGIN).o channelcolumn.o channelgroup.o channelgroups.o channeljump.o config.o detailview.o dummygrid.o epggrid.o fontmanager.o footer.o geometrymanager.o grid.o headergrid.o imagecache.o imageloader.o imagemagickwrapper.o imagescaler.o osdmanager.o recmanager.o recmenu.o recmenuitem.o recmenumanager.o recmenus.o setup.o statusheader.o styledpixmap.o switchtimer.o timeline.o timer.o tools.o tvguideosd.o
|
2013-01-17 13:16:44 +01:00
|
|
|
|
|
|
|
### The main target:
|
|
|
|
|
|
|
|
all: $(SOFILE) i18n
|
|
|
|
|
|
|
|
### Implicit rules:
|
|
|
|
|
|
|
|
%.o: %.c
|
2013-02-01 15:57:40 +01:00
|
|
|
$(CXX) $(CXXFLAGS) -c $(DEFINES) $(INCLUDES) -o $@ $<
|
2013-01-17 13:16:44 +01:00
|
|
|
|
|
|
|
### Dependencies:
|
|
|
|
|
|
|
|
MAKEDEP = $(CXX) -MM -MG
|
|
|
|
DEPFILE = .dependencies
|
|
|
|
$(DEPFILE): Makefile
|
2013-02-01 15:57:40 +01:00
|
|
|
@$(MAKEDEP) $(CXXFLAGS) $(DEFINES) $(INCLUDES) $(OBJS:%.o=%.c) > $@
|
2013-01-17 13:16:44 +01:00
|
|
|
|
|
|
|
-include $(DEPFILE)
|
|
|
|
|
|
|
|
### Internationalization (I18N):
|
|
|
|
|
|
|
|
PODIR = po
|
|
|
|
I18Npo = $(wildcard $(PODIR)/*.po)
|
|
|
|
I18Nmo = $(addsuffix .mo, $(foreach file, $(I18Npo), $(basename $(file))))
|
2013-02-01 15:57:40 +01:00
|
|
|
I18Nmsgs = $(addprefix $(DESTDIR)$(LOCDIR)/, $(addsuffix /LC_MESSAGES/vdr-$(PLUGIN).mo, $(notdir $(foreach file, $(I18Npo), $(basename $(file))))))
|
2013-01-17 13:16:44 +01:00
|
|
|
I18Npot = $(PODIR)/$(PLUGIN).pot
|
|
|
|
|
|
|
|
%.mo: %.po
|
|
|
|
msgfmt -c -o $@ $<
|
|
|
|
|
|
|
|
$(I18Npot): $(wildcard *.c)
|
|
|
|
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)
|
|
|
|
msgmerge -U --no-wrap --no-location --backup=none -q -N $@ $<
|
|
|
|
@touch $@
|
|
|
|
|
2013-02-01 15:57:40 +01:00
|
|
|
$(I18Nmsgs): $(DESTDIR)$(LOCDIR)/%/LC_MESSAGES/vdr-$(PLUGIN).mo: $(PODIR)/%.mo
|
2013-01-17 13:16:44 +01:00
|
|
|
install -D -m644 $< $@
|
|
|
|
|
|
|
|
.PHONY: i18n
|
|
|
|
i18n: $(I18Nmo) $(I18Npot)
|
|
|
|
|
|
|
|
install-i18n: $(I18Nmsgs)
|
|
|
|
|
|
|
|
### Targets:
|
2013-07-09 00:17:42 +02:00
|
|
|
|
2013-01-17 13:16:44 +01:00
|
|
|
$(SOFILE): $(OBJS)
|
2013-02-07 14:25:09 +01:00
|
|
|
$(CXX) $(CXXFLAGS) $(LDFLAGS) -shared $(OBJS) $(LIBS) -o $@
|
2013-01-17 13:16:44 +01:00
|
|
|
|
|
|
|
install-lib: $(SOFILE)
|
2013-02-01 15:57:40 +01:00
|
|
|
install -D $^ $(DESTDIR)$(LIBDIR)/$^.$(APIVERSION)
|
2013-01-17 13:16:44 +01:00
|
|
|
|
|
|
|
install-themes:
|
2013-02-01 15:57:40 +01:00
|
|
|
@mkdir -p $(DESTDIR)$(VDRCONFDIR)/themes
|
|
|
|
cp themes/* $(DESTDIR)$(VDRCONFDIR)/themes
|
2013-01-17 13:16:44 +01:00
|
|
|
|
2013-07-09 00:17:42 +02:00
|
|
|
install-icons:
|
|
|
|
mkdir -p $(DESTDIR)$(PLGRESDIR)/icons
|
|
|
|
cp -r icons/* $(DESTDIR)$(PLGRESDIR)/icons
|
|
|
|
|
|
|
|
install: install-lib install-i18n install-themes install-icons
|
2013-01-17 13:16:44 +01:00
|
|
|
|
|
|
|
dist: $(I18Npo) clean
|
|
|
|
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@mkdir $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@cp -a * $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@tar czf $(PACKAGE).tgz -C $(TMPDIR) $(ARCHIVE)
|
|
|
|
@-rm -rf $(TMPDIR)/$(ARCHIVE)
|
|
|
|
@echo Distribution package created as $(PACKAGE).tgz
|
|
|
|
|
|
|
|
clean:
|
|
|
|
@-rm -f $(PODIR)/*.mo $(PODIR)/*.pot
|
|
|
|
@-rm -f $(OBJS) $(DEPFILE) *.so *.tgz core* *~
|