Remove ohphone.
It is completely unmaintained, barely working and prevent from updating the whole VoIP gang (ptlib, h323plus, opal, gnugk, ekiga) which I'm working on.
This commit is contained in:
parent
7cf1042ed0
commit
195bc17e44
@ -1,45 +0,0 @@
|
||||
# $OpenBSD: Makefile,v 1.7 2009/01/17 14:14:14 ajacoutot Exp $
|
||||
|
||||
SHARED_ONLY= Yes
|
||||
|
||||
COMMENT= H.323 IP telephony endpoint
|
||||
|
||||
DISTNAME= ohphone-1.4.5
|
||||
PKGNAME= ${DISTNAME}p2v0
|
||||
CATEGORIES= telephony net
|
||||
|
||||
MAINTAINER= Antoine Jacoutot <ajacoutot@openbsd.org>
|
||||
|
||||
# MPL
|
||||
PERMIT_PACKAGE_CDROM= Yes
|
||||
PERMIT_PACKAGE_FTP= Yes
|
||||
PERMIT_DISTFILES_CDROM= Yes
|
||||
PERMIT_DISTFILES_FTP= Yes
|
||||
|
||||
MASTER_SITES= http://www.bsdfrog.org/OpenBSD/distfiles/
|
||||
|
||||
WANTLIB= SDL X11 Xext avutil c crypto expat lber ldap ldap_r m \
|
||||
pt pthread sasl2 ssl stdc++
|
||||
|
||||
LIB_DEPENDS= h323.>=2::net/openh323
|
||||
|
||||
USE_X11= Yes
|
||||
USE_GMAKE= Yes
|
||||
ALL_TARGET= optshared
|
||||
NO_REGRESS= Yes
|
||||
|
||||
MAKE_ENV+= CC=${CC} CPLUS=${CXX} \
|
||||
OPENH323DIR=${LOCALBASE}/share/openh323/ \
|
||||
PWLIBDIR=`ptlib-config --pwlibdir` \
|
||||
SYSLIBDIR=`ptlib-config --libdir` \
|
||||
STDCCFLAGS="-I${LOCALBASE}/include/openh323"
|
||||
|
||||
post-install:
|
||||
${INSTALL_MAN_DIR} ${PREFIX}/man/man1/
|
||||
${INSTALL_MAN} ${WRKSRC}/ohphone.1 ${PREFIX}/man/man1/
|
||||
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/ohphone
|
||||
.for i in ReadMe.txt check_listen.awk regtest stresstest
|
||||
${INSTALL_DATA} ${WRKSRC}/${i} ${PREFIX}/share/doc/ohphone
|
||||
.endfor
|
||||
|
||||
.include <bsd.port.mk>
|
@ -1,5 +0,0 @@
|
||||
MD5 (ohphone-1.4.5.tar.gz) = hzKEV74KRNiAWk1OEAVwkg==
|
||||
RMD160 (ohphone-1.4.5.tar.gz) = SsVPg0A3Ff0T+0LRJDF7jjU7rq0=
|
||||
SHA1 (ohphone-1.4.5.tar.gz) = LycuPYhw0Isgcq5qQB1TcoeoG/I=
|
||||
SHA256 (ohphone-1.4.5.tar.gz) = YuMDg0HZQHANGG9o//mks4yJHXr8ZWLlr6nDF4m5bT0=
|
||||
SIZE (ohphone-1.4.5.tar.gz) = 75743
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-ReadMe_txt,v 1.1 2008/03/15 17:40:38 ajacoutot Exp $
|
||||
--- ReadMe.txt.orig Tue Mar 4 17:44:20 2008
|
||||
+++ ReadMe.txt Tue Mar 4 17:44:35 2008
|
||||
@@ -139,7 +139,7 @@ OPTIONS
|
||||
Set the record (microphone) volume for Quicknet devices
|
||||
|
||||
-s, --sound device
|
||||
- Select the sound input and output device. The default value is /dev/dsp0.
|
||||
+ Select the sound input and output device. The default value is /dev/audio0.
|
||||
|
||||
--sound-in, --sound-out device
|
||||
Select the sound input or output device seperately. Only needed if
|
@ -1,48 +0,0 @@
|
||||
$OpenBSD: patch-main_cxx,v 1.2 2008/03/15 17:40:38 ajacoutot Exp $
|
||||
--- main.cxx.orig Tue Mar 4 17:15:04 2008
|
||||
+++ main.cxx Tue Mar 4 17:16:05 2008
|
||||
@@ -184,6 +184,8 @@
|
||||
*/
|
||||
|
||||
#include <ptlib.h>
|
||||
+#include <ptlib/sound.h>
|
||||
+#include <ptlib/video.h>
|
||||
#include <ptclib/random.h>
|
||||
|
||||
#include "main.h"
|
||||
@@ -224,7 +226,7 @@
|
||||
#include "xlibvid.h"
|
||||
#endif
|
||||
|
||||
-#ifdef P_SDL
|
||||
+#if P_SDL
|
||||
#include <ptclib/vsdl.h>
|
||||
#endif
|
||||
|
||||
@@ -554,7 +556,7 @@ void OhPhone::Main()
|
||||
" : svga256 256 colour VGA (Linux only)\n"
|
||||
" : svga full colour VGA (Linux only)\n"
|
||||
#endif
|
||||
-#ifdef P_SDL
|
||||
+#if P_SDL
|
||||
" : sdl Use Simple DirectMedia Library\n"
|
||||
#endif
|
||||
#ifdef HAS_X11
|
||||
@@ -855,7 +857,7 @@ BOOL MyH323EndPoint::Initialise(PConfigArgs & args, in
|
||||
&& !(videoReceiveDevice *= "svga")
|
||||
&& !(videoReceiveDevice *= "svga256")
|
||||
#endif
|
||||
-#ifdef P_SDL
|
||||
+#if P_SDL
|
||||
&& !(videoReceiveDevice *= "sdl")
|
||||
#endif
|
||||
#ifdef HAS_X11
|
||||
@@ -2065,7 +2067,7 @@ BOOL MyH323EndPoint::OpenVideoChannel(H323Connection &
|
||||
if ((!isEncoding) || videoLocal)
|
||||
PAssert(!videoReceiveDevice.IsEmpty(), "video display created without device type");
|
||||
|
||||
-#ifdef P_SDL
|
||||
+#if P_SDL
|
||||
// Dump received video to SDL
|
||||
if (videoReceiveDevice *= "sdl")
|
||||
display = new PSDLVideoDevice();
|
@ -1,12 +0,0 @@
|
||||
$OpenBSD: patch-ohphone_1,v 1.1.1.1 2007/04/27 13:36:09 ajacoutot Exp $
|
||||
--- ohphone.1.orig Mon Apr 16 21:14:57 2007
|
||||
+++ ohphone.1 Mon Apr 16 21:15:19 2007
|
||||
@@ -172,7 +172,7 @@ If the \-\-ringfile option is specified, this option d
|
||||
|
||||
.TP
|
||||
\fB\-s\fR, \fB\-\-sound\fR device\fR
|
||||
-Select the sound input and output device. The default value is /dev/dsp0.
|
||||
+Select the sound input and output device. The default value is /dev/audio0.
|
||||
|
||||
.TP
|
||||
\fB\-\-sound-mixer\fR device\fR
|
@ -1,11 +0,0 @@
|
||||
$OpenBSD: patch-xlibvid_cxx,v 1.1 2008/03/15 17:40:38 ajacoutot Exp $
|
||||
--- xlibvid.cxx.orig Tue Mar 4 17:16:20 2008
|
||||
+++ xlibvid.cxx Tue Mar 4 17:16:32 2008
|
||||
@@ -88,6 +88,7 @@
|
||||
#include <sys/time.h>
|
||||
#include <unistd.h>
|
||||
#include <ptlib.h>
|
||||
+#include <ptlib/video.h>
|
||||
#include <string.h>
|
||||
#include "xlibvid.h"
|
||||
|
@ -1,5 +0,0 @@
|
||||
Ohphone is a fully functional H.323 endpoint command line application
|
||||
that can be used to listen for incoming H.323 calls, or to initiate a
|
||||
call to a remote host. It includes a simple menu that allows
|
||||
interactive control of functions, as well as allowing control of most
|
||||
dialing and answer functions via a phone handset.
|
@ -1,8 +0,0 @@
|
||||
@comment $OpenBSD: PLIST,v 1.3 2009/01/17 14:14:14 ajacoutot Exp $
|
||||
@bin bin/ohphone
|
||||
@man man/man1/ohphone.1
|
||||
share/doc/ohphone/
|
||||
share/doc/ohphone/ReadMe.txt
|
||||
share/doc/ohphone/check_listen.awk
|
||||
share/doc/ohphone/regtest
|
||||
share/doc/ohphone/stresstest
|
Loading…
Reference in New Issue
Block a user