diff options
author | kleink <kleink@pkgsrc.org> | 2003-03-16 10:21:03 +0000 |
---|---|---|
committer | kleink <kleink@pkgsrc.org> | 2003-03-16 10:21:03 +0000 |
commit | fa73628e4931f4ca4115c81a06977bf2430d22c8 (patch) | |
tree | 1ee8807dd8754258931e52e451cde8b7ddbafc67 /comms | |
parent | 9b6f483c85ce2ce6b8bdc310771a794cd3af47d4 (diff) | |
download | pkgsrc-fa73628e4931f4ca4115c81a06977bf2430d22c8.tar.gz |
Update to scmxx-0.6.3.6; changes include:
0.6.3.6
rewrote parts of src/Makefile (warning: only the use of
GNU make is supported although others may also work, see
short comment in src/Makefile)
changed (src/)Makefile target "dist-clean" to "distclean"
removed src/Makefile maintainer-clean target
added wchar.h/stddef.h configure check and depincludes rules
added file dep_wcslen.c with depincludes rule (see top of file)
added wcslen check (also in libwcs)
call automake in ./maintainer-prep to create install-sh
check getop.h or getopt/getopt.h presence
moving header includes from common.h to the .c files
do not make use of mktime as this is often broken
remove configure mktime check
added another flavour of M50 to supported phones
open port with O_NONBLOCK and disable O_NONBLOCK when device is open
add option --ignore-serial-bits to make some phones/cables work
add option --device-timeout=<seconds>
print exact type of unsupported sms pdus to stderr
reindented all code
0.6.3.5
fix segfault
run phone_init (thus fixing direct sms receive)
0.6.3.4
removing a lot of bugs about uninitialized variables that turned
into segmentation faults (thanks to Ronald Wahl for showing
up my programming errors)
fixed some other small bugs that made show up wrong data (network
status, network gprs status)
remove caching code for vendor and model as it crashes e.g. with
CygWin (maybe their compiler again?)
0.6.3.3
replacing cfmakeraw by redefining the function (instead of a code block
replacement) and adjust configure.in
do not open device non-blocking
set termios read counter to 10 seconds and character counter to 0
make repeating of last at command generic
rewritten tty_read method with split-off tty_readline method
interpret the bit error rate value on info output
replace "ATZ" init string with "\rATZ"
apply the fix from 0.6.3.2 correctly
create scmxx.spec from scmxx.spec.in by maintainer-prep script
0.6.3.2
add S46 to supported phones
include fix from http://bugs.debian.org/171217
exchange 'make' with '$(MAKE)' in toplevel Makefile
0.6.3.1
fix one character in scmxx.c to get output again
fixed Makefile.in to install the man page
0.6.3
first usage of wchar_t and iconv which makes several input/output charsets
possible and even compatible
enabling generic charsets for phonebook upload and download
enabling generic charsets for sms sending and decoding
enabling special sequences \XXXX for generic characters and \n for <NL> and
\\ for '\'
added local date format output for SMS and info
fix sms resend bug
fix a lot of sms decoding bugs and clean up the SMS header code
added UCS2 decoding of SMS
added status report request option --srr
changes --file (-f) to --out (-o)
0.6.2
fix configure.in to check for Win32 specialties
fix Makefile.in to make use of Win32 specialties
add SL45i (SLIK) to known phones
decreased maximum PDU size for file upload to 175 to fix SL4x v23 VCF upload
rearrange info() output
Diffstat (limited to 'comms')
-rw-r--r-- | comms/scmxx/Makefile | 18 | ||||
-rw-r--r-- | comms/scmxx/PLIST | 9 | ||||
-rw-r--r-- | comms/scmxx/distinfo | 6 |
3 files changed, 17 insertions, 16 deletions
diff --git a/comms/scmxx/Makefile b/comms/scmxx/Makefile index e907669b976..67fcf9f5b0d 100644 --- a/comms/scmxx/Makefile +++ b/comms/scmxx/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.18 2002/10/22 15:33:10 kleink Exp $ +# $NetBSD: Makefile,v 1.19 2003/03/16 10:21:03 kleink Exp $ # -DISTNAME= scmxx-0.6.1.6 +DISTNAME= scmxx-0.6.3.6 CATEGORIES= comms MASTER_SITES= http://ma2geo.mathematik.uni-karlsruhe.de/~hendrik/scmxx/download/ EXTRACT_SUFX= .tar.bz2 @@ -10,6 +10,9 @@ MAINTAINER= kleink@netbsd.org HOMEPAGE= http://www.hendrik-sattler.de/scmxx/ COMMENT= Data exchange utility for Siemens mobile phones +USE_BUILDLINK2= yes +CONFIGURE_ARGS+= --with-iconv=${BUILDLINK_DIR} + GNU_CONFIGURE= yes USE_GMAKE= yes @@ -17,18 +20,17 @@ post-install: ${INSTALL_DATA_DIR} ${PREFIX}/share/doc/scmxx ${INSTALL_DATA} ${WRKSRC}/docs/doc_sources.txt \ ${PREFIX}/share/doc/scmxx - ${INSTALL_DATA} ${WRKSRC}/docs/greekchars.txt \ - ${PREFIX}/share/doc/scmxx ${INSTALL_DATA} ${WRKSRC}/docs/gsmcharset.txt \ ${PREFIX}/share/doc/scmxx - ${INSTALL_DATA} ${WRKSRC}/docs/specialchars.txt \ - ${PREFIX}/share/doc/scmxx ${INSTALL_DATA_DIR} ${PREFIX}/share/examples/scmxx ${INSTALL_DATA} ${WRKSRC}/examples/phonebook \ ${PREFIX}/share/examples/scmxx - ${INSTALL_DATA} ${WRKSRC}/examples/sms \ + ${INSTALL_DATA} ${WRKSRC}/examples/sms.txt \ + ${PREFIX}/share/examples/scmxx + ${INSTALL_DATA} ${WRKSRC}/examples/vCalendar.vcs \ ${PREFIX}/share/examples/scmxx - ${INSTALL_DATA} ${WRKSRC}/examples/vCalendar \ + ${INSTALL_DATA} ${WRKSRC}/examples/vCard.vcf \ ${PREFIX}/share/examples/scmxx +.include "../../converters/libiconv/buildlink2.mk" .include "../../mk/bsd.pkg.mk" diff --git a/comms/scmxx/PLIST b/comms/scmxx/PLIST index eda6411e764..016eaa84d23 100644 --- a/comms/scmxx/PLIST +++ b/comms/scmxx/PLIST @@ -1,12 +1,11 @@ -@comment $NetBSD: PLIST,v 1.4 2002/05/20 21:54:18 kleink Exp $ +@comment $NetBSD: PLIST,v 1.5 2003/03/16 10:21:03 kleink Exp $ bin/scmxx man/man1/scmxx.1 share/doc/scmxx/doc_sources.txt -share/doc/scmxx/greekchars.txt share/doc/scmxx/gsmcharset.txt -share/doc/scmxx/specialchars.txt share/examples/scmxx/phonebook -share/examples/scmxx/sms -share/examples/scmxx/vCalendar +share/examples/scmxx/sms.txt +share/examples/scmxx/vCalendar.vcs +share/examples/scmxx/vCard.vcf @dirrm share/doc/scmxx @dirrm share/examples/scmxx diff --git a/comms/scmxx/distinfo b/comms/scmxx/distinfo index 9edbe904796..ed4a39292ce 100644 --- a/comms/scmxx/distinfo +++ b/comms/scmxx/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.15 2002/10/22 15:33:10 kleink Exp $ +$NetBSD: distinfo,v 1.16 2003/03/16 10:21:03 kleink Exp $ -SHA1 (scmxx-0.6.1.6.tar.bz2) = 7ba9060c8e1d3262b71ab07dacb67ecc6f3ef986 -Size (scmxx-0.6.1.6.tar.bz2) = 52968 bytes +SHA1 (scmxx-0.6.3.6.tar.bz2) = f77a21629873d5a34e99d1bcbd3f06c29e835740 +Size (scmxx-0.6.3.6.tar.bz2) = 77096 bytes |