* [gentoo-commits] gentoo-x86 commit in media-tv/nxtvepg/files: nxtvepg-daemon-install.patch nxtvepg-tcl8.5.patch nxtvepg-unicode.patch
@ 2008-03-30 14:57 Lars Weiler (pylon)
0 siblings, 0 replies; only message in thread
From: Lars Weiler (pylon) @ 2008-03-30 14:57 UTC (permalink / raw
To: gentoo-commits
pylon 08/03/30 14:57:59
Added: nxtvepg-daemon-install.patch nxtvepg-tcl8.5.patch
nxtvepg-unicode.patch
Log:
Version bump; fixes tcl8.5-compatibility; bug #212682 and #173467.
Probably the tcl/tk-dependency must be fixed to 8.5, but that version is
still masked.
(Portage version: 2.1.4.4)
Revision Changes Path
1.1 media-tv/nxtvepg/files/nxtvepg-daemon-install.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/nxtvepg/files/nxtvepg-daemon-install.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/nxtvepg/files/nxtvepg-daemon-install.patch?rev=1.1&content-type=text/plain
Index: nxtvepg-daemon-install.patch
===================================================================
diff -Naur nxtvepg-2.8.0.orig/Makefile nxtvepg-2.8.0/Makefile
--- nxtvepg-2.8.0.orig/Makefile 2008-03-30 16:19:54.000000000 +0200
+++ nxtvepg-2.8.0/Makefile 2008-03-30 16:21:00.000000000 +0200
@@ -209,8 +209,8 @@
$(BUILD_DIR)/vbirec: $(VBIREC_OBJS)
$(CC) -o $@ $(VBIREC_OBJS) $(LDFLAGS) $(GUILIBS) $(ACQLIBS)
-.PHONY: install
-install: daemon Nxtvepg.ad nxtvepgd.1
+.PHONY: install-common
+install-common: daemon nxtvepgd.1
test -d $(bindir) || install -d $(bindir)
test -d $(mandir) || install -d $(mandir)
test -d $(resdir)/app-defaults || install -d $(resdir)/app-defaults
@@ -218,10 +218,16 @@
test -d $(INST_DB_DIR) || install -d $(INST_DB_DIR)
chmod $(INST_DB_PERM) $(INST_DB_DIR)
endif
- install -c -m 0755 $(BUILD_DIR)/nxtvepg $(bindir)
- install -c -m 0755 $(BUILD_DIR)/nxtvepgd $(bindir)
install -c -m 0644 nxtvepg.1 $(mandir)
+
+.PHONY: install-daemon
+install-daemon: install-common
+ install -c -m 0755 $(BUILD_DIR)/nxtvepgd $(bindir)
install -c -m 0644 nxtvepgd.1 $(mandir)
+
+.PHONY: install
+install: install-common install-daemon Nxtvepg.ad
+ install -c -m 0755 $(BUILD_DIR)/nxtvepg $(bindir)
install -c -m 0644 Nxtvepg.ad $(resdir)/app-defaults/Nxtvepg
.SUFFIXES: .c .o .tcl
1.1 media-tv/nxtvepg/files/nxtvepg-tcl8.5.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/nxtvepg/files/nxtvepg-tcl8.5.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/nxtvepg/files/nxtvepg-tcl8.5.patch?rev=1.1&content-type=text/plain
Index: nxtvepg-tcl8.5.patch
===================================================================
diff -Naur nxtvepg-2.8.0.orig/Makefile nxtvepg-2.8.0/Makefile
--- nxtvepg-2.8.0.orig/Makefile 2008-03-30 16:35:42.000000000 +0200
+++ nxtvepg-2.8.0/Makefile 2008-03-30 16:35:54.000000000 +0200
@@ -58,8 +58,8 @@
YACC = /usr/bin/yacc
# select Tcl/Tk version (8.5 recommended due to modernized widget appearence)
-TCL_VER := $(shell echo 'puts [package require Tcl]' | tclsh)
-#TCL_VER = 8.5
+#TCL_VER := $(shell echo 'puts [package require Tcl]' | tclsh)
+TCL_VER = 8.5
ifeq ($(shell test -d /usr/include/tcl$(TCL_VER) && echo YES),YES)
INCS += -I/usr/include/tcl$(TCL_VER)
1.1 media-tv/nxtvepg/files/nxtvepg-unicode.patch
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/nxtvepg/files/nxtvepg-unicode.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-tv/nxtvepg/files/nxtvepg-unicode.patch?rev=1.1&content-type=text/plain
Index: nxtvepg-unicode.patch
===================================================================
diff -Naur nxtvepg-2.8.0.orig/Makefile nxtvepg-2.8.0/Makefile
--- nxtvepg-2.8.0.orig/Makefile 2008-03-30 16:36:52.000000000 +0200
+++ nxtvepg-2.8.0/Makefile 2008-03-30 16:36:58.000000000 +0200
@@ -86,7 +86,7 @@
ACQLIBS += -lpthread
# use UTF-8 internally instead of Latin-1 (EXPERIMENTAL)
-#DEFS += -DUSE_UTF8 -DXMLTV_OUTPUT_UTF8
+DEFS += -DUSE_UTF8 -DXMLTV_OUTPUT_UTF8
# enable support for importing XMLTV files
DEFS += -DUSE_XMLTV_IMPORT
--
gentoo-commits@lists.gentoo.org mailing list
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2008-03-30 14:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-03-30 14:57 [gentoo-commits] gentoo-x86 commit in media-tv/nxtvepg/files: nxtvepg-daemon-install.patch nxtvepg-tcl8.5.patch nxtvepg-unicode.patch Lars Weiler (pylon)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox