1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Port of vic version 2.6

This commit is contained in:
Garrett Wollman 1994-12-14 23:01:27 +00:00
parent 75469f18b7
commit d432feb6be
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=573
14 changed files with 246 additions and 0 deletions

20
mbone/vic/Makefile Normal file
View File

@ -0,0 +1,20 @@
# New ports collection makefile for: vic
# Version required: 2.6
# Date created: 14 December 1994
# Whom: wollman
#
# $Id: Makefile,v 1.1.1.1 1994/10/13 00:50:38 wollman Exp $
#
DISTNAME= vic-2.6
DISTFILES= vicsrc-2.6.tar.Z
MASTER_SITES= ftp://ftp.ee.lbl.gov/conferencing/vic/
DEPENDS= ${PORTSDIR}/x11/blt
HAS_CONFIGURE= yes
INSTALL_TARGET= MANDIR=${PREFIX}/man/manl install
pre-install:
mkdir -p ${PREFIX}/man/manl
.include <bsd.port.mk>

31
mbone/vic/files/patch-aa Normal file
View File

@ -0,0 +1,31 @@
*** Makefile.in.orig Wed Dec 14 17:08:44 1994
--- Makefile.in Wed Dec 14 17:23:38 1994
***************
*** 52,55 ****
--- 52,56 ----
#have-cxx#C++ = cxx -g3
#have-cxx#STATIC = -non_shared
+ #have-c++#C++ = c++ -g
#have-gcc#CC = gcc -g
#have-gcc#C++ = g++ -g -Wall
***************
*** 68,71 ****
--- 69,73 ----
TARCMD = tar cfh
CCOPT = -O2
+ MANDIR = /usr/man/man1
#have-vpix#VPIX_DIR = /usr/src/local/vfc-1.0
***************
*** 368,372 ****
install -c vic /usr/local/bin/vic
install -c histtolut /usr/local/bin/histtolut
! install -c vic.1 /usr/man/manl/vic.l
clean:
--- 370,374 ----
install -c vic /usr/local/bin/vic
install -c histtolut /usr/local/bin/histtolut
! install -c vic.1 $(MANDIR)/vic.l
clean:

38
mbone/vic/files/patch-ab Normal file
View File

@ -0,0 +1,38 @@
*** configure.orig Wed Dec 14 16:28:40 1994
--- configure Wed Dec 14 17:08:40 1994
***************
*** 101,109 ****
if ( -x /usr/local/bin/gcc || -x /usr/local/gcc || -x /usr/sww/bin/gcc ) set gcc='-e s/^#have-gcc#//'
if ( -x /bin/cxx ) set cxx='-e s/^#have-cxx#//'
! if ( -d ../blt ) set bltdir=../blt
! if ( -d /usr/src/local/blt ) set bltdir=/usr/src/local/blt
! if ( -d ../blt-1.7 ) set bltdir=../blt-1.7
! if ( -d /usr/src/local/blt-1.7 ) set bltdir=/usr/src/local/blt-1.7
! if ( -d /usr/local/src/blt-1.7 ) set bltdir=/usr/local/src/blt-1.7
if ( ! $?bltdir ) then
echo "configure: can't find blt (tcl/tk extension)"
--- 101,111 ----
if ( -x /usr/local/bin/gcc || -x /usr/local/gcc || -x /usr/sww/bin/gcc ) set gcc='-e s/^#have-gcc#//'
if ( -x /bin/cxx ) set cxx='-e s/^#have-cxx#//'
! if ( -x /usr/bin/c++ ) set cxx='-e s/^#have-c++#//'
! if ( -d ../blt/src ) set bltdir=../blt/src
! if ( -d /usr/src/local/blt/src ) set bltdir=/usr/src/local/blt/src
! if ( -d ../blt-1.7/src ) set bltdir=../blt-1.7/src
! if ( -d /usr/src/local/blt-1.7/src ) set bltdir=/usr/src/local/blt-1.7/src
! if ( -d /usr/local/src/blt-1.7/src ) set bltdir=/usr/local/src/blt-1.7/src
! if ( -f /usr/local/lib/libBLT.a ) set bltdir=/usr/local/lib
if ( ! $?bltdir ) then
echo "configure: can't find blt (tcl/tk extension)"
***************
*** 140,144 ****
set tkdir=`echo $tkdir | sed -e 's/\//\\\//'g`
set tkinc=`echo $tkinc | sed -e 's/\//\\\//'g`
! set bltdir=`echo $bltdir/src | sed -e 's/\//\\\//'g`
sed $gcc $xil $rtvc $vpix $vl $svideo $cxx $dnet $irix5 $static $jv $xv \
-e "s/@TKDIR@/$tkdir/" -e "s/@TKINC@/$tkinc/" \
--- 142,146 ----
set tkdir=`echo $tkdir | sed -e 's/\//\\\//'g`
set tkinc=`echo $tkinc | sed -e 's/\//\\\//'g`
! set bltdir=`echo $bltdir | sed -e 's/\//\\\//'g`
sed $gcc $xil $rtvc $vpix $vl $svideo $cxx $dnet $irix5 $static $jv $xv \
-e "s/@TKDIR@/$tkdir/" -e "s/@TKINC@/$tkinc/" \

24
mbone/vic/files/patch-ac Normal file
View File

@ -0,0 +1,24 @@
*** main.cc.orig Wed Dec 14 17:11:18 1994
--- main.cc Wed Dec 14 17:12:59 1994
***************
*** 464,472 ****
signal(SIGTERM, (void (*)(int ...))adios);
#endif
! #elif defined(__osf__) || defined(__hpux__) || defined(__NetBSD__)
signal(SIGINT, (void (*)(int))adios);
signal(SIGHUP, (void (*)(int))adios);
signal(SIGTERM, (void (*)(int))adios);
! #ifdef __NetBSD__
signal(SIGSYS, (void (*)(int))noXShm);
#endif
--- 464,473 ----
signal(SIGTERM, (void (*)(int ...))adios);
#endif
! #elif defined(__osf__) || defined(__hpux__) || defined(__NetBSD__) || defined(__FreeBSD__)
signal(SIGINT, (void (*)(int))adios);
signal(SIGHUP, (void (*)(int))adios);
signal(SIGTERM, (void (*)(int))adios);
! #if defined(__NetBSD__) /*|| defined(__FreeBSD__)*/
! /* XXX: -DNOSHM should not be conditionalized on just machine(i386) */
signal(SIGSYS, (void (*)(int))noXShm);
#endif

1
mbone/vic/pkg-comment Normal file
View File

@ -0,0 +1 @@
vic (MBONE video tool), version 2.6

5
mbone/vic/pkg-descr Normal file
View File

@ -0,0 +1,5 @@
This package contains the binary release of LBL's `vic' network video
conferencing tool. This version of `vic' was compiled with MIT-SHM
disabled, so performance will be inferior.
NOTE: This kit requires XFree86 3.1, Tk, Tcl, and BLT shared libraries.

4
mbone/vic/pkg-plist Normal file
View File

@ -0,0 +1,4 @@
@cwd /usr/local
bin/vic
bin/histtolut
man/manl/vic.l

20
multimedia/vic/Makefile Normal file
View File

@ -0,0 +1,20 @@
# New ports collection makefile for: vic
# Version required: 2.6
# Date created: 14 December 1994
# Whom: wollman
#
# $Id: Makefile,v 1.1.1.1 1994/10/13 00:50:38 wollman Exp $
#
DISTNAME= vic-2.6
DISTFILES= vicsrc-2.6.tar.Z
MASTER_SITES= ftp://ftp.ee.lbl.gov/conferencing/vic/
DEPENDS= ${PORTSDIR}/x11/blt
HAS_CONFIGURE= yes
INSTALL_TARGET= MANDIR=${PREFIX}/man/manl install
pre-install:
mkdir -p ${PREFIX}/man/manl
.include <bsd.port.mk>

View File

@ -0,0 +1,31 @@
*** Makefile.in.orig Wed Dec 14 17:08:44 1994
--- Makefile.in Wed Dec 14 17:23:38 1994
***************
*** 52,55 ****
--- 52,56 ----
#have-cxx#C++ = cxx -g3
#have-cxx#STATIC = -non_shared
+ #have-c++#C++ = c++ -g
#have-gcc#CC = gcc -g
#have-gcc#C++ = g++ -g -Wall
***************
*** 68,71 ****
--- 69,73 ----
TARCMD = tar cfh
CCOPT = -O2
+ MANDIR = /usr/man/man1
#have-vpix#VPIX_DIR = /usr/src/local/vfc-1.0
***************
*** 368,372 ****
install -c vic /usr/local/bin/vic
install -c histtolut /usr/local/bin/histtolut
! install -c vic.1 /usr/man/manl/vic.l
clean:
--- 370,374 ----
install -c vic /usr/local/bin/vic
install -c histtolut /usr/local/bin/histtolut
! install -c vic.1 $(MANDIR)/vic.l
clean:

View File

@ -0,0 +1,38 @@
*** configure.orig Wed Dec 14 16:28:40 1994
--- configure Wed Dec 14 17:08:40 1994
***************
*** 101,109 ****
if ( -x /usr/local/bin/gcc || -x /usr/local/gcc || -x /usr/sww/bin/gcc ) set gcc='-e s/^#have-gcc#//'
if ( -x /bin/cxx ) set cxx='-e s/^#have-cxx#//'
! if ( -d ../blt ) set bltdir=../blt
! if ( -d /usr/src/local/blt ) set bltdir=/usr/src/local/blt
! if ( -d ../blt-1.7 ) set bltdir=../blt-1.7
! if ( -d /usr/src/local/blt-1.7 ) set bltdir=/usr/src/local/blt-1.7
! if ( -d /usr/local/src/blt-1.7 ) set bltdir=/usr/local/src/blt-1.7
if ( ! $?bltdir ) then
echo "configure: can't find blt (tcl/tk extension)"
--- 101,111 ----
if ( -x /usr/local/bin/gcc || -x /usr/local/gcc || -x /usr/sww/bin/gcc ) set gcc='-e s/^#have-gcc#//'
if ( -x /bin/cxx ) set cxx='-e s/^#have-cxx#//'
! if ( -x /usr/bin/c++ ) set cxx='-e s/^#have-c++#//'
! if ( -d ../blt/src ) set bltdir=../blt/src
! if ( -d /usr/src/local/blt/src ) set bltdir=/usr/src/local/blt/src
! if ( -d ../blt-1.7/src ) set bltdir=../blt-1.7/src
! if ( -d /usr/src/local/blt-1.7/src ) set bltdir=/usr/src/local/blt-1.7/src
! if ( -d /usr/local/src/blt-1.7/src ) set bltdir=/usr/local/src/blt-1.7/src
! if ( -f /usr/local/lib/libBLT.a ) set bltdir=/usr/local/lib
if ( ! $?bltdir ) then
echo "configure: can't find blt (tcl/tk extension)"
***************
*** 140,144 ****
set tkdir=`echo $tkdir | sed -e 's/\//\\\//'g`
set tkinc=`echo $tkinc | sed -e 's/\//\\\//'g`
! set bltdir=`echo $bltdir/src | sed -e 's/\//\\\//'g`
sed $gcc $xil $rtvc $vpix $vl $svideo $cxx $dnet $irix5 $static $jv $xv \
-e "s/@TKDIR@/$tkdir/" -e "s/@TKINC@/$tkinc/" \
--- 142,146 ----
set tkdir=`echo $tkdir | sed -e 's/\//\\\//'g`
set tkinc=`echo $tkinc | sed -e 's/\//\\\//'g`
! set bltdir=`echo $bltdir | sed -e 's/\//\\\//'g`
sed $gcc $xil $rtvc $vpix $vl $svideo $cxx $dnet $irix5 $static $jv $xv \
-e "s/@TKDIR@/$tkdir/" -e "s/@TKINC@/$tkinc/" \

View File

@ -0,0 +1,24 @@
*** main.cc.orig Wed Dec 14 17:11:18 1994
--- main.cc Wed Dec 14 17:12:59 1994
***************
*** 464,472 ****
signal(SIGTERM, (void (*)(int ...))adios);
#endif
! #elif defined(__osf__) || defined(__hpux__) || defined(__NetBSD__)
signal(SIGINT, (void (*)(int))adios);
signal(SIGHUP, (void (*)(int))adios);
signal(SIGTERM, (void (*)(int))adios);
! #ifdef __NetBSD__
signal(SIGSYS, (void (*)(int))noXShm);
#endif
--- 464,473 ----
signal(SIGTERM, (void (*)(int ...))adios);
#endif
! #elif defined(__osf__) || defined(__hpux__) || defined(__NetBSD__) || defined(__FreeBSD__)
signal(SIGINT, (void (*)(int))adios);
signal(SIGHUP, (void (*)(int))adios);
signal(SIGTERM, (void (*)(int))adios);
! #if defined(__NetBSD__) /*|| defined(__FreeBSD__)*/
! /* XXX: -DNOSHM should not be conditionalized on just machine(i386) */
signal(SIGSYS, (void (*)(int))noXShm);
#endif

View File

@ -0,0 +1 @@
vic (MBONE video tool), version 2.6

5
multimedia/vic/pkg-descr Normal file
View File

@ -0,0 +1,5 @@
This package contains the binary release of LBL's `vic' network video
conferencing tool. This version of `vic' was compiled with MIT-SHM
disabled, so performance will be inferior.
NOTE: This kit requires XFree86 3.1, Tk, Tcl, and BLT shared libraries.

4
multimedia/vic/pkg-plist Normal file
View File

@ -0,0 +1,4 @@
@cwd /usr/local
bin/vic
bin/histtolut
man/manl/vic.l