summaryrefslogtreecommitdiff
path: root/comms/p5-pilot-link
AgeCommit message (Collapse)AuthorFilesLines
2007-05-15To install perl module files, remove cookie file.obache1-1/+5
Should fix build problem of comms/pilotmgr. Bump PKGREVISION.
2007-03-27Fix installation and PLIST after update to 0.12.2.wiz2-6/+6
Install failed, so no PKGREVISION bump necessary.
2007-03-24Prepare for switching to NO_MTREE=yes.joerg1-1/+2
2007-02-22Whitespace cleanup, courtesy of pkglint.wiz1-3/+3
Patch provided by Sergey Svishchev in private mail.
2007-01-30No X11 servicable part included.joerg1-2/+1
2007-01-26Update pilot-link-libs, pilot-link, p5-pilot-link to 0.12.1markd1-9/+18
pilot-link v0.12.1 There isn't much "new" in this release, just some rapid-fire bug fixes reported from users and a lot of code has been cleaned up in the tree to remove unnecessary includes. * Code cleanup in libpisock, libpisync, src and include * Fixed the installation faux pas with udev rules, oops! pilot-link v0.12.0 pilot-link 0.12.0 "Trois ans" ("Three Years") is now official. There have been so many changes in this release and I can't remember them all, but here's the short list: * Many of the userland binaries now have new names, to avoid some potential namespace collisions (dlpsh is now pilot-dlpsh for example, memos is now pilot-memos). If you use scripts which call these applications, you may have to make minor changes to accomodate the new naming scheme. * Documentation is now in DocBook XML, and manpages are dynamically generated from that source. Other docs are much more detailed, and there are quite a few README files that have been added to help. * Direct libusb support! This is one of the most monumental features in 0.12.0, and should help those who have trouble using the kernel's visor driver in Linux with their device. Now you can get a healthy 300% to 600% speedup in sync times, depending on your Palm's processor speed. See doc/README.libusb for details. Thanks go to Zephania Hull for working out how to get native libusb working with pilot-link. * Native support for Mac OS X. You can now just download the tarball and build it directly on Mac OS X machines, and it will just run. Thanks go to Florent Pillet for his tireless work in getting this all working efficiently and for squashing countless bugs in the libraries along the way. * So many other fixes, additions, features and new things to count.
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz1-2/+2
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-2/+2
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-2/+2
CONFIGURE_ARGS.
2005-08-08Remove a patch that was forcing installation of the module into thejlam1-2/+2
site directories. Bump the PKGREVISION of p5-pilot-link to 4.
2005-08-06Bump the PKGREVISIONs of all (638) packages that hardcode the locationsjlam1-2/+2
of Perl files to deal with the perl-5.8.7 update that moved all pkgsrc-installed Perl files into the "vendor" directories.
2005-07-13Turn PERL5_PACKLIST into a relative path instead of an absolute path.jlam1-2/+2
These paths are now relative to PERL5_PACKLIST_DIR, which currently defaults to ${PERL5_SITEARCH}. There is no change to the binary packages.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+2
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-25Remove unused distinfo file.wiz1-4/+0
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-2/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-04-11Convert to buildlink3.snj1-4/+4
2004-01-22replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2003-07-21COMMENT should start with a capital letter.martti1-2/+2
2003-07-13PKGREVISION bump for libiconv update.wiz1-1/+2
2003-01-10Update pilot-link packages to 0.11.7. Changes are too numerous to listrh2-22/+36
here. They include * tons of bug fixes, * USB support, * C++ support, * restructured libraries; and * tons of other new features.
2002-10-27Use perl5/module.mk.seb1-11/+2
No need to tweak OTHERLDFLAGS.
2002-09-21buildlink1 -> buildlink2jlam1-6/+7
2002-09-10Since the major of libiconv was increased during the update to 1.8,wiz1-1/+2
bump dependency to latest libiconv version; recursively also bump all dependencies of packages depending on libiconv. Requested by fredb.
2001-11-26Buildlinkify, in the sense that only the perl headers are found injlam1-3/+4
${PREFIX} -- everything else is pickup up from ${BUILDLINK_DIR}.
2001-10-31Move pkg/ files into package's toplevel directoryzuntum3-1/+1
2001-10-18SVR4 packages have a limit of 9 chars for a package name.veego1-1/+2
The automatic truncation in gensolpkg doesn't work for packages which have the same package name for the first 5-6 chars. e.g. amanda-server and amanda-client would be named amanda and amanda. Now, we add a SVR4_PKGNAME and use amacl for amanda-client and amase for amanda-server. All svr4 packages also have a vendor tag, so we have to reserve some chars for this tag, which is normaly 3 or 4 chars. Thats why we can only use 6 or 5 chars for SVR4_PKGNAME. I used 5 for all the packages, to give the vendor tag enough room. All p5-* packages and a few other packages have now a SVR4_PKGNAME.
2001-09-06Fix build problem caused by buildlink conversion.tron1-1/+2
2001-06-27Use distribution contained in latest pilot-link-0.9.5 sources. Renumberjlam3-40/+23
to 0.1, the correct version number for this package. Only one package (pilotmgr) depended on p5-pilot-link-*, so this should be okay.
2001-04-20Move to sha1 digests, and add distfile sizes.agc1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-6/+4
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2000-08-29Until the sources for these packages catch up to the current (post-5.6.0)jlam1-2/+6
Perl API, we need to pass -DPERL_POLLUTE=1 to the build process to look like an older perl.
2000-08-27Convert packages to use PERL5_PACKLIST (part 1). These were the easyjlam2-19/+10
ones to do, and each compiled and installed/de-installed apparently correctly. As a side effect of the dynamic PLIST, we no longer need to have separate -static and -shared PLISTs. It's now easier than ever to make a perl5 package for NetBSD :)
2000-08-14No more USE_PKGLIBTOOL.wiz3-38/+17
LTCONFIG_OVERRIDE -> minus one patch.
2000-06-01s/USE_LIBTOOL/USE_PKGLIBTOOL/rh1-2/+2
Add a new USE_LIBTOOL definition that uses the libtool package instead of pkglibtool which is now considered outdated. USE_PKGLIBTOOL is available for backwards compatibility with old packages but is deprecated for new packages.
1999-10-07Remove me as maintainer of those packages.tron1-2/+2
1999-09-07Some cleanup:bad1-6/+6
i386-netbsd -> ${MACHINE_ARCH}-${LOWER_OPSYS} MACHINE_GNU_ARCH -> MACHINE_ARCH /./ -> /
1999-07-09Add package patch-sum filesagc1-0/+4
1999-05-24Fix run time library search path.tron2-1/+13
1999-05-22Sync "p5-pilot-link" version with "pilot-link": update to 0.9.3.tron2-6/+6
1999-05-20Import new "p5-pilot-link" package:tron6-0/+69
perl interface to pilot-link library