mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-24 04:33:24 +00:00
Update to 0.46. The changelog speaks:
Changes from 0.45-0.46 ---------------------- - Event handling fixes for fvwm95 - Inval saved ximage when contin capture started (for restacking refreshes) - Fix out-of-date internal app-defaults values - Fixed mem leaks that add up capturing videos - Turn off hardware cursor over video window when continuous video is on - Restore video mode on normal exit
This commit is contained in:
parent
f51d0003d3
commit
273a9e51e0
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=9128
@ -1,12 +1,12 @@
|
||||
# New ports collection makefile for: fxtv
|
||||
# Version required: 0.44
|
||||
# Version required: 0.46
|
||||
# Date created: Sun Sep 7 17:55:07 EDT 1997
|
||||
# Whom: Randall Hopper <rhh@ct.picker.com>
|
||||
#
|
||||
# $Id: Makefile,v 1.2 1997/10/11 20:39:18 markm Exp $
|
||||
# $Id: Makefile,v 1.3 1997/12/01 08:10:46 tg Exp $
|
||||
#
|
||||
|
||||
DISTNAME= fxtv-0.45
|
||||
DISTNAME= fxtv-0.46
|
||||
CATEGORIES= graphics x11
|
||||
MASTER_SITES= http://multiverse.com/~rhh/fxtv/
|
||||
EXTRACT_SUFX= .tgz
|
||||
@ -16,11 +16,14 @@ MAINTAINER= rhh@ct.picker.com
|
||||
LIB_DEPENDS= tiff34\\.1\\.:${PORTSDIR}/graphics/tiff34 \
|
||||
Xaw3d\\.6\\.:${PORTSDIR}/x11/Xaw3d \
|
||||
Xpm\\.4\\.:${PORTSDIR}/graphics/xpm
|
||||
RUN_DEPENDS= sox:${PORTSDIR}/audio/sox \
|
||||
mpg123:${PORTSDIR}/audio/mpg123 \
|
||||
mpeg_musicin:${PORTSDIR}/audio/mpegaudio \
|
||||
mpeg_encode:${PORTSDIR}/graphics/mpeg_encode \
|
||||
mplex:${PORTSDIR}/graphics/mplex
|
||||
|
||||
# This program does not actually depend on the below, but they are pretty
|
||||
# useful if you are into digital video recording and playback.
|
||||
#RUN_DEPENDS= sox:${PORTSDIR}/audio/sox \
|
||||
# mpg123:${PORTSDIR}/audio/mpg123 \
|
||||
# mpeg_musicin:${PORTSDIR}/audio/mpegaudio \
|
||||
# mpeg_encode:${PORTSDIR}/graphics/mpeg_encode \
|
||||
# mplex:${PORTSDIR}/graphics/mplex
|
||||
|
||||
USE_X11= yes
|
||||
USE_GMAKE= yes
|
||||
|
@ -1 +1 @@
|
||||
MD5 (fxtv-0.45.tgz) = 1c0a1b57f0f2da05974b4a171f6fecde
|
||||
MD5 (fxtv-0.46.tgz) = d3d3dead4897dd1757c44272b9c8f3af
|
||||
|
@ -1,14 +1,14 @@
|
||||
--- Makefile.orig Sat Oct 11 02:42:57 1997
|
||||
+++ Makefile Thu Nov 27 10:42:46 1997
|
||||
--- Makefile.orig Wed Nov 5 03:14:25 1997
|
||||
+++ Makefile Thu Dec 18 17:53:26 1997
|
||||
@@ -5,13 +5,14 @@
|
||||
X11BASE = /usr/X11R6
|
||||
|
||||
override CF_VERS = -DVERS_STR=\"0.45\"
|
||||
override CF_VERS = -DVERS_STR=\"0.46\"
|
||||
-override INC = -I$(X11BASE)/include -I/usr/local/include
|
||||
+override INC = -I$(X11BASE)/include -I/usr/local/include \
|
||||
+ -I/usr/local/include/tiff34
|
||||
override LD_INC = -L$(X11BASE)/lib -L/usr/local/lib
|
||||
override CFLAGS = -m486 $(INC) $(CF_VERS)
|
||||
override CFLAGS = -O2 -m486 $(INC) $(CF_VERS)
|
||||
#override CFLAGS = -g $(INC) $(CF_VERS)
|
||||
override LDFLAGS = $(LD_INC)
|
||||
#override LDFLAGS = -g $(LD_INC)
|
||||
|
@ -1 +1 @@
|
||||
X-based TV-Card Display and Capture Application (for use with bt848 driver)
|
||||
X-based TV Display and Capture (for use with bt848 driver)
|
||||
|
@ -1,6 +1,7 @@
|
||||
bin/fxtv
|
||||
lib/X11/app-defaults/Fxtv
|
||||
lib/X11/fxtv/README
|
||||
@unexec rm -rf %B
|
||||
lib/X11/fxtv/bitmaps/mini-camera.xpm
|
||||
lib/X11/fxtv/bitmaps/mini-down.xbm
|
||||
lib/X11/fxtv/bitmaps/mini-resize.xpm
|
||||
|
@ -1,12 +1,12 @@
|
||||
# New ports collection makefile for: fxtv
|
||||
# Version required: 0.44
|
||||
# Version required: 0.46
|
||||
# Date created: Sun Sep 7 17:55:07 EDT 1997
|
||||
# Whom: Randall Hopper <rhh@ct.picker.com>
|
||||
#
|
||||
# $Id: Makefile,v 1.2 1997/10/11 20:39:18 markm Exp $
|
||||
# $Id: Makefile,v 1.3 1997/12/01 08:10:46 tg Exp $
|
||||
#
|
||||
|
||||
DISTNAME= fxtv-0.45
|
||||
DISTNAME= fxtv-0.46
|
||||
CATEGORIES= graphics x11
|
||||
MASTER_SITES= http://multiverse.com/~rhh/fxtv/
|
||||
EXTRACT_SUFX= .tgz
|
||||
@ -16,11 +16,14 @@ MAINTAINER= rhh@ct.picker.com
|
||||
LIB_DEPENDS= tiff34\\.1\\.:${PORTSDIR}/graphics/tiff34 \
|
||||
Xaw3d\\.6\\.:${PORTSDIR}/x11/Xaw3d \
|
||||
Xpm\\.4\\.:${PORTSDIR}/graphics/xpm
|
||||
RUN_DEPENDS= sox:${PORTSDIR}/audio/sox \
|
||||
mpg123:${PORTSDIR}/audio/mpg123 \
|
||||
mpeg_musicin:${PORTSDIR}/audio/mpegaudio \
|
||||
mpeg_encode:${PORTSDIR}/graphics/mpeg_encode \
|
||||
mplex:${PORTSDIR}/graphics/mplex
|
||||
|
||||
# This program does not actually depend on the below, but they are pretty
|
||||
# useful if you are into digital video recording and playback.
|
||||
#RUN_DEPENDS= sox:${PORTSDIR}/audio/sox \
|
||||
# mpg123:${PORTSDIR}/audio/mpg123 \
|
||||
# mpeg_musicin:${PORTSDIR}/audio/mpegaudio \
|
||||
# mpeg_encode:${PORTSDIR}/graphics/mpeg_encode \
|
||||
# mplex:${PORTSDIR}/graphics/mplex
|
||||
|
||||
USE_X11= yes
|
||||
USE_GMAKE= yes
|
||||
|
@ -1 +1 @@
|
||||
MD5 (fxtv-0.45.tgz) = 1c0a1b57f0f2da05974b4a171f6fecde
|
||||
MD5 (fxtv-0.46.tgz) = d3d3dead4897dd1757c44272b9c8f3af
|
||||
|
@ -1,14 +1,14 @@
|
||||
--- Makefile.orig Sat Oct 11 02:42:57 1997
|
||||
+++ Makefile Thu Nov 27 10:42:46 1997
|
||||
--- Makefile.orig Wed Nov 5 03:14:25 1997
|
||||
+++ Makefile Thu Dec 18 17:53:26 1997
|
||||
@@ -5,13 +5,14 @@
|
||||
X11BASE = /usr/X11R6
|
||||
|
||||
override CF_VERS = -DVERS_STR=\"0.45\"
|
||||
override CF_VERS = -DVERS_STR=\"0.46\"
|
||||
-override INC = -I$(X11BASE)/include -I/usr/local/include
|
||||
+override INC = -I$(X11BASE)/include -I/usr/local/include \
|
||||
+ -I/usr/local/include/tiff34
|
||||
override LD_INC = -L$(X11BASE)/lib -L/usr/local/lib
|
||||
override CFLAGS = -m486 $(INC) $(CF_VERS)
|
||||
override CFLAGS = -O2 -m486 $(INC) $(CF_VERS)
|
||||
#override CFLAGS = -g $(INC) $(CF_VERS)
|
||||
override LDFLAGS = $(LD_INC)
|
||||
#override LDFLAGS = -g $(LD_INC)
|
||||
|
@ -1 +1 @@
|
||||
X-based TV-Card Display and Capture Application (for use with bt848 driver)
|
||||
X-based TV Display and Capture (for use with bt848 driver)
|
||||
|
@ -1,6 +1,7 @@
|
||||
bin/fxtv
|
||||
lib/X11/app-defaults/Fxtv
|
||||
lib/X11/fxtv/README
|
||||
@unexec rm -rf %B
|
||||
lib/X11/fxtv/bitmaps/mini-camera.xpm
|
||||
lib/X11/fxtv/bitmaps/mini-down.xbm
|
||||
lib/X11/fxtv/bitmaps/mini-resize.xpm
|
||||
|
Loading…
Reference in New Issue
Block a user