View | Details | Raw Unified | Return to bug 176159 | Differences between
and this patch

Collapse All | Expand All

(-)yate/Makefile (-28 / +39 lines)
Lines 1-14 Link Here
1
# New ports collection makefile for:	yate
1
# Created by: Valery A. Komarov <komarov@valerka.net>
2
# Date created:				2011-04-05
2
# $FreeBSD: ports/net/yate/Makefile$
3
# Whom:					Valery Komarov <komarov@valerka.net>
4
#
5
# $FreeBSD: ports/net/yate/Makefile,v 1.7 2012/11/17 06:00:25 svnexp Exp $
6
3
7
PORTNAME=	yate
4
PORTNAME=	yate
8
PORTVERSION=	4.0.0.p1
5
PORTVERSION=	4.3.0.p1
9
CATEGORIES=	net
6
CATEGORIES=	net
10
MASTER_SITES=	http://yate.null.ro/tarballs/yate4/
7
MASTER_SITES=	http://yate.null.ro/tarballs/yate4/
11
DISTNAME=	yate-4.0.0-1
8
DISTNAME=	yate-4.3.0-1
12
9
13
MAINTAINER=	komarov@valerka.net
10
MAINTAINER=	komarov@valerka.net
14
COMMENT=	Yet Another Telephony Engine
11
COMMENT=	Yet Another Telephony Engine
Lines 40-55 Link Here
40
37
41
MAN8=		yate-config.8 yate.8
38
MAN8=		yate-config.8 yate.8
42
39
43
OPTIONS=	MYSQL "MySQL Database support" off \
40
OPTIONS_DEFINE=	\
44
		PGSQL "PostgreSQL Database support" off \
41
	MYSQL \
45
		SCTP "Stream Control Transmission Protocol" on \
42
	PGSQL \
46
		AMR_NB "AMR Narrow Band encoder (opencore)" off \
43
	SCTP \
47
		ILBC "Enable iLBC codec" off \
44
	AMR_NB \
48
		SPANDSP "Enable Spandsp faxing support" off \
45
	ILBC \
49
		DAHDI "Dahdi driver" off \
46
	SPANDSP \
50
		H323 "H323 software channel/protocol support" off \
47
	DAHDI \
51
		SSL "Enable SSL support" off \
48
	H323 \
52
		ALSA "Enable ALSA channel support" off
49
	SSL \
50
	ALSA
51
52
MYSQL_DESC=	MySQL Database support
53
PGSQL_DESC=	PostgreSQL Database support
54
SCTP_DESC=	Stream Control Transmission Protocol
55
AMR_NB_DESC=	AMR Narrow Band encoder (opencore)
56
ILBC_DESC=	Enable iLBC codec
57
SPANDSP_DESC=	Enable Spandsp faxing support
58
DAHDI_DESC=	Dahdi driver
59
H323_DESC=	H323 software channel/protocol support
60
SSL_DESC=	Enable SSL support
61
ALSA_DESC=	Enable ALSA channel support
62
63
OPTIONS_DEFAULT=	SCTP
53
64
54
SUB_FILES=	pkg-message
65
SUB_FILES=	pkg-message
55
USE_RC_SUBR=	yate
66
USE_RC_SUBR=	yate
Lines 59-65 Link Here
59
70
60
.include <bsd.port.pre.mk>
71
.include <bsd.port.pre.mk>
61
72
62
.if !defined(WITHOUT_MYSQL)
73
.if ${PORT_OPTIONS:MMYSQL}
63
CONFIGURE_ARGS+=	--with-mysql
74
CONFIGURE_ARGS+=	--with-mysql
64
MAKE_ENV+=	WITH_MYSQL=1
75
MAKE_ENV+=	WITH_MYSQL=1
65
PLIST_SUB+=	WITH_MYSQL=""
76
PLIST_SUB+=	WITH_MYSQL=""
Lines 69-75 Link Here
69
PLIST_SUB+=	WITH_MYSQL="@comment "
80
PLIST_SUB+=	WITH_MYSQL="@comment "
70
.endif
81
.endif
71
82
72
.if !defined(WITHOUT_PGSQL)
83
.if ${PORT_OPTIONS:MPGSQL}
73
CONFIGURE_ARGS+=	--with-libpq=${LOCALBASE}
84
CONFIGURE_ARGS+=	--with-libpq=${LOCALBASE}
74
MAKE_ENV+=	WITH_PGSQL=1
85
MAKE_ENV+=	WITH_PGSQL=1
75
PLIST_SUB+=	WITH_PGSQL=""
86
PLIST_SUB+=	WITH_PGSQL=""
Lines 79-85 Link Here
79
PLIST_SUB+=	WITH_PGSQL="@comment "
90
PLIST_SUB+=	WITH_PGSQL="@comment "
80
.endif
91
.endif
81
92
82
.if !defined(WITHOUT_SCTP)
93
.if ${PORT_OPTIONS:MSCTP}
83
CONFIGURE_ARGS+=	--enable-sctp
94
CONFIGURE_ARGS+=	--enable-sctp
84
MAKE_ENV+=	WITH_SCTP=1
95
MAKE_ENV+=	WITH_SCTP=1
85
PLIST_SUB+=	WITH_SCTP=""
96
PLIST_SUB+=	WITH_SCTP=""
Lines 87-93 Link Here
87
PLIST_SUB+=	WITH_SCTP="@comment "
98
PLIST_SUB+=	WITH_SCTP="@comment "
88
.endif
99
.endif
89
100
90
.if !defined(WITHOUT_AMR_NB)
101
.if ${PORT_OPTIONS:MAMR_NB}
91
LIB_DEPENDS+=	opencore-amrnb.0:${PORTSDIR}/audio/opencore-amr
102
LIB_DEPENDS+=	opencore-amrnb.0:${PORTSDIR}/audio/opencore-amr
92
CONFIGURE_ARGS+=	--with-amrnb=${LOCALBASE}
103
CONFIGURE_ARGS+=	--with-amrnb=${LOCALBASE}
93
PLIST_SUB+=	WITH_AMR_NB=""
104
PLIST_SUB+=	WITH_AMR_NB=""
Lines 96-102 Link Here
96
PLIST_SUB+=	WITH_AMR_NB="@comment "
107
PLIST_SUB+=	WITH_AMR_NB="@comment "
97
.endif
108
.endif
98
109
99
.if !defined(WITHOUT_ILBC)
110
.if ${PORT_OPTIONS:MILBC}
100
LIB_DEPENDS+=	ilbc.0:${PORTSDIR}/net/ilbc
111
LIB_DEPENDS+=	ilbc.0:${PORTSDIR}/net/ilbc
101
CONFIGURE_ARGS+=	--enable-ilbc
112
CONFIGURE_ARGS+=	--enable-ilbc
102
PLIST_SUB+=	WITH_ILBC=""
113
PLIST_SUB+=	WITH_ILBC=""
Lines 105-111 Link Here
105
PLIST_SUB+=	WITH_ILBC="@comment "
116
PLIST_SUB+=	WITH_ILBC="@comment "
106
.endif
117
.endif
107
118
108
.if !defined(WITHOUT_SPANDSP)
119
.if ${PORT_OPTIONS:MSPANDSP}
109
CONFIGURE_ARGS+=	--with-spandsp=${LOCALBASE}/include
120
CONFIGURE_ARGS+=	--with-spandsp=${LOCALBASE}/include
110
LIB_DEPENDS+=	spandsp.2:${PORTSDIR}/comms/spandsp-devel
121
LIB_DEPENDS+=	spandsp.2:${PORTSDIR}/comms/spandsp-devel
111
MAKE_ENV+=	WITH_SPANDSP=1
122
MAKE_ENV+=	WITH_SPANDSP=1
Lines 115-121 Link Here
115
PLIST_SUB+=	WITH_SPANDSP="@comment "
126
PLIST_SUB+=	WITH_SPANDSP="@comment "
116
.endif
127
.endif
117
128
118
.if !defined(WITHOUT_DAHDI)
129
.if ${PORT_OPTIONS:MDAHDI}
119
CONFIGURE_ARGS+=	--enable-dahdi --enable-wpcard --enable-tdmcard
130
CONFIGURE_ARGS+=	--enable-dahdi --enable-wpcard --enable-tdmcard
120
BUILD_DEPENDS+=	${LOCALBASE}/include/dahdi/user.h:${PORTSDIR}/misc/dahdi
131
BUILD_DEPENDS+=	${LOCALBASE}/include/dahdi/user.h:${PORTSDIR}/misc/dahdi
121
MAKE_ENV+=	WITH_DAHDI=1
132
MAKE_ENV+=	WITH_DAHDI=1
Lines 125-131 Link Here
125
PLIST_SUB+=	WITH_DAHDI="@comment "
136
PLIST_SUB+=	WITH_DAHDI="@comment "
126
.endif
137
.endif
127
138
128
.if !defined(WITHOUT_H323)
139
.if ${PORT_OPTIONS:MH323}
129
CONFIGURE_ARGS+=	--with-pwlib=${LOCALBASE} \
140
CONFIGURE_ARGS+=	--with-pwlib=${LOCALBASE} \
130
			--with-openh323=${LOCALBASE}
141
			--with-openh323=${LOCALBASE}
131
LIB_DEPENDS+=	pt_r.1:${PORTSDIR}/devel/pwlib \
142
LIB_DEPENDS+=	pt_r.1:${PORTSDIR}/devel/pwlib \
Lines 137-143 Link Here
137
PLIST_SUB+=	WITH_H323="@comment "
148
PLIST_SUB+=	WITH_H323="@comment "
138
.endif
149
.endif
139
150
140
.if !defined(WITHOUT_SSL)
151
.if ${PORT_OPTIONS:MSSL}
141
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
152
.include "${PORTSDIR}/Mk/bsd.openssl.mk"
142
CONFIGURE_ARGS+=	--with-openssl=${OPENSSLBASE}
153
CONFIGURE_ARGS+=	--with-openssl=${OPENSSLBASE}
143
MAKE_ENV+=	WITH_SSL=1
154
MAKE_ENV+=	WITH_SSL=1
Lines 147-153 Link Here
147
PLIST_SUB+=	WITH_SSL="@comment "
158
PLIST_SUB+=	WITH_SSL="@comment "
148
.endif
159
.endif
149
160
150
.if defined(WITH_ALSA)
161
.if ${PORT_OPTIONS:MALSA}
151
LIB_DEPENDS+=	asound.2:${PORTSDIR}/audio/alsa-lib
162
LIB_DEPENDS+=	asound.2:${PORTSDIR}/audio/alsa-lib
152
MAKE_ENV+=	WITH_ALSA=1
163
MAKE_ENV+=	WITH_ALSA=1
153
PLIST_SUB+=	WITH_ALSA=""
164
PLIST_SUB+=	WITH_ALSA=""
Lines 156-162 Link Here
156
PLIST_SUB+=	WITH_ALSA="@comment "
167
PLIST_SUB+=	WITH_ALSA="@comment "
157
.endif
168
.endif
158
169
159
.if defined(NOPORTDOCS)
170
.if ${PORT_OPTIONS:MDOCS}
160
EXTRA_PATCHES+=	${FILESDIR}/extra-patch-noportdocs
171
EXTRA_PATCHES+=	${FILESDIR}/extra-patch-noportdocs
161
.endif
172
.endif
162
173
(-)yate/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (yate-4.0.0-1.tar.gz) = ec0bc785c154a11e548cd0597179b71f0f0b8e44cbfc5c767e6b0f09b733c97a
1
SHA256 (yate-4.3.0-1.tar.gz) = 74d946f92c016cbb38e0e043a4084600be158ca73f59d31d48dfe04b22df89f0
2
SIZE (yate-4.0.0-1.tar.gz) = 3908788
2
SIZE (yate-4.3.0-1.tar.gz) = 3826549
(-)yate/files/extra-patch-noportdocs (-5 / +6 lines)
Lines 1-6 Link Here
1
--- Makefile.in.orig	2011-05-22 13:58:34.738173251 +0200
1
--- ./Makefile.in.orig	2012-05-09 16:33:15.000000000 +0400
2
+++ Makefile.in	2011-05-22 13:59:26.136171443 +0200
2
+++ ./Makefile.in	2013-02-14 21:01:08.000000000 +0400
3
@@ -228,17 +228,9 @@
3
@@ -224,17 +224,9 @@
4
 	done
4
 	done
5
 	@for i in $(GENS) ; do \
5
 	@for i in $(GENS) ; do \
6
 	    install -m 0644 $$i "$(DESTDIR)$(incdir)/" ; \
6
 	    install -m 0644 $$i "$(DESTDIR)$(incdir)/" ; \
Lines 10-20 Link Here
10
-	    install -m 0644 @srcdir@/$$i "$(DESTDIR)$(docdir)/" ; \
10
-	    install -m 0644 @srcdir@/$$i "$(DESTDIR)$(docdir)/" ; \
11
 	done ;
11
 	done ;
12
 
12
 
13
 install-api: $(APIDOCS)
13
-install-api: $(APIDOCS)
14
-	@mkdir -p "$(DESTDIR)$(docdir)/api/" && \
14
-	@mkdir -p "$(DESTDIR)$(docdir)/api/" && \
15
-	install -m 0644 @srcdir@/docs/*.html "$(DESTDIR)$(docdir)/" && \
15
-	install -m 0644 @srcdir@/docs/*.html "$(DESTDIR)$(docdir)/" && \
16
-	test -z "$(APIDOCS)" || \
16
-	test -f "$(APIINDEX)" && \
17
-	install -m 0644 @srcdir@/docs/api/*.* "$(DESTDIR)$(docdir)/api/"
17
-	install -m 0644 @srcdir@/docs/api/*.* "$(DESTDIR)$(docdir)/api/"
18
+install-api:
18
 
19
 
19
 uninstall uninstall-root:
20
 uninstall uninstall-root:
20
 	@-for i in $(SLIBS) ; do \
21
 	@-for i in $(SLIBS) ; do \
(-)yate/files/patch-Makefile.in (-5 / +5 lines)
Lines 1-5 Link Here
1
--- ./Makefile.in.orig	2012-02-10 19:22:46.000000000 +0400
1
--- ./Makefile.in.orig	2012-05-09 16:33:15.000000000 +0400
2
+++ ./Makefile.in	2012-02-29 19:31:18.000000000 +0400
2
+++ ./Makefile.in	2013-02-14 19:58:02.000000000 +0400
3
@@ -20,7 +20,7 @@
3
@@ -20,7 +20,7 @@
4
 MKDEPS := ./config.status
4
 MKDEPS := ./config.status
5
 PROGS:= yate
5
 PROGS:= yate
Lines 18-24 Link Here
18
 vardir = @localstatedir@/lib/yate
18
 vardir = @localstatedir@/lib/yate
19
 moddir = @libdir@/yate
19
 moddir = @libdir@/yate
20
 shrdir = $(datadir)/yate
20
 shrdir = $(datadir)/yate
21
@@ -222,7 +222,7 @@
21
@@ -217,7 +217,7 @@
22
 	    install -m 0644 @srcdir@/docs/man/$$i "$(DESTDIR)$(mandir)/man8/" ; \
22
 	    install -m 0644 @srcdir@/docs/man/$$i "$(DESTDIR)$(mandir)/man8/" ; \
23
 	done
23
 	done
24
 	@mkdir -p "$(DESTDIR)$(libdir)/pkgconfig/" && \
24
 	@mkdir -p "$(DESTDIR)$(libdir)/pkgconfig/" && \
Lines 27-33 Link Here
27
 	@mkdir -p "$(DESTDIR)$(incdir)/" && \
27
 	@mkdir -p "$(DESTDIR)$(incdir)/" && \
28
 	for i in $(INCS) ; do \
28
 	for i in $(INCS) ; do \
29
 	    install -m 0644 @srcdir@/$$i "$(DESTDIR)$(incdir)/" ; \
29
 	    install -m 0644 @srcdir@/$$i "$(DESTDIR)$(incdir)/" ; \
30
@@ -250,7 +250,7 @@
30
@@ -245,7 +245,7 @@
31
 	@-for i in $(PROGS) yate-config ; do \
31
 	@-for i in $(PROGS) yate-config ; do \
32
 	    rm "$(DESTDIR)$(bindir)/$$i" ; \
32
 	    rm "$(DESTDIR)$(bindir)/$$i" ; \
33
 	done
33
 	done
Lines 36-42 Link Here
36
 	    rmdir $(DESTDIR)$(libdir)/pkgconfig
36
 	    rmdir $(DESTDIR)$(libdir)/pkgconfig
37
 	@-for i in $(INCS) $(GENS) ; do \
37
 	@-for i in $(INCS) $(GENS) ; do \
38
 	    rm "$(DESTDIR)$(incdir)/$$i" ; \
38
 	    rm "$(DESTDIR)$(incdir)/$$i" ; \
39
@@ -325,6 +325,7 @@
39
@@ -320,6 +320,7 @@
40
 
40
 
41
 libyate.so: $(YLIB)
41
 libyate.so: $(YLIB)
42
 	ln -sf $^ $@
42
 	ln -sf $^ $@
(-)yate/files/patch-conf.d__Makefile.in (-1 / +1 lines)
Lines 1-5 Link Here
1
--- ./conf.d/Makefile.in.orig	2009-09-19 17:55:58.000000000 +0400
1
--- ./conf.d/Makefile.in.orig	2009-09-19 17:55:58.000000000 +0400
2
+++ ./conf.d/Makefile.in	2012-02-29 19:31:18.000000000 +0400
2
+++ ./conf.d/Makefile.in	2013-02-14 19:58:02.000000000 +0400
3
@@ -20,14 +20,14 @@
3
@@ -20,14 +20,14 @@
4
 	lst="`ls -1 @srcdir@/*.conf @srcdir@/*.sample @srcdir@/*.default 2>/dev/null | sed 's/\.sample//g; s/\.default//g; s/[^ ]*\*\.[^ ]*//g' | sort | uniq`" ; \
4
 	lst="`ls -1 @srcdir@/*.conf @srcdir@/*.sample @srcdir@/*.default 2>/dev/null | sed 's/\.sample//g; s/\.default//g; s/[^ ]*\*\.[^ ]*//g' | sort | uniq`" ; \
5
 	for s in $$lst; do \
5
 	for s in $$lst; do \
(-)yate/files/patch-configure.in (-8 / +8 lines)
Lines 1-6 Link Here
1
--- ./configure.in.orig	2012-02-17 20:32:21.000000000 +0400
1
--- ./configure.in.orig	2012-12-21 18:26:49.000000000 +0400
2
+++ ./configure.in	2012-02-29 19:31:18.000000000 +0400
2
+++ ./configure.in	2013-02-14 19:58:02.000000000 +0400
3
@@ -561,7 +561,7 @@
3
@@ -643,7 +643,7 @@
4
 AC_SUBST(MYSQL_VER)
4
 AC_SUBST(MYSQL_VER)
5
 
5
 
6
 HAVE_ZAP=no
6
 HAVE_ZAP=no
Lines 9-15 Link Here
9
 AC_ARG_ENABLE(dahdi,AC_HELP_STRING([--enable-dahdi],[Enable Dahdi driver (default: yes)]),want_dahdi=$enableval,want_dahdi=yes)
9
 AC_ARG_ENABLE(dahdi,AC_HELP_STRING([--enable-dahdi],[Enable Dahdi driver (default: yes)]),want_dahdi=$enableval,want_dahdi=yes)
10
 if [[ "x$want_dahdi" = "xyes" ]]; then
10
 if [[ "x$want_dahdi" = "xyes" ]]; then
11
 AC_MSG_CHECKING([for Dahdi generic headers])
11
 AC_MSG_CHECKING([for Dahdi generic headers])
12
@@ -580,7 +580,7 @@
12
@@ -662,7 +662,7 @@
13
 #include <sys/ioctl.h>
13
 #include <sys/ioctl.h>
14
 ],[ioctl(0,ZT_GETVERSION,(void*)0)],
14
 ],[ioctl(0,ZT_GETVERSION,(void*)0)],
15
 HAVE_ZAP="yes"
15
 HAVE_ZAP="yes"
Lines 18-24 Link Here
18
 )
18
 )
19
 AC_MSG_RESULT([$HAVE_ZAP])
19
 AC_MSG_RESULT([$HAVE_ZAP])
20
 if [[ "x$HAVE_ZAP" = "xno" ]]; then
20
 if [[ "x$HAVE_ZAP" = "xno" ]]; then
21
@@ -590,7 +590,7 @@
21
@@ -672,7 +672,7 @@
22
 #include <sys/ioctl.h>
22
 #include <sys/ioctl.h>
23
 ],[ioctl(0,ZT_GETVERSION,(void*)0)],
23
 ],[ioctl(0,ZT_GETVERSION,(void*)0)],
24
 HAVE_ZAP="yes"
24
 HAVE_ZAP="yes"
Lines 27-33 Link Here
27
 )
27
 )
28
 AC_MSG_RESULT([$HAVE_ZAP])
28
 AC_MSG_RESULT([$HAVE_ZAP])
29
 fi
29
 fi
30
@@ -818,7 +818,7 @@
30
@@ -973,7 +973,7 @@
31
 )
31
 )
32
 CFLAGS="$SAVE_CFLAGS"
32
 CFLAGS="$SAVE_CFLAGS"
33
 if [[ "x$HAVE_SPEEX" = "xyes" ]]; then
33
 if [[ "x$HAVE_SPEEX" = "xyes" ]]; then
Lines 36-42 Link Here
36
 fi
36
 fi
37
 fi
37
 fi
38
 AC_MSG_RESULT([$HAVE_SPEEX])
38
 AC_MSG_RESULT([$HAVE_SPEEX])
39
@@ -999,7 +999,7 @@
39
@@ -1155,7 +1155,7 @@
40
 PWLIB_INC="-I$ac_cv_use_pwlib/include" # Base dir, ok for ptlib
40
 PWLIB_INC="-I$ac_cv_use_pwlib/include" # Base dir, ok for ptlib
41
 if [[ "$vpw" '<' "02.00.00" ]]; then
41
 if [[ "$vpw" '<' "02.00.00" ]]; then
42
     # Pwlib-1.xm no ptlib (2.x) install into ptlib
42
     # Pwlib-1.xm no ptlib (2.x) install into ptlib
Lines 45-51 Link Here
45
     if [[ "$vpw" '<' "01.06.00" ]]; then
45
     if [[ "$vpw" '<' "01.06.00" ]]; then
46
         # Very old pwlib needs more includes.
46
         # Very old pwlib needs more includes.
47
         PWLIB_INC="$PWLIB_INC/unix/ptlib $PWLIB_INC/unix $PWLIB_INC"
47
         PWLIB_INC="$PWLIB_INC/unix/ptlib $PWLIB_INC/unix $PWLIB_INC"
48
@@ -1132,7 +1132,7 @@
48
@@ -1288,7 +1288,7 @@
49
     AC_MSG_CHECKING([for OpenSSL in $ac_cv_use_openssl])
49
     AC_MSG_CHECKING([for OpenSSL in $ac_cv_use_openssl])
50
     verssl=no
50
     verssl=no
51
     if [[ -f "$ac_cv_use_openssl/include/openssl/opensslconf.h" ]]; then
51
     if [[ -f "$ac_cv_use_openssl/include/openssl/opensslconf.h" ]]; then
(-)yate/files/patch-modules__Makefile.in (-7 / +7 lines)
Lines 1-5 Link Here
1
--- ./modules/Makefile.in.orig	2012-02-17 20:19:40.000000000 +0400
1
--- ./modules/Makefile.in.orig	2012-12-21 18:26:49.000000000 +0400
2
+++ ./modules/Makefile.in	2012-02-29 19:51:09.000000000 +0400
2
+++ ./modules/Makefile.in	2013-02-14 20:01:20.000000000 +0400
3
@@ -32,7 +32,7 @@
3
@@ -32,7 +32,7 @@
4
 ZLIB_LIB := @ZLIB_LIB@
4
 ZLIB_LIB := @ZLIB_LIB@
5
 SED := sed
5
 SED := sed
Lines 9-15 Link Here
9
 CFLAGS := @CFLAGS@ @MODULE_CFLAGS@ @INLINE_FLAGS@
9
 CFLAGS := @CFLAGS@ @MODULE_CFLAGS@ @INLINE_FLAGS@
10
 CPPFLAGS := @CFLAGS@ @MODULE_CPPFLAGS@ @INLINE_FLAGS@
10
 CPPFLAGS := @CFLAGS@ @MODULE_CPPFLAGS@ @INLINE_FLAGS@
11
 LDFLAGS:= @LDFLAGS@
11
 LDFLAGS:= @LDFLAGS@
12
@@ -81,7 +81,7 @@
12
@@ -83,7 +83,7 @@
13
 	callgen.yate analyzer.yate rmanager.yate msgsniff.yate
13
 	callgen.yate analyzer.yate rmanager.yate msgsniff.yate
14
 
14
 
15
 LIBS :=
15
 LIBS :=
Lines 18-29 Link Here
18
 
18
 
19
 ifneq ($(HAVE_PGSQL),no)
19
 ifneq ($(HAVE_PGSQL),no)
20
 PROGS := $(PROGS) server/pgsqldb.yate
20
 PROGS := $(PROGS) server/pgsqldb.yate
21
@@ -330,7 +330,7 @@
21
@@ -342,7 +342,7 @@
22
 server/mgcpgw.yate: LOCALLIBS = -lyatemgcp -L../libs/ysdp -lyatesdp
22
 server/mgcpgw.yate: LOCALLIBS = -lyatemgcp -L../libs/ysdp -lyatesdp
23
 
23
 
24
 server/lksctp.yate: LOCALFLAGS = @SCTP_FLAGS@
24
 server/lksctp.yate: EXTERNFLAGS = @SCTP_FLAGS@
25
-server/lksctp.yate: LOCALLIBS = -lsctp
25
-server/lksctp.yate: EXTERNLIBS = -lsctp
26
+server/lksctp.yate: LOCALLIBS = 
26
+server/lksctp.yate: EXTERNLIBS =
27
 
27
 
28
 ilbccodec.yate: ../libs/ilbc/libilbc.a
28
 ilbccodec.yate: ../libs/ilbc/libilbc.a
29
 ilbccodec.yate: LOCALFLAGS = @ILBC_INC@
29
 ilbccodec.yate: LOCALFLAGS = @ILBC_INC@
(-)yate/files/patch-modules__h323chan.cpp (-3 / +3 lines)
Lines 1-6 Link Here
1
--- ./modules/h323chan.cpp.orig	2011-11-03 21:57:19.000000000 +0400
1
--- ./modules/h323chan.cpp.orig	2012-10-24 15:19:15.000000000 +0400
2
+++ ./modules/h323chan.cpp	2012-02-29 19:31:18.000000000 +0400
2
+++ ./modules/h323chan.cpp	2013-02-14 19:58:02.000000000 +0400
3
@@ -725,7 +725,7 @@
3
@@ -897,7 +897,7 @@
4
 static void ListRegisteredCaps(int level)
4
 static void ListRegisteredCaps(int level)
5
 {
5
 {
6
     PFactory<H323Capability>::KeyList_T list = PFactory<H323Capability>::GetKeyList();
6
     PFactory<H323Capability>::KeyList_T list = PFactory<H323Capability>::GetKeyList();
(-)yate/files/yate.in (-1 / +1 lines)
Lines 1-6 Link Here
1
#!/bin/sh
1
#!/bin/sh
2
#
2
#
3
# $FreeBSD: ports/net/yate/files/yate.in,v 1.2 2012/11/17 06:00:25 svnexp Exp $
3
# $FreeBSD: ports/net/yate/files/yate.in,v 1.2 2012/01/14 08:56:32 dougb Exp $
4
#
4
#
5
# PROVIDE: yate
5
# PROVIDE: yate
6
# REQUIRE: DAEMON
6
# REQUIRE: DAEMON
(-)yate/pkg-plist (-6 / +238 lines)
Lines 3-8 Link Here
3
@unexec if cmp -s %D/%%ETCDIR%%/accfile.conf.sample %D/%%ETCDIR%%/accfile.conf; then rm -f %D/%%ETCDIR%%/accfile.conf; fi
3
@unexec if cmp -s %D/%%ETCDIR%%/accfile.conf.sample %D/%%ETCDIR%%/accfile.conf; then rm -f %D/%%ETCDIR%%/accfile.conf; fi
4
%%ETCDIR%%/accfile.conf.sample
4
%%ETCDIR%%/accfile.conf.sample
5
@exec if [ ! -f %D/%%ETCDIR%%/accfile.conf ] ; then cp -p %D/%F %B/accfile.conf; fi
5
@exec if [ ! -f %D/%%ETCDIR%%/accfile.conf ] ; then cp -p %D/%F %B/accfile.conf; fi
6
@unexec if cmp -s %D/%%ETCDIR%%/amrnbcodec.conf.sample %D/%%ETCDIR%%/amrnbcodec.conf; then rm -f %D/%%ETCDIR%%/amrnbcodec.conf; fi
7
%%ETCDIR%%/amrnbcodec.conf.sample
8
@exec if [ ! -f %D/%%ETCDIR%%/amrnbcodec.conf ] ; then cp -p %D/%F %B/amrnbcodec.conf; fi
6
@unexec if cmp -s %D/%%ETCDIR%%/analog.conf.sample %D/%%ETCDIR%%/analog.conf; then rm -f %D/%%ETCDIR%%/analog.conf; fi
9
@unexec if cmp -s %D/%%ETCDIR%%/analog.conf.sample %D/%%ETCDIR%%/analog.conf; then rm -f %D/%%ETCDIR%%/analog.conf; fi
7
%%ETCDIR%%/analog.conf.sample
10
%%ETCDIR%%/analog.conf.sample
8
@exec if [ ! -f %D/%%ETCDIR%%/analog.conf ] ; then cp -p %D/%F %B/analog.conf; fi
11
@exec if [ ! -f %D/%%ETCDIR%%/analog.conf ] ; then cp -p %D/%F %B/analog.conf; fi
Lines 45-56 Link Here
45
@unexec if cmp -s %D/%%ETCDIR%%/enumroute.conf.sample %D/%%ETCDIR%%/enumroute.conf; then rm -f %D/%%ETCDIR%%/enumroute.conf; fi
48
@unexec if cmp -s %D/%%ETCDIR%%/enumroute.conf.sample %D/%%ETCDIR%%/enumroute.conf; then rm -f %D/%%ETCDIR%%/enumroute.conf; fi
46
%%ETCDIR%%/enumroute.conf.sample
49
%%ETCDIR%%/enumroute.conf.sample
47
@exec if [ ! -f %D/%%ETCDIR%%/enumroute.conf ] ; then cp -p %D/%F %B/enumroute.conf; fi
50
@exec if [ ! -f %D/%%ETCDIR%%/enumroute.conf ] ; then cp -p %D/%F %B/enumroute.conf; fi
51
@unexec if cmp -s %D/%%ETCDIR%%/eventlogs.conf.sample %D/%%ETCDIR%%/eventlogs.conf; then rm -f %D/%%ETCDIR%%/eventlogs.conf; fi
52
%%ETCDIR%%/eventlogs.conf.sample
53
@exec if [ ! -f %D/%%ETCDIR%%/eventlogs.conf ] ; then cp -p %D/%F %B/eventlogs.conf; fi
48
@unexec if cmp -s %D/%%ETCDIR%%/extmodule.conf.sample %D/%%ETCDIR%%/extmodule.conf; then rm -f %D/%%ETCDIR%%/extmodule.conf; fi
54
@unexec if cmp -s %D/%%ETCDIR%%/extmodule.conf.sample %D/%%ETCDIR%%/extmodule.conf; then rm -f %D/%%ETCDIR%%/extmodule.conf; fi
49
%%ETCDIR%%/extmodule.conf.sample
55
%%ETCDIR%%/extmodule.conf.sample
50
@exec if [ ! -f %D/%%ETCDIR%%/extmodule.conf ] ; then cp -p %D/%F %B/extmodule.conf; fi
56
@exec if [ ! -f %D/%%ETCDIR%%/extmodule.conf ] ; then cp -p %D/%F %B/extmodule.conf; fi
51
@unexec if cmp -s %D/%%ETCDIR%%/filetransfer.conf.sample %D/%%ETCDIR%%/filetransfer.conf; then rm -f %D/%%ETCDIR%%/filetransfer.conf; fi
57
@unexec if cmp -s %D/%%ETCDIR%%/filetransfer.conf.sample %D/%%ETCDIR%%/filetransfer.conf; then rm -f %D/%%ETCDIR%%/filetransfer.conf; fi
52
%%ETCDIR%%/filetransfer.conf.sample
58
%%ETCDIR%%/filetransfer.conf.sample
53
@exec if [ ! -f %D/%%ETCDIR%%/filetransfer.conf ] ; then cp -p %D/%F %B/filetransfer.conf; fi
59
@exec if [ ! -f %D/%%ETCDIR%%/filetransfer.conf ] ; then cp -p %D/%F %B/filetransfer.conf; fi
60
@unexec if cmp -s %D/%%ETCDIR%%/gvoice.conf.sample %D/%%ETCDIR%%/gvoice.conf; then rm -f %D/%%ETCDIR%%/gvoice.conf; fi
61
%%ETCDIR%%/gvoice.conf.sample
62
@exec if [ ! -f %D/%%ETCDIR%%/gvoice.conf ] ; then cp -p %D/%F %B/gvoice.conf; fi
54
@unexec if cmp -s %D/%%ETCDIR%%/h323chan.conf.sample %D/%%ETCDIR%%/h323chan.conf; then rm -f %D/%%ETCDIR%%/h323chan.conf; fi
63
@unexec if cmp -s %D/%%ETCDIR%%/h323chan.conf.sample %D/%%ETCDIR%%/h323chan.conf; then rm -f %D/%%ETCDIR%%/h323chan.conf; fi
55
%%ETCDIR%%/h323chan.conf.sample
64
%%ETCDIR%%/h323chan.conf.sample
56
@exec if [ ! -f %D/%%ETCDIR%%/h323chan.conf ] ; then cp -p %D/%F %B/h323chan.conf; fi
65
@exec if [ ! -f %D/%%ETCDIR%%/h323chan.conf ] ; then cp -p %D/%F %B/h323chan.conf; fi
Lines 75-80 Link Here
75
@unexec if cmp -s %D/%%ETCDIR%%/lateroute.conf.sample %D/%%ETCDIR%%/lateroute.conf; then rm -f %D/%%ETCDIR%%/lateroute.conf; fi
84
@unexec if cmp -s %D/%%ETCDIR%%/lateroute.conf.sample %D/%%ETCDIR%%/lateroute.conf; then rm -f %D/%%ETCDIR%%/lateroute.conf; fi
76
%%ETCDIR%%/lateroute.conf.sample
85
%%ETCDIR%%/lateroute.conf.sample
77
@exec if [ ! -f %D/%%ETCDIR%%/lateroute.conf ] ; then cp -p %D/%F %B/lateroute.conf; fi
86
@exec if [ ! -f %D/%%ETCDIR%%/lateroute.conf ] ; then cp -p %D/%F %B/lateroute.conf; fi
87
@unexec if cmp -s %D/%%ETCDIR%%/lksctp.conf.sample %D/%%ETCDIR%%/lksctp.conf; then rm -f %D/%%ETCDIR%%/lksctp.conf; fi
88
%%ETCDIR%%/lksctp.conf.sample
89
@exec if [ ! -f %D/%%ETCDIR%%/lksctp.conf ] ; then cp -p %D/%F %B/lksctp.conf; fi
78
@unexec if cmp -s %D/%%ETCDIR%%/mgcpca.conf.sample %D/%%ETCDIR%%/mgcpca.conf; then rm -f %D/%%ETCDIR%%/mgcpca.conf; fi
90
@unexec if cmp -s %D/%%ETCDIR%%/mgcpca.conf.sample %D/%%ETCDIR%%/mgcpca.conf; then rm -f %D/%%ETCDIR%%/mgcpca.conf; fi
79
%%ETCDIR%%/mgcpca.conf.sample
91
%%ETCDIR%%/mgcpca.conf.sample
80
@exec if [ ! -f %D/%%ETCDIR%%/mgcpca.conf ] ; then cp -p %D/%F %B/mgcpca.conf; fi
92
@exec if [ ! -f %D/%%ETCDIR%%/mgcpca.conf ] ; then cp -p %D/%F %B/mgcpca.conf; fi
Lines 200-214 Link Here
200
include/yate/yateversn.h
212
include/yate/yateversn.h
201
lib/libyate.so
213
lib/libyate.so
202
lib/libyate.so.4
214
lib/libyate.so.4
203
lib/libyate.so.4.0.0
215
lib/libyate.so.4.3.0
204
lib/libyatejabber.so
216
lib/libyatejabber.so
205
lib/libyatejabber.so.4.0.0
217
lib/libyatejabber.so.4.3.0
206
lib/libyatemgcp.so
218
lib/libyatemgcp.so
207
lib/libyatemgcp.so.4.0.0
219
lib/libyatemgcp.so.4.3.0
208
lib/libyatescript.so
220
lib/libyatescript.so
209
lib/libyatescript.so.4.0.0
221
lib/libyatescript.so.4.3.0
210
lib/libyatesig.so
222
lib/libyatesig.so
211
lib/libyatesig.so.4.0.0
223
lib/libyatesig.so.4.3.0
212
lib/yate/analyzer.yate
224
lib/yate/analyzer.yate
213
lib/yate/callfork.yate
225
lib/yate/callfork.yate
214
lib/yate/callgen.yate
226
lib/yate/callgen.yate
Lines 224-231 Link Here
224
%%WITH_SPANDSP%%lib/yate/faxchan.yate
236
%%WITH_SPANDSP%%lib/yate/faxchan.yate
225
lib/yate/filetransfer.yate
237
lib/yate/filetransfer.yate
226
lib/yate/gsmcodec.yate
238
lib/yate/gsmcodec.yate
239
lib/yate/gvoice.yate
227
%%WITH_H323%%lib/yate/h323chan.yate
240
%%WITH_H323%%lib/yate/h323chan.yate
228
%%WITH_ILBC%%lib/yate/ilbccodec.yate
241
%%WITH_ILBC%%lib/yate/ilbccodec.yate
242
lib/yate/ilbcwebrtc.yate
243
lib/yate/isaccodec.yate
229
lib/yate/jabber/jabberserver.yate
244
lib/yate/jabber/jabberserver.yate
230
lib/yate/jabber/jbfeatures.yate
245
lib/yate/jabber/jbfeatures.yate
231
lib/yate/javascript.yate
246
lib/yate/javascript.yate
Lines 247-252 Link Here
247
lib/yate/server/cpuload.yate
262
lib/yate/server/cpuload.yate
248
lib/yate/server/dbpbx.yate
263
lib/yate/server/dbpbx.yate
249
lib/yate/server/dbwave.yate
264
lib/yate/server/dbwave.yate
265
lib/yate/server/eventlogs.yate
250
lib/yate/server/heartbeat.yate
266
lib/yate/server/heartbeat.yate
251
lib/yate/server/lateroute.yate
267
lib/yate/server/lateroute.yate
252
%%WITH_SCTP%%lib/yate/server/lksctp.yate
268
%%WITH_SCTP%%lib/yate/server/lksctp.yate
Lines 290-295 Link Here
290
%%PORTDOCS%%%%DOCSDIR%%/COPYING
306
%%PORTDOCS%%%%DOCSDIR%%/COPYING
291
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
307
%%PORTDOCS%%%%DOCSDIR%%/ChangeLog
292
%%PORTDOCS%%%%DOCSDIR%%/README
308
%%PORTDOCS%%%%DOCSDIR%%/README
309
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine.html
310
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Array.html
311
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Base64.html
312
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__CallEndpoint.html
313
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__CapturedEvent.html
314
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Channel.html
315
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Cipher.html
316
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Client.html
317
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ClientAccount.html
318
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ClientAccountList.html
319
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ClientChannel.html
320
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ClientContact.html
321
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ClientDriver.html
322
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ClientLogic.html
323
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ClientResource.html
324
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ClientSound.html
325
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Compressor.html
326
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Configuration.html
327
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__DataBlock.html
328
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__DataConsumer.html
329
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__DataEndpoint.html
330
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__DataFormat.html
331
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__DataNode.html
332
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__DataSource.html
333
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__DataTranslator.html
334
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__DebugEnabler.html
335
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Debugger.html
336
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__DefaultLogic.html
337
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__DnsRecord.html
338
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Driver.html
339
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__DurationUpdate.html
340
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Engine.html
341
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__EngineCheck.html
342
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__File.html
343
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__FormatInfo.html
344
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__FormatRepository.html
345
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__GenObject.html
346
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__GenPointer.html
347
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__HashList.html
348
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ImageInfo.html
349
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ListIterator.html
350
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Lock.html
351
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Lock2.html
352
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Lockable.html
353
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MD5.html
354
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MemoryStream.html
355
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Message.html
356
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MessageDispatcher.html
357
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MessageHandler.html
358
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MessageNotifier.html
359
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MessagePostHook.html
360
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MessageReceiver.html
361
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MessageRelay.html
362
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MimeAuthLine.html
363
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MimeBinaryBody.html
364
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MimeBody.html
365
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MimeHeaderLine.html
366
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MimeLinesBody.html
367
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MimeMultipartBody.html
368
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MimeSdpBody.html
369
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MimeStringBody.html
370
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Module.html
371
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MucRoom.html
372
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MucRoomMember.html
373
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Mutex.html
374
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__MutexPool.html
375
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__NamedIterator.html
376
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__NamedList.html
377
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__NamedPointer.html
378
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__NamedString.html
379
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__NaptrRecord.html
380
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ObjList.html
381
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ObjVector.html
382
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Plugin.html
383
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Random.html
384
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__RefObject.html
385
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__RefPointer.html
386
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__RefPointerBase.html
387
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Regexp.html
388
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Resolver.html
389
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Router.html
390
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Runnable.html
391
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__SHA1.html
392
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__SctpSocket.html
393
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Semaphore.html
394
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__SharedVars.html
395
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Socket.html
396
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__SocketAddr.html
397
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__SocketFilter.html
398
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__SrvRecord.html
399
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Stream.html
400
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__String.html
401
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__SysUsage.html
402
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Thread.html
403
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__ThreadedSource.html
404
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Time.html
405
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__TokenDict.html
406
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__TranslatorCaps.html
407
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__TranslatorFactory.html
408
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__UIFactory.html
409
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__UIWidget.html
410
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__URI.html
411
%%PORTDOCS%%%%DOCSDIR%%/api/TelEngine__Window.html
412
%%PORTDOCS%%%%DOCSDIR%%/api/all-globals.html
413
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine.html
414
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Array.html
415
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Base64.html
416
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__CallEndpoint.html
417
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__CapturedEvent.html
418
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Channel.html
419
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Cipher.html
420
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Client.html
421
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ClientAccount.html
422
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ClientAccountList.html
423
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ClientChannel.html
424
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ClientContact.html
425
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ClientDriver.html
426
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ClientLogic.html
427
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ClientResource.html
428
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ClientSound.html
429
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Compressor.html
430
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Configuration.html
431
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__DataBlock.html
432
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__DataConsumer.html
433
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__DataEndpoint.html
434
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__DataFormat.html
435
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__DataNode.html
436
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__DataSource.html
437
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__DataTranslator.html
438
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__DebugEnabler.html
439
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Debugger.html
440
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__DefaultLogic.html
441
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__DnsRecord.html
442
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Driver.html
443
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__DurationUpdate.html
444
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Engine.html
445
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__EngineCheck.html
446
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__File.html
447
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__FormatInfo.html
448
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__FormatRepository.html
449
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__GenObject.html
450
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__GenPointer.html
451
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__HashList.html
452
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ImageInfo.html
453
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ListIterator.html
454
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Lock.html
455
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Lock2.html
456
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Lockable.html
457
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MD5.html
458
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MemoryStream.html
459
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Message.html
460
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MessageDispatcher.html
461
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MessageHandler.html
462
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MessageNotifier.html
463
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MessagePostHook.html
464
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MessageReceiver.html
465
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MessageRelay.html
466
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MimeAuthLine.html
467
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MimeBinaryBody.html
468
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MimeBody.html
469
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MimeHeaderLine.html
470
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MimeLinesBody.html
471
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MimeMultipartBody.html
472
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MimeSdpBody.html
473
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MimeStringBody.html
474
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Module.html
475
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MucRoom.html
476
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MucRoomMember.html
477
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Mutex.html
478
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__MutexPool.html
479
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__NamedIterator.html
480
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__NamedList.html
481
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__NamedPointer.html
482
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__NamedString.html
483
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__NaptrRecord.html
484
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ObjList.html
485
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ObjVector.html
486
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Plugin.html
487
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Random.html
488
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__RefObject.html
489
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__RefPointer.html
490
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__RefPointerBase.html
491
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Regexp.html
492
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Resolver.html
493
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Router.html
494
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Runnable.html
495
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__SHA1.html
496
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__SctpSocket.html
497
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Semaphore.html
498
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__SharedVars.html
499
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Socket.html
500
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__SocketAddr.html
501
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__SocketFilter.html
502
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__SrvRecord.html
503
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Stream.html
504
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__String.html
505
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__SysUsage.html
506
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Thread.html
507
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__ThreadedSource.html
508
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Time.html
509
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__TokenDict.html
510
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__TranslatorCaps.html
511
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__TranslatorFactory.html
512
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__UIFactory.html
513
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__UIWidget.html
514
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__URI.html
515
%%PORTDOCS%%%%DOCSDIR%%/api/full-list-TelEngine__Window.html
516
%%PORTDOCS%%%%DOCSDIR%%/api/header-list.html
517
%%PORTDOCS%%%%DOCSDIR%%/api/hier.html
518
%%PORTDOCS%%%%DOCSDIR%%/api/index-long.html
519
%%PORTDOCS%%%%DOCSDIR%%/api/index.html
520
%%PORTDOCS%%%%DOCSDIR%%/api/yatecbase_h.html
521
%%PORTDOCS%%%%DOCSDIR%%/api/yateclass_h.html
522
%%PORTDOCS%%%%DOCSDIR%%/api/yatemime_h.html
523
%%PORTDOCS%%%%DOCSDIR%%/api/yatengine_h.html
524
%%PORTDOCS%%%%DOCSDIR%%/api/yatephone_h.html
293
%%PORTDOCS%%%%DOCSDIR%%/dataflow.html
525
%%PORTDOCS%%%%DOCSDIR%%/dataflow.html
294
%%PORTDOCS%%%%DOCSDIR%%/extmodule.html
526
%%PORTDOCS%%%%DOCSDIR%%/extmodule.html
295
%%PORTDOCS%%%%DOCSDIR%%/index.html
527
%%PORTDOCS%%%%DOCSDIR%%/index.html
Lines 304-309 Link Here
304
%%DATADIR%%/help/4.yhlp
536
%%DATADIR%%/help/4.yhlp
305
%%DATADIR%%/help/99.yhlp
537
%%DATADIR%%/help/99.yhlp
306
%%DATADIR%%/scripts/Yate.pm
538
%%DATADIR%%/scripts/Yate.pm
539
%%DATADIR%%/scripts/banbrutes.php
307
%%DATADIR%%/scripts/leavemail.php
540
%%DATADIR%%/scripts/leavemail.php
308
%%DATADIR%%/scripts/libvoicemail.php
541
%%DATADIR%%/scripts/libvoicemail.php
309
%%DATADIR%%/scripts/libyate.php
542
%%DATADIR%%/scripts/libyate.php
Lines 636-641 Link Here
636
@dirrm lib/pkgconfig
869
@dirrm lib/pkgconfig
637
@dirrm include/yate
870
@dirrm include/yate
638
@dirrm %%ETCDIR%%
871
@dirrm %%ETCDIR%%
639
%%PORTDOCS%%@exec mkdir -p %D/%%DOCSDIR%%/api
640
@exec mkdir -p %D/lib/yate/qt4
872
@exec mkdir -p %D/lib/yate/qt4
641
@exec mkdir -p %D/lib/pkgconfig
873
@exec mkdir -p %D/lib/pkgconfig

Return to bug 176159