From 2754aa32370f413bbfb92f331585d11e290c881d Mon Sep 17 00:00:00 2001 From: wiz Date: Fri, 18 Jul 2003 13:12:19 +0000 Subject: Update to 0.6.3.8: "RING" catched fixed sms type identification enable unicode sms sending (patch by Andy Shevchenko) update man page change flash sms coding to work with unicode setting in parallel fix content length output for unicode sms added russian man page translation (sent in by Andy Shevchenko) small change in unicode.c to stop gcc3.3 complain trying to avoid some error messages about syntax --- comms/scmxx/Makefile | 5 ++--- comms/scmxx/PLIST | 5 ++++- comms/scmxx/distinfo | 8 ++++---- comms/scmxx/patches/patch-ab | 18 +++++++++--------- 4 files changed, 19 insertions(+), 17 deletions(-) (limited to 'comms/scmxx') diff --git a/comms/scmxx/Makefile b/comms/scmxx/Makefile index bb82b7c39fe..bba9d888af1 100644 --- a/comms/scmxx/Makefile +++ b/comms/scmxx/Makefile @@ -1,8 +1,7 @@ -# $NetBSD: Makefile,v 1.22 2003/07/17 21:27:01 grant Exp $ +# $NetBSD: Makefile,v 1.23 2003/07/18 13:12:19 wiz Exp $ # -DISTNAME= scmxx-0.6.3.7 -PKGREVISION= 1 +DISTNAME= scmxx-0.6.3.8 CATEGORIES= comms MASTER_SITES= http://ma2geo.mathematik.uni-karlsruhe.de/~hendrik/scmxx/download/ EXTRACT_SUFX= .tar.bz2 diff --git a/comms/scmxx/PLIST b/comms/scmxx/PLIST index 016eaa84d23..c97e24a2e9e 100644 --- a/comms/scmxx/PLIST +++ b/comms/scmxx/PLIST @@ -1,6 +1,7 @@ -@comment $NetBSD: PLIST,v 1.5 2003/03/16 10:21:03 kleink Exp $ +@comment $NetBSD: PLIST,v 1.6 2003/07/18 13:12:20 wiz Exp $ bin/scmxx man/man1/scmxx.1 +man/ru/man1/scmxx.1 share/doc/scmxx/doc_sources.txt share/doc/scmxx/gsmcharset.txt share/examples/scmxx/phonebook @@ -9,3 +10,5 @@ share/examples/scmxx/vCalendar.vcs share/examples/scmxx/vCard.vcf @dirrm share/doc/scmxx @dirrm share/examples/scmxx +@dirrm man/ru/man1 +@dirrm man/ru diff --git a/comms/scmxx/distinfo b/comms/scmxx/distinfo index 1760e89147c..53d28e09ae7 100644 --- a/comms/scmxx/distinfo +++ b/comms/scmxx/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.17 2003/04/18 16:18:32 wiz Exp $ +$NetBSD: distinfo,v 1.18 2003/07/18 13:12:20 wiz Exp $ -SHA1 (scmxx-0.6.3.7.tar.bz2) = c344cdda631c000ccb618917a4d674021f577e82 -Size (scmxx-0.6.3.7.tar.bz2) = 77520 bytes +SHA1 (scmxx-0.6.3.8.tar.bz2) = eb91728d4bd0e67b2312b43e79de04180fe457b7 +Size (scmxx-0.6.3.8.tar.bz2) = 82214 bytes SHA1 (patch-aa) = ee944e84895dc5e44b34d32470e536f9e09158cf -SHA1 (patch-ab) = 4632e5249ee95a84a17e95239b1be8cf59e72e86 +SHA1 (patch-ab) = 3b9692a592acb3f0b696c1fd42b075c3c638bc21 diff --git a/comms/scmxx/patches/patch-ab b/comms/scmxx/patches/patch-ab index a9b8a24bff2..6a44ab3c4e0 100644 --- a/comms/scmxx/patches/patch-ab +++ b/comms/scmxx/patches/patch-ab @@ -1,17 +1,17 @@ -$NetBSD: patch-ab,v 1.6 2003/04/18 16:18:33 wiz Exp $ +$NetBSD: patch-ab,v 1.7 2003/07/18 13:12:21 wiz Exp $ ---- src/smspdu.c.orig Sun Mar 9 13:24:24 2003 +--- src/smspdu.c.orig 2003-06-02 16:48:59.000000000 +0200 +++ src/smspdu.c -@@ -88,7 +88,7 @@ void create_smssubmit_pdu(char *pdu, cha +@@ -91,7 +91,7 @@ void create_smssubmit_pdu(char *pdu, cha //leave PID and vp_relative as is //process user data length and user data - wide_str=convert_to_internal(nl_langinfo(CODESET),smstext,strlen(smstext)); + wide_str=convert_to_internal("char",smstext,strlen(smstext)); - ud=sms_data_7bit_encode(wide_str,&udl); - mem_realloc(wide_str,0); - -@@ -212,7 +212,7 @@ void decode_smsdeliver_pdu(unsigned char + if (mysmsopts.unicode) { + dcs &= 0xf3; //clear all affected bits + dcs |= 0x08; //set unicode charset +@@ -227,7 +227,7 @@ void decode_smsdeliver_pdu(unsigned char sprintf(&oa.number[strlen(oa.number)],"%c%c",pdu[i],pdu[i+1]); } wide_str=sms_data_7bit_decode(oa.number,(oa.length*4)/7); @@ -20,7 +20,7 @@ $NetBSD: patch-ab,v 1.6 2003/04/18 16:18:33 wiz Exp $ mem_realloc(wide_str,0); strcpy(oa.number,t); mem_realloc(t,0); -@@ -301,9 +301,9 @@ void decode_smsdeliver_pdu(unsigned char +@@ -316,9 +316,9 @@ void decode_smsdeliver_pdu(unsigned char //all encodings of uncompressed 7bit wide_str=sms_data_7bit_decode(pdu+where,udl); if ((pdutype>>6)&1){ @@ -32,7 +32,7 @@ $NetBSD: patch-ab,v 1.6 2003/04/18 16:18:33 wiz Exp $ } mem_realloc(wide_str,0); strcpy(ud,t); -@@ -318,7 +318,7 @@ void decode_smsdeliver_pdu(unsigned char +@@ -333,7 +333,7 @@ void decode_smsdeliver_pdu(unsigned char } else { wide_str=convert_from_ucs2(pdu+where); } -- cgit v1.2.3