summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndreas Mair <amair.sob@googlemail.com>2007-02-19 12:42:15 +0100
committerAndreas Mair <amair.sob@googlemail.com>2007-02-19 12:42:15 +0100
commitb1fa489fdbd06712add00390966defbe9a96232a (patch)
treea5d1efbbfe4f22e12bea081454502828682be134 /Makefile
parent2ced4d35c533969fdb0ee6fa963a2fef26c50b79 (diff)
downloadvdr-plugin-skinenigmang-b1fa489fdbd06712add00390966defbe9a96232a.tar.gz
vdr-plugin-skinenigmang-b1fa489fdbd06712add00390966defbe9a96232a.tar.bz2
2007-02-19: Version 0.0.2v0.0.2
- Fixed problems in replay OSD when not using small font (Reported by several people). - Only display reruns of current event in EPG info if there are more than two reruns. - New setup option to enable/disable trying a single 8bpp OSD area. - Completed French translation (Submitted by Patrice Staudt). - Completed Finnish translation (Patch by rofafor @vdr-portal.de). - Changed defines: HAVE_EPGSEARCH to SKINENIGMA_HAVE_EPGSEARCH and NO_MENULOGO to SKINENIGMA_NO_MENULOGO (Patch by rofafor @vdr-portal.de). - Fixed crash if loading channel logos by channel id (Reported by zulu @vdr-portal.de). - Fixed gcc warning (Reported by zulu @vdr-portal.de). - Renamed theme WomansLike to WomenLike. - Some smaller fixes.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 44c0e63..94e3e60 100644
--- a/Makefile
+++ b/Makefile
@@ -1,15 +1,15 @@
#
# Makefile for a Video Disk Recorder plugin
#
-# $Id$
+# $Id: Makefile,v 1.2 2007/02/15 13:37:17 amair Exp $
# If you are using the epgsearch plugin and want to see the number of
# timer conflicts in the main menu's info area.
-#HAVE_EPGSEARCH = 1
+#SKINENIGMA_HAVE_EPGSEARCH = 1
# This turns usage of logos in the main menu complete. This might also
# improve the performance of the menus. EXPERIMENTAL!!!
-#NO_MENULOGO = 1
+#SKINENIGMA_NO_MENULOGO = 1
# Debugging on/off
#SKINENIGMA_DEBUG = 1
@@ -58,16 +58,16 @@ INCLUDES += -I$(VDRDIR)/include
DEFINES += -D_GNU_SOURCE -DPLUGIN_NAME_I18N='"$(PLUGIN)"'
-ifdef HAVE_EPGSEARCH
-DEFINES += -DHAVE_EPGSEARCH
+ifdef SKINENIGMA_HAVE_EPGSEARCH
+DEFINES += -DSKINENIGMA_HAVE_EPGSEARCH
endif
ifdef SKINENIGMA_DEBUG
DEFINES += -DDEBUG
endif
-ifdef NO_MENULOGO
-DEFINES += -DNO_MENULOGO
+ifdef SKINENIGMA_NO_MENULOGO
+DEFINES += -DSKINENIGMA_NO_MENULOGO
endif
### The object files (add further files here):
@@ -103,7 +103,7 @@ dist: clean
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@mkdir $(TMPDIR)/$(ARCHIVE)
@cp -a * $(TMPDIR)/$(ARCHIVE)
- @tar czf $(PACKAGE).tgz -C $(TMPDIR) $(ARCHIVE)
+ @tar czf $(PACKAGE).tgz --exclude CVS -C $(TMPDIR) $(ARCHIVE)
@-rm -rf $(TMPDIR)/$(ARCHIVE)
@echo Distribution package created as $(PACKAGE).tgz