initial import of twinkle
Twinkle is a soft phone for your voice over IP communcations using the SIP protocol. You can use it for direct IP phone to IP phone communication or in a network using a SIP proxy to route your calls. TODO: * Use options.mk -> to choose kde or not kde. * Fix MASTER_SITES. * x11/qt3-libs must be fixed: Thanks to ghen: (so, pkg-config file is not installed) x11/qt3-libs :: send patch, to ghen Index: Makefile =================================================================== RCS file: /pub/NetBSD-CVS/pkgsrc/x11/qt3-libs/Makefile,v retrieving revision 1.41 diff -u -r1.41 Makefile --- Makefile 1 Nov 2005 20:18:36 -0000 1.41 +++ Makefile 16 Dec 2005 13:43:33 -0000 -24,6 +24,8 @@ BUILDLINK_PASSTHRU_DIRS+= ${QTPREFIX} +PKGCONFIG_OVERRIDE= lib/qt-mt.pc + do-install: ${INSTALL_DATA_DIR} ${QTPREFIX} ${INSTALL_PROGRAM_DIR} ${QTPREFIX}/bin -38,6 +40,7 @@ ${INSTALL_LIB_DIR} ${QTPREFIX}/plugins/imageformats ${LIBTOOL} ${INSTALL_LIB} ${WRKSRC}/plugins/imageformats/libqjpeg.la ${QTPREFIX}/plugins/imageformats/ ${LIBTOOL} ${INSTALL_LIB} ${WRKSRC}/plugins/imageformats/libqmng.la ${QTPREFIX}/plugins/imageformats/ + ${INSTALL_DATA} ${WRKSRC}/lib/qt-mt.pc ${PREFIX}/lib/pkgconfig/ .if ${OPSYS} == "Darwin" && empty(MACHINE_PLATFORM:MDarwin-[567].*) SUBST_CLASSES+= socklen Index: PLIST =================================================================== RCS file: /pub/NetBSD-CVS/pkgsrc/x11/qt3-libs/PLIST,v retrieving revision 1.15 diff -u -r1.15 PLIST --- PLIST 22 Sep 2004 08:10:07 -0000 1.15 +++ PLIST 16 Dec 2005 13:43:33 -0000 -1,4 +1,5 @@ @comment $NetBSD: PLIST,v 1.15 2004/09/22 08:10:07 jlam Exp $ +lib/pkgconfig/qt-mt.pc qt3/bin/moc qt3/include/jri.h qt3/include/jri_md.h
This commit is contained in:
parent
e50db46a29
commit
15619074ea
5 changed files with 87 additions and 0 deletions
3
twinkle/DESCR
Normal file
3
twinkle/DESCR
Normal file
|
@ -0,0 +1,3 @@
|
|||
Twinkle is a soft phone for your voice over IP communcations using the SIP
|
||||
protocol. You can use it for direct IP phone to IP phone communication or in
|
||||
a network using a SIP proxy to route your calls.
|
25
twinkle/Makefile
Normal file
25
twinkle/Makefile
Normal file
|
@ -0,0 +1,25 @@
|
|||
# $NetBSD: Makefile,v 1.1.1.1 2005/12/16 18:48:17 poppnk Exp $
|
||||
#
|
||||
|
||||
DISTNAME= twinkle-0.4.2
|
||||
CATEGORIES= audio chat
|
||||
MASTER_SITES= http://www.xs4all.nl/~mfnboer/twinkle/download/
|
||||
|
||||
MAINTAINER= pancake@phreaker.net
|
||||
HOMEPAGE= http://www.twinklephone.com/
|
||||
COMMENT= Software Phone using the SIP protocol
|
||||
|
||||
USE_TOOLS+= pkg-config
|
||||
USE_PKGLOCALEDIR= yes
|
||||
GNU_CONFIGURE= yes
|
||||
|
||||
CONFIGURE_ARGS+="--without-kde"
|
||||
|
||||
.include "../../x11/qt3-tools/buildlink3.mk"
|
||||
## x11/qt3-libs/ is broken
|
||||
## cp work/qt-x11-free-3.3.5/lib/qt-mt.pc /usr/pkg/lib/pkgconfig/
|
||||
.include "../../x11/qt3-libs/buildlink3.mk"
|
||||
.include "../../textproc/libxml2/buildlink3.mk"
|
||||
.include "../../wip/commoncpp2/buildlink3.mk"
|
||||
.include "../../wip/ccrtp/buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
11
twinkle/PLIST
Normal file
11
twinkle/PLIST
Normal file
|
@ -0,0 +1,11 @@
|
|||
@comment $NetBSD: PLIST,v 1.1.1.1 2005/12/16 18:48:17 poppnk Exp $
|
||||
bin/twinkle
|
||||
etc/cups/certs/0
|
||||
share/twinkle/providers.csv
|
||||
share/twinkle/ringback.wav
|
||||
share/twinkle/ringtone.wav
|
||||
share/twinkle/twinkle16.png
|
||||
share/twinkle/twinkle32.png
|
||||
share/twinkle/twinkle48.png
|
||||
@dirrm share/twinkle
|
||||
@dirrm etc/cups/certs
|
43
twinkle/TODO
Normal file
43
twinkle/TODO
Normal file
|
@ -0,0 +1,43 @@
|
|||
* Use options.mk -> to choose kde or not kde.
|
||||
* Fix MASTER_SITES.
|
||||
|
||||
* x11/qt3-libs must be fixed: Thanks to ghen:
|
||||
|
||||
x11/qt3-libs :: send patch, to ghen
|
||||
Index: Makefile
|
||||
===================================================================
|
||||
RCS file: /pub/NetBSD-CVS/pkgsrc/x11/qt3-libs/Makefile,v
|
||||
retrieving revision 1.41
|
||||
diff -u -r1.41 Makefile
|
||||
--- Makefile 1 Nov 2005 20:18:36 -0000 1.41
|
||||
+++ Makefile 16 Dec 2005 13:43:33 -0000
|
||||
-24,6 +24,8 @@
|
||||
|
||||
BUILDLINK_PASSTHRU_DIRS+= ${QTPREFIX}
|
||||
|
||||
+PKGCONFIG_OVERRIDE= lib/qt-mt.pc
|
||||
+
|
||||
do-install:
|
||||
${INSTALL_DATA_DIR} ${QTPREFIX}
|
||||
${INSTALL_PROGRAM_DIR} ${QTPREFIX}/bin
|
||||
-38,6 +40,7 @@
|
||||
${INSTALL_LIB_DIR} ${QTPREFIX}/plugins/imageformats
|
||||
${LIBTOOL} ${INSTALL_LIB} ${WRKSRC}/plugins/imageformats/libqjpeg.la ${QTPREFIX}/plugins/imageformats/
|
||||
${LIBTOOL} ${INSTALL_LIB} ${WRKSRC}/plugins/imageformats/libqmng.la ${QTPREFIX}/plugins/imageformats/
|
||||
+ ${INSTALL_DATA} ${WRKSRC}/lib/qt-mt.pc ${PREFIX}/lib/pkgconfig/
|
||||
|
||||
.if ${OPSYS} == "Darwin" && empty(MACHINE_PLATFORM:MDarwin-[567].*)
|
||||
SUBST_CLASSES+= socklen
|
||||
Index: PLIST
|
||||
===================================================================
|
||||
RCS file: /pub/NetBSD-CVS/pkgsrc/x11/qt3-libs/PLIST,v
|
||||
retrieving revision 1.15
|
||||
diff -u -r1.15 PLIST
|
||||
--- PLIST 22 Sep 2004 08:10:07 -0000 1.15
|
||||
+++ PLIST 16 Dec 2005 13:43:33 -0000
|
||||
-1,4 +1,5 @@
|
||||
@comment $NetBSD: TODO,v 1.1.1.1 2005/12/16 18:48:17 poppnk Exp $
|
||||
+lib/pkgconfig/qt-mt.pc
|
||||
qt3/bin/moc
|
||||
qt3/include/jri.h
|
||||
qt3/include/jri_md.h
|
5
twinkle/distinfo
Normal file
5
twinkle/distinfo
Normal file
|
@ -0,0 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.1.1.1 2005/12/16 18:48:17 poppnk Exp $
|
||||
|
||||
SHA1 (twinkle-0.4.2.tar.gz) = 4357dca4be878ba0d8ea3b5c6d2a33da71ab1e60
|
||||
RMD160 (twinkle-0.4.2.tar.gz) = ea878e65b2da72607be97eef54e8974938ed3292
|
||||
Size (twinkle-0.4.2.tar.gz) = 798159 bytes
|
Loading…
Reference in a new issue