1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00

Patch to use the new names of some of the usb.h's structures' fields if

the OSVERSION is above 450000. Add a maintainer submitted patch to
recognize the Palm's vendor-id (not just Handspring). Update pkg-descr
accordingly and bump PORTREVISION.

Approved by:	maintainer
This commit is contained in:
Mikhail Teterin 2002-04-09 02:00:19 +00:00
parent 8025765d7c
commit d7acd0ef07
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=57477
3 changed files with 36 additions and 3 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= coldsync
PORTVERSION= 2.1.3
PORTREVISION= 1
PORTREVISION= 2
CATEGORIES= palm comms
MASTER_SITES= http://www.ooblick.com/software/coldsync/
@ -35,6 +35,12 @@ CONFIGURE_ARGS+= --with-i18n
# I don't know how to test for a version of {Net,Open}BSD that supports USB.
.if ${OPSYS} == "FreeBSD" && ${OSVERSION} >= 400000
CONFIGURE_ARGS+= --with-usb
.if ${OSVERSION} >= 450000
post-patch:
${PERL} -pi -e 's,udi\.(\S+),udi.udi_\1,g;' \
-e 's,ur\.(\S+),ur.ucr_\1,g;' \
${WRKSRC}/configure ${WRKSRC}/libpconn/PConnection_usb.c
.endif
.endif
post-install:

View File

@ -0,0 +1,27 @@
Index: libpconn/PConnection_usb.c
===================================================================
RCS file: /var/lib/cvs/coldsync/libpconn/PConnection_usb.c,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- libpconn/PConnection_usb.c 30 Jul 2001 07:23:56 -0000 1.26
+++ libpconn/PConnection_usb.c 20 Aug 2001 09:13:00 -0000 1.27
@@ -94,6 +94,7 @@
#define hs_usbfun_MAX 4
#define HANDSPRING_VENDOR_ID 0x082d
+#define PALM_VENDOR_ID 0x0830
static char *hs_usb_functions[] = {
"Generic",
@@ -505,7 +506,9 @@
}
- if (udi.vendorNo != HANDSPRING_VENDOR_ID) {
+ if ((udi.vendorNo != HANDSPRING_VENDOR_ID) &&
+ (udi.vendorNo != PALM_VENDOR_ID))
+ {
fprintf(stderr,
_("%s: Warning: Unexpected USB vendor ID %#x.\n"),
"pconn_usb_open", udi.vendorNo);

View File

@ -1,7 +1,7 @@
ColdSync is a robust, extensible, portable tool for
synchronizing PalmOS devices (PalmPilot et al.) with a Unix
workstation. It also supports USB connections to a Visor, under
FreeBSD 4.0.
workstation. It also supports USB connections, under FreeBSD 4.0
and higher.
It runs without a GUI, and therefore allows you to sync
without running X.
ColdSync is extensible through the use of conduits, which