diff options
author | shattered <shattered@pkgsrc.org> | 2012-05-26 10:13:29 +0000 |
---|---|---|
committer | shattered <shattered@pkgsrc.org> | 2012-05-26 10:13:29 +0000 |
commit | 1f03c89bfd58c2ba3b37b442a3f2d54b6c9a837b (patch) | |
tree | 0bee8633b5817cee4b8ae2953587e574cbf0de6a /graphics | |
parent | e16fd2ca99acea4d845809020eb589fd5c99b865 (diff) | |
download | pkgsrc-1f03c89bfd58c2ba3b37b442a3f2d54b6c9a837b.tar.gz |
PR/30432 -- Add command-line options to set TV alignment. Patch taken
from upstream tracker.
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/nvtv/Makefile | 4 | ||||
-rw-r--r-- | graphics/nvtv/distinfo | 5 | ||||
-rw-r--r-- | graphics/nvtv/patches/patch-ab | 2 | ||||
-rw-r--r-- | graphics/nvtv/patches/patch-ad | 17 |
4 files changed, 24 insertions, 4 deletions
diff --git a/graphics/nvtv/Makefile b/graphics/nvtv/Makefile index 1e11f6c32a0..cd91e761198 100644 --- a/graphics/nvtv/Makefile +++ b/graphics/nvtv/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.18 2012/03/03 00:13:17 wiz Exp $ +# $NetBSD: Makefile,v 1.19 2012/05/26 10:13:29 shattered Exp $ DISTNAME= nvtv-0.4.7 -PKGREVISION= 14 +PKGREVISION= 15 CATEGORIES= graphics MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=nv-tv-out/} diff --git a/graphics/nvtv/distinfo b/graphics/nvtv/distinfo index acf1a30f41a..fa4783562e0 100644 --- a/graphics/nvtv/distinfo +++ b/graphics/nvtv/distinfo @@ -1,8 +1,9 @@ -$NetBSD: distinfo,v 1.4 2009/03/13 12:48:51 hasso Exp $ +$NetBSD: distinfo,v 1.5 2012/05/26 10:13:29 shattered Exp $ SHA1 (nvtv-0.4.7.tar.gz) = 5ea23e4bfcdf91766ec4600a90866a3ccede252b RMD160 (nvtv-0.4.7.tar.gz) = 866128297f30b36758e8dadfd04a562515bfc8e3 Size (nvtv-0.4.7.tar.gz) = 419564 bytes SHA1 (patch-aa) = 5427ad734597a76f4dbd65d17d95604f0df88d1e -SHA1 (patch-ab) = 672fce1536dc7070f7b44d999c5da0a75b4d4c4c +SHA1 (patch-ab) = 6b4e77864b7f42a6e95020a62d31ad4d569ac6d9 SHA1 (patch-ac) = af493d9f8209203b50379f93146ba6504eb39829 +SHA1 (patch-ad) = ba6d7653d90f5b0b4fa54a4f4eb106a0e7954f88 diff --git a/graphics/nvtv/patches/patch-ab b/graphics/nvtv/patches/patch-ab index 8338192d998..0cc027b1b61 100644 --- a/graphics/nvtv/patches/patch-ab +++ b/graphics/nvtv/patches/patch-ab @@ -1,3 +1,5 @@ +$NetBSD: patch-ab,v 1.4 2012/05/26 10:13:29 shattered Exp $ + --- src/mmio.c.orig 2009-03-12 00:40:06 +0200 +++ src/mmio.c 2009-03-12 00:40:28 +0200 @@ -40,7 +40,7 @@ diff --git a/graphics/nvtv/patches/patch-ad b/graphics/nvtv/patches/patch-ad new file mode 100644 index 00000000000..5a4a02483c3 --- /dev/null +++ b/graphics/nvtv/patches/patch-ad @@ -0,0 +1,17 @@ +$NetBSD: patch-ad,v 1.3 2012/05/26 10:13:29 shattered Exp $ + +PR 34032 + +--- src/nvtv.c.orig 2004-04-20 14:55:17.000000000 +0000 ++++ src/nvtv.c +@@ -172,6 +172,10 @@ static OptIntDecl opt_set_list [] = { + {"ChromaBandwidth", min: 0, max:100, SET_FIELD(chroma_bandwidth)}, + {"Sharpness", min: 0, max:100, SET_FIELD(sharpness)}, + {"CrossColor", min: 0, max:100, SET_FIELD(cross_color)}, ++ {"TVPositionX", min:-100, max:100, SET_FIELD(tv_hoffset)}, ++ {"TVPositionY", min:-100, max:100, SET_FIELD(tv_voffset)}, ++ {"MonitorPositionX", min:-100, max:100, SET_FIELD(mon_hoffset)}, ++ {"MonitorPositionY", min:-100, max:100, SET_FIELD(mon_voffset)}, + {NULL} + }; + |