2de817e9fd
Changes from 0.5.0 to 0.5.1 - monitor the _XAWTV_STATION property on the xawtv window and VPS/PDC (during EPG acquisition) to detect channel changes (new source module epgui/xawtv.c; communication with xawtv is now done directly via X11 calls, and no longer uses the xawtv-remote utility) - after a channel change, optionally set the programme listing's cursor on the programme currently running on this channel and/or display the programme title and running time information inside xawtv, either in a popup, as overlay (requires xfree4 and the XVideo extension) or window title message. - improved handling of the network name configuration dialog by addition of a "Closest match in xawtv" button. - fix: during refresh, the cursor now remains on the same start time and network - fix: short info text view is no longer set to line 1.0 during every update - fix: possible crash due to reference to freed memory when acq timescale popup was open & bad reception (block discarded due to parity errors) - fix: in cyclic or follow-ui acquisition modes when acquisition was forced passive on a non-provider channel (e.g. by a busy video device) acq control did not automatically switch to active when the device was freed. - fix: network name configuration: name selection from the provider listbox was handled incorrectly for networks which were not covered by all providers, so that another than the selected name was actually used. - added support for multi-network channel names (e.g. [Arte / Kinderkanal]) to network name configuration: split xawtv station names around '/' and use all resulting segments for matching with Nextview network names. - added support for Turkish charset in national option table; 6 characters which are not in latin-1 are replaced by their ASCII counterparts. - fixed two memory leaks in the EPG scan and wrong handling of the EPG MIP entry, which slowed down the scan on several channels. - changed Makefile.win32 to use gcc/mingw32 for compilation. The supplied Tcl/Tk libraries are compiled with gcc too (on NT using cygwin)
30 lines
742 B
Makefile
30 lines
742 B
Makefile
# $NetBSD: Makefile,v 1.7 2001/06/09 15:14:25 magick Exp $
|
|
|
|
DISTNAME= nxtvepg-0.5.1
|
|
CATEGORIES= misc
|
|
MASTER_SITES= http://www.nefkom.net/tomzo/prj/nxtvepg/src/
|
|
|
|
MAINTAINER= magick@zhadum.de
|
|
HOMEPAGE= http://nxtvepg.tripod.com/
|
|
COMMENT= NextView EPG decoder
|
|
|
|
DEPENDS+= tk>=8.3.2:../../x11/tk
|
|
|
|
ONLY_FOR_PLATFORM= NetBSD-1.4[Y-Z]-* NetBSD-1.4Z[A-Z]-* \
|
|
NetBSD-1.5_ALPHA-* NetBSD-1.[5-9]*-*
|
|
|
|
NO_SRC_ON_FTP= Already in MASTER_SITE_LOCAL
|
|
|
|
USE_X11BASE= yes
|
|
USE_PERL5= yes
|
|
USE_GMAKE= yes
|
|
|
|
MAKE_ENV+= X11PREFIX=${X11PREFIX}
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC}; \
|
|
${MV} -f pod2help.pl pod2help.pl.orig; \
|
|
${SED} -e "s|@PERL5@|${PERL5}|g" pod2help.pl.orig > pod2help.pl; \
|
|
${CHMOD} +x ${WRKSRC}/pod2help.pl
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|