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.
58 lines
1.5 KiB
Makefile
58 lines
1.5 KiB
Makefile
# $NetBSD: Makefile,v 1.43 2009/08/09 08:36:34 wiz Exp $
|
|
#
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
.include "../../comms/pilot-link/Makefile.common"
|
|
|
|
PKGNAME= p5-${DISTNAME}
|
|
|
|
COMMENT= Perl bindings for pilot-link
|
|
|
|
MAKE_JOBS_SAFE= no
|
|
|
|
BUILDLINK_API_DEPENDS.pilot-link-libs= pilot-link-libs>=${PILOT_LINK_VERS}
|
|
|
|
USE_TOOLS+= gmake
|
|
|
|
CONFIGURE_ARGS+= --enable-conduits
|
|
CONFIGURE_ARGS+= --with-perl=${PERL5:Q}
|
|
PERL5_CONFIGURE= NO
|
|
PERL5_PACKLIST= auto/PDA/Pilot/.packlist
|
|
PERL5_LDFLAGS= -lpisock
|
|
|
|
REPLACE_PERL+= bindings/Perl/h2xs-pilot-link src/pilot-ietf2datebook.pl
|
|
|
|
INSTALL_DIRS= bindings
|
|
INSTALLATION_DIRS= bin
|
|
BUILD_DIRS+= src
|
|
BUILD_DIRS+= ${INSTALL_DIRS}
|
|
|
|
SUBST_CLASSES+= progs
|
|
SUBST_STAGE.progs= post-patch
|
|
SUBST_MESSAGE.progs= Trim programs to build
|
|
SUBST_FILES.progs= src/Makefile.in
|
|
SUBST_SED.progs= -e s:@ENABLE_CONDUITS_TRUE@bin_PROGRAMS:@ENABLE_CONDUITS_TRUE@bin_PROGRAMSX:
|
|
|
|
post-extract:
|
|
rm -f ${WRKSRC}/bindings/Perl/pm_to_blib
|
|
|
|
#post-patch:
|
|
# cd ${WRKSRC} && \
|
|
# for mf in src/Makefile.in src/*/Makefile.in ; do \
|
|
# ${CP} $$mf $$mf.old && \
|
|
# ${SED} -e 's|..top_builddir./lib[^/]*/\(lib[^\.]*\.la\)|${PREFIX}/lib/\1|g' \
|
|
# < $$mf.old > $$mf ; \
|
|
# done
|
|
|
|
post-install:
|
|
.for bin in pilot-ietf2datebook pilot-undelete pilot-sync-plan
|
|
cd ${WRKSRC}/src && \
|
|
${INSTALL_SCRIPT} ${bin} ${DESTDIR}${PREFIX}/bin
|
|
.endfor
|
|
|
|
.include "../../comms/pilot-link-libs/buildlink3.mk"
|
|
.include "../../graphics/png/buildlink3.mk"
|
|
.include "../../lang/perl5/module.mk"
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|