diff options
author | magick <magick> | 2003-01-05 22:44:42 +0000 |
---|---|---|
committer | magick <magick> | 2003-01-05 22:44:42 +0000 |
commit | e667ccf8e73b225f3f47c0e3f8a7b7b3ca4ed94e (patch) | |
tree | 9babb5fad210dc607147c34170ee0396463193e7 /misc/nxtvepg | |
parent | 7123810bedd4c24e0d921cbcd9e1d8aa5496ecc0 (diff) | |
download | pkgsrc-e667ccf8e73b225f3f47c0e3f8a7b7b3ca4ed94e.tar.gz |
Fix a little bug which slipped in while porting it to FreeBSD.
Fix submitted by the FreeBSD porter.
Bumping it to nb1
Diffstat (limited to 'misc/nxtvepg')
-rw-r--r-- | misc/nxtvepg/Makefile | 3 | ||||
-rw-r--r-- | misc/nxtvepg/distinfo | 3 | ||||
-rw-r--r-- | misc/nxtvepg/patches/patch-af | 13 |
3 files changed, 17 insertions, 2 deletions
diff --git a/misc/nxtvepg/Makefile b/misc/nxtvepg/Makefile index b4ecac234af..3d766a27c22 100644 --- a/misc/nxtvepg/Makefile +++ b/misc/nxtvepg/Makefile @@ -1,6 +1,7 @@ -# $NetBSD: Makefile,v 1.21 2003/01/04 18:25:10 cjep Exp $ +# $NetBSD: Makefile,v 1.22 2003/01/05 22:44:42 magick Exp $ DISTNAME= nxtvepg-2.4.2 +PKGREVISION= 1 CATEGORIES= misc MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nxtvepg/} diff --git a/misc/nxtvepg/distinfo b/misc/nxtvepg/distinfo index f74c0a4f895..88ee3248a7f 100644 --- a/misc/nxtvepg/distinfo +++ b/misc/nxtvepg/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.18 2002/12/15 11:28:54 magick Exp $ +$NetBSD: distinfo,v 1.19 2003/01/05 22:44:43 magick Exp $ SHA1 (nxtvepg-2.4.2.tar.gz) = 8dd312bc1f16ed4fd300b273e6629a11a798ba73 Size (nxtvepg-2.4.2.tar.gz) = 761170 bytes @@ -7,3 +7,4 @@ SHA1 (patch-ab) = 634cfd179fd1043e3272ce27836a9052b199d1f4 SHA1 (patch-ac) = 7eb5f7b443be01ecd8e367f5244be3509e0cb2ae SHA1 (patch-ad) = ee64fd67a60783f1b2112771abdb5d1eb5a8b2a1 SHA1 (patch-ae) = 9502d2c684748d7580650098956bf2e67615c9b2 +SHA1 (patch-af) = 331c778697864c105e1cc87692b8efbafa0b6490 diff --git a/misc/nxtvepg/patches/patch-af b/misc/nxtvepg/patches/patch-af new file mode 100644 index 00000000000..b15c832fbf6 --- /dev/null +++ b/misc/nxtvepg/patches/patch-af @@ -0,0 +1,13 @@ +$NetBSD: patch-af,v 1.4 2003/01/05 22:44:45 magick Exp $ + +--- epgvbi/btdrv4linux.c.orig Mon Nov 25 20:30:52 2002 ++++ epgvbi/btdrv4linux.c +@@ -213,7 +213,7 @@ + if (ioctl(fd,METEORSINPUT,&input_id)==0) { + pVbiBuf->tv_cards[i].inputs[j].inputID=input_id; + pVbiBuf->tv_cards[i].inputs[j].isTuner=(input_id==METEOR_DEV1); +- strncpy((char*)pVbiBuf->tv_cards[i].inputs[j].name,input_name, DEV_MAX_NAME_LEN); ++ strncpy((char*)pVbiBuf->tv_cards[i].inputs[j].name,input_name, 20); + pVbiBuf->tv_cards[i].inputs[j].isAvailable=1; + } + else |