Re: [linux-dvb] [PATCH] v4l-dvb: add $DESTDIR support

2007-03-09 Thread Ludwig Nussel
Trent Piepho wrote: > On Thu, 8 Mar 2007, Ludwig Nussel wrote: > > Trent Piepho wrote: > > > > Following patch adds $DESTDIR support so one can install the kernel > > > > modules into a directory other than / as non-root user. That's > > > > useful

Re: [linux-dvb] [PATCH] v4l-dvb: add $DESTDIR support

2007-03-08 Thread Ludwig Nussel
Trent Piepho wrote: > > Following patch adds $DESTDIR support so one can install the kernel > > modules into a directory other than / as non-root user. That's > > useful when building an rpm or compiling for a different machine. > > > > Signed-off-by: Ludwig Nuss

[linux-dvb] [PATCH] v4l-dvb: add $DESTDIR support

2007-03-07 Thread Ludwig Nussel
Hi, Following patch adds $DESTDIR support so one can install the kernel modules into a directory other than / as non-root user. That's useful when building an rpm or compiling for a different machine. Signed-off-by: Ludwig Nussel <[EMAIL PROTECTED]> diff -r 44676649301d

Re: [linux-dvb] [patch 1/6] honor DESTDIR and libdir in order to ease rpm builds

2006-09-19 Thread Ludwig Nussel
[I'm sorry, I somehow missed that mail] On Thursday 07 September 2006 20:06, Christoph Pfister wrote: > Am Donnerstag, 7. September 2006 15:08 schrieb Ludwig Nussel: > > [...] > > ifneq ($(libraries),) > > @echo installing libraries > > - @mkdir -p $(pre

Re: [linux-dvb] [patch 3/6] rename scan into dvbscan again

2006-09-08 Thread Ludwig Nussel
On Thursday 07 September 2006 19:38, Johannes Stezenbach wrote: > On Thu, Sep 07, 2006 at 03:08:20PM +0200, Ludwig Nussel wrote: > > Change got lost during Makefile refactoring > > It isn't necessary to rename to source files for renaming > the binaries. A small Makefil

Re: [linux-dvb] [patch 5/6] use -H for human readable output

2006-09-08 Thread Ludwig Nussel
On Thursday 07 September 2006 20:16, Christoph Pfister wrote: > Am Donnerstag, 7. September 2006 15:08 schrieb Ludwig Nussel: > > like ls -H, df -H, du -H ... > > also actually show that percent are displayed > > > > Signed-off-by: [EMAIL PROTECTED] > > > >

Re: [linux-dvb] [patch 6/6] do not install evtest, its provided by input-utils already

2006-09-08 Thread Ludwig Nussel
On Thursday 07 September 2006 20:19, Andrew de Quincey wrote: > On Thursday 07 September 2006 14:08, Ludwig Nussel wrote: > > Signed-off-by: [EMAIL PROTECTED] > > Can you confirm if evtest is completely replaced by the input-utils stuff? If > so I'd rather just kill it c

Re: [linux-dvb] [patch 3/6] rename scan into dvbscan again

2006-09-08 Thread Ludwig Nussel
On Thursday 07 September 2006 20:18, Andrew de Quincey wrote: > On Thursday 07 September 2006 19:13, Christoph Pfister wrote: > > Am Donnerstag, 7. September 2006 15:08 schrieb Ludwig Nussel: > > > Change got lost during Makefile refactoring > > > > >

Re: [linux-dvb] [patch 2/6] install data files again

2006-09-08 Thread Ludwig Nussel
; > $(DESTDIR)$(datadir)/dvb/zap/$$d/ \ > > + ; install -m644 `find channels-conf/$$d -type f` > > $(DESTDIR)$(datadir)/dvb/zap/$$d/ ; done > > Won't add it because those channel files are outdated ... and szap will be > replaced by gnutv sooner or later. Ok. I&#

Re: [linux-dvb] [patch 1/6] honor DESTDIR and libdir in order to ease rpm builds

2006-09-08 Thread Ludwig Nussel
revised patch with the missing DESTDIR added Signed-off-by: [EMAIL PROTECTED] diff -r 20ba8a1f7f68 Make.rules --- a/Make.rulesThu Sep 7 16:30:40 2006 +++ b/Make.rulesFri Sep 8 09:03:33 2006 @@ -31,6 +31,10 @@ prefix = /usr endif +lib=lib +libdir=$(prefix)/$(lib) +datadir=$(p

[linux-dvb] [patch 1/6] honor DESTDIR and libdir in order to ease rpm builds

2006-09-07 Thread Ludwig Nussel
ileWed Sep 6 16:17:34 2006 +++ b/util/scan/MakefileThu Sep 7 14:45:13 2006 @@ -15,6 +15,7 @@ removing = atsc_psip_section.c atsc_psip_section.h CPPFLAGS += -I../../include +CFLAGS += -DDATADIR=\"$(datadir)\" .PHONY: all -- (o_ Ludwig Nussel //\ SUSE LINUX

[linux-dvb] [patch 0/6] misc dvb-apps fixes

2006-09-07 Thread Ludwig Nussel
Hi, I found some glitches while trying to package the current hg repositoy. Patches follow. cu Ludwig -- (o_ Ludwig Nussel //\ SUSE LINUX Products GmbH, Development V_/_ http://www.suse.de/ ___ linux-dvb mailing list linux-dvb@linuxtv.org

[linux-dvb] [patch 6/6] do not install evtest, its provided by input-utils already

2006-09-07 Thread Ludwig Nussel
= $(binaries) +inst_bin = av7110_loadkeys removing = input_keynames.h -- (o_ Ludwig Nussel //\ SUSE LINUX Products GmbH, Development V_/_ http://www.suse.de/ ___ linux-dvb mailing list linux-dvb@linuxtv.org http://www.linuxtv.org/cgi-bin/mailman

[linux-dvb] [patch 4/6] remove useless define of printf

2006-09-07 Thread Ludwig Nussel
;req, &req)) ; } - -#define printf(x...) - int diseqc_send_msg (int fd, fe_sec_voltage_t v, struct diseqc_cmd **cmd, fe_sec_tone_mode_t t, fe_sec_mini_cmd_t b) -- (o_ Ludwig Nussel //\ SUSE LINUX Products GmbH, Development V_/_ http://www

[linux-dvb] [patch 2/6] install data files again

2006-09-07 Thread Ludwig Nussel
do test -d channels-conf/$$d || continue ; echo . $$d . \ + ; install -m755 -d $(DESTDIR)$(datadir)/dvb/zap/$$d/ \ + ; install -m644 `find channels-conf/$$d -type f` $(DESTDIR)$(datadir)/dvb/zap/$$d/ ; done -- (o_ Ludwig Nussel //\ SUSE LINUX Products Gmb

[linux-dvb] [patch 5/6] use -H for human readable output

2006-09-07 Thread Ludwig Nussel
case 'f': frontend = strtoul(optarg, NULL, 0); break; - case 'r': + case 'H': human_readable = 1; break; } -- (o_ Ludwig Nussel //\ SUSE LINUX Produ

[linux-dvb] Re: SuSE9.1 / NOVA-t USB problems

2004-06-17 Thread Ludwig Nussel
Dr M Price wrote: > I'm struggling with my Hauppauge budget USB box. > I'm trying to use it with SuSE 9.1 (uname -r = 2.6.4-52-smp). > Having read that the 2.6 kernel has built-in dvb support, I tried it > straight out of the box. It didn't hotplug correctly (the light at > the front of the box li

[linux-dvb] Re: SuSE 9.1 + Hauppauge Nexus-S

2004-06-06 Thread Ludwig Nussel
[EMAIL PROTECTED] wrote: > I am an absolute newcomer to digital TV ( Satellite TV ) and bought > recently a Hauppauge Nexus-S card. I would like to install it on SuSE > linux 9.1. I have looked at the archive, and found also a lot of articles > about this subject. Anyway I found also someone spe

[linux-dvb] Re: linuxtv-dvb-apps-1.1.0 install patches

2004-02-14 Thread Ludwig Nussel
Johannes Stezenbach wrote: > Guido Draheim wrote: > > Furthermore, I did add install-etc extra targets that do not only > > handle bindir files - there are some files like *.rc5 and the > > series of channels.conf-* that should be present in the non-source > > installation to be usable by users. At

[linux-dvb] Re: [patch] dvb-apps CFLAGS

2004-02-05 Thread Ludwig Nussel
Ludwig Nussel wrote: > The following patch for dvb-apps allows to override CFLAGS with > custom optimizations without losing include paths. missed dvbdate ... Index: linuxtv-dvb-apps-1.1.0/util/dvbdate/Makefile === --- linux

[linux-dvb] [patch] dvb-apps CFLAGS

2004-02-05 Thread Ludwig Nussel
Hi, The following patch for dvb-apps allows to override CFLAGS with custom optimizations without losing include paths. %patch Index: linuxtv-dvb-apps-1.1.0/test/Makefile === --- linuxtv-dvb-apps-1.1.0.orig/test/Makefile 2004-01-17