33f252e7e6
Last-minute fixes before releasing 0.12.4 Fix for Sony SJ-22 device sync (fixes bug #1957 filed at bugs.pilot-link.org) Updated documentation to reflect a cleaner layout and output (closes bug #1913 in the bugtracker at bugs.pilot-link.org Integrate jpilot's contacts support. See http://lists.pilot-link.org/pipermail/pilot-link-devel/2009-February/001762.html Adding CalendarDB support to pilot-link Adding minor tweak for m4 macro optimizations Minor fix for a buffer size miscalculation (from Nicholas Piper) Adding missing newline at the end of the file. pi-debug.h, pi-threadsafe.h: Cleaning up unnecessary references to config.h here. Added pi-md5.h.in generates pi-md5.h Now autogenerated from pi-md5.h.in Add minor fix for reported segfault when closing down bluetooth connection. This closes bug #1872 UINT32 was broken on 64-bit systems. This should fix it on most systems. Increment ChangeLog to test/validate an LDAP permission issue with LockDir Implementing a Zire 22 fix from Tom Billiet Bump for 0.12.4 Added Aaron's fixes (oof! This has been in the queue for awhile. Sorry Aaron). This closes bug #1448.
34 lines
966 B
Makefile
34 lines
966 B
Makefile
# $NetBSD: Makefile,v 1.50 2009/08/09 08:36:34 wiz Exp $
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "../../comms/pilot-link/Makefile.common"
|
|
|
|
COMMENT= Tools to talk to the 3Com Pilot PDA
|
|
|
|
BUILDLINK_API_DEPENDS.pilot-link-libs= pilot-link-libs>=${PILOT_LINK_VERS}
|
|
|
|
USE_TOOLS+= gmake perl:run
|
|
USE_GNU_READLINE= YES
|
|
|
|
CONFIGURE_ARGS+= --with-perl5=${PERL5:Q}
|
|
CONFIGURE_ARGS+= --with-libpng
|
|
CONFIGURE_ARGS+= --with-readline
|
|
CONFIGURE_ARGS+= --enable-conduits
|
|
|
|
BUILD_DIRS= src bindings doc tests
|
|
|
|
post-patch:
|
|
cd ${WRKSRC} && \
|
|
for mf in src/Makefile.in src/*/Makefile.in tests/Makefile.in ; do \
|
|
${CP} $$mf $$mf.old && \
|
|
${SED} -e 's|..top_builddir./lib[^/]*/\(lib[^\.]*\.la\)|${PREFIX}/lib/\1|g' \
|
|
< $$mf.old > $$mf ; \
|
|
done
|
|
|
|
.include "../../comms/pilot-link-libs/buildlink3.mk"
|
|
.include "../../devel/popt/buildlink3.mk"
|
|
.include "../../devel/readline/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|