diff options
author | tron <tron> | 2001-04-23 20:37:31 +0000 |
---|---|---|
committer | tron <tron> | 2001-04-23 20:37:31 +0000 |
commit | a61f218786a7ea559d7688fa080022c9fabe3b20 (patch) | |
tree | c35242cc8a743f8b63a74d402e260945fdc1a47e /misc/nxtvepg | |
parent | 6edfd7c6db868a15e838ee8bdaada0da6d4aa97a (diff) | |
download | pkgsrc-a61f218786a7ea559d7688fa080022c9fabe3b20.tar.gz |
Update "nxtvepg" package to version 0.5.0. Changes since version 0.4.5:
- The main window is now vertically resizable. The proportions of
the program listbox and the info text can be adjusted with a
"panning" button (slider).
- Added a button called "Tune TV" in the main window to
remote-control xawtv (UNIX only).
- Added network name configuration dialog to synchronize names with
the .xawtv configuration file and to allow consistant
network naming across all providers.
- Allow using channel assignments in .xawtv to speed up the EPG
scan (UNIX only).
- Added "Update filter shortcut" dialog to the filter menu to
simplify changing existing shortcuts.
- Made handling of filter shortcut dialog fool-proof.
- Added filter settings description to the shortcut configuration
dialog. Removed the filter combination checkboxes (were disabled
anyway).
- Added acquisition mode "external" for Composite/S-Video input
source (or unknown win32 tuner types). Win32: suppressed
obsolete acq mode "passive".
- Fixed command line option -rcfile for Win32: backslash chars in
path vanished.
- Restructured software to simplify reuse as library in other
projects.
This update was contributed by Mario Kemper in PR pkg/12717.
Diffstat (limited to 'misc/nxtvepg')
-rw-r--r-- | misc/nxtvepg/Makefile | 4 | ||||
-rw-r--r-- | misc/nxtvepg/distinfo | 8 | ||||
-rw-r--r-- | misc/nxtvepg/patches/patch-ae | 12 |
3 files changed, 12 insertions, 12 deletions
diff --git a/misc/nxtvepg/Makefile b/misc/nxtvepg/Makefile index 589c69f786c..933308f16d0 100644 --- a/misc/nxtvepg/Makefile +++ b/misc/nxtvepg/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.4 2001/04/13 16:09:03 tron Exp $ +# $NetBSD: Makefile,v 1.5 2001/04/23 20:37:31 tron Exp $ -DISTNAME= nxtvepg-0.4.5 +DISTNAME= nxtvepg-0.5.0 CATEGORIES= misc MASTER_SITES= http://www.nefkom.net/tomzo/prj/nxtvepg/src/ diff --git a/misc/nxtvepg/distinfo b/misc/nxtvepg/distinfo index 0ac61395256..d2a18678dcf 100644 --- a/misc/nxtvepg/distinfo +++ b/misc/nxtvepg/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.2 2001/04/20 13:52:16 agc Exp $ +$NetBSD: distinfo,v 1.3 2001/04/23 20:37:31 tron Exp $ -SHA1 (nxtvepg-0.4.5.tar.gz) = bd1349103a6e7bd7b562894f93af1d01e11944e8 -Size (nxtvepg-0.4.5.tar.gz) = 293829 bytes +SHA1 (nxtvepg-0.5.0.tar.gz) = a3ed2c251bc1920ff2cf7caea3d02d6bede0343a +Size (nxtvepg-0.5.0.tar.gz) = 310648 bytes SHA1 (patch-aa) = f495cf6eda409ce414c8df93c28dd7de416aee2d SHA1 (patch-ab) = cef1b0ec91248f2115aabed380c336b3feda9cba SHA1 (patch-ac) = 2a72e3ea0abdf0ec8e1514c7067576448bc82cdc SHA1 (patch-ad) = 8c2000b19adb73082de8990a5b15b8ea8ede54b1 -SHA1 (patch-ae) = 14c0667239699f856767629212479c8530f13f84 +SHA1 (patch-ae) = d4e2411277d0e2eab54b1b8d0ee3e86e2deacee3 diff --git a/misc/nxtvepg/patches/patch-ae b/misc/nxtvepg/patches/patch-ae index 9ff9cc5954c..38940fad493 100644 --- a/misc/nxtvepg/patches/patch-ae +++ b/misc/nxtvepg/patches/patch-ae @@ -1,16 +1,16 @@ -$NetBSD: patch-ae,v 1.1.1.1 2001/02/18 19:17:24 tron Exp $ +$NetBSD: patch-ae,v 1.2 2001/04/23 20:37:32 tron Exp $ ---- epgctl/epgmain.c.orig Sun Feb 11 13:14:54 2001 -+++ epgctl/epgmain.c Sun Feb 18 20:12:55 2001 +--- epgui/epgmain.c.orig Sat Apr 21 21:44:48 2001 ++++ epgui/epgmain.c @@ -104,7 +104,12 @@ - const char *dbdir = "."; + static const char *dbdir = "."; #else static const char *rcfile = "~/.nxtvepgrc"; +#ifdef __NetBSD__ +#include <paths.h> -+ const char *dbdir = _PATH_TMP "nxtvdb"; ++static const char *dbdir = _PATH_TMP "nxtvdb"; +#else - const char *dbdir = "/usr/tmp/nxtvdb"; + static const char *dbdir = "/usr/tmp/nxtvdb"; +#endif #endif static int videoCardIndex = -1; |