5b2bcad773
- 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.
29 lines
771 B
Makefile
29 lines
771 B
Makefile
# $NetBSD: Makefile,v 1.5 2001/04/23 20:37:31 tron Exp $
|
|
|
|
DISTNAME= nxtvepg-0.5.0
|
|
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:
|
|
@${SED} -e 's|@localbase@|'${LOCALBASE}/bin'|' < ${WRKSRC}/pod2help.pl > ${WRKSRC}/pod2help.pl.new && \
|
|
${MV} ${WRKSRC}/pod2help.pl.new ${WRKSRC}/pod2help.pl && \
|
|
${CHMOD} +x ${WRKSRC}/pod2help.pl
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|