diff options
author | rh <rh@pkgsrc.org> | 2003-01-10 04:30:16 +0000 |
---|---|---|
committer | rh <rh@pkgsrc.org> | 2003-01-10 04:30:16 +0000 |
commit | dd4a5ac2577c0ab14cace324752c4d377ec05b31 (patch) | |
tree | 3fadb213a41083c07768664c6a91a5abd5044a29 /comms/pilot-link/Makefile | |
parent | 68e7b43367439626cbfc52289b4092f4a68eebcb (diff) | |
download | pkgsrc-dd4a5ac2577c0ab14cace324752c4d377ec05b31.tar.gz |
Update pilot-link packages to 0.11.7. Changes are too numerous to list
here. They include
* tons of bug fixes,
* USB support,
* C++ support,
* restructured libraries; and
* tons of other new features.
Diffstat (limited to 'comms/pilot-link/Makefile')
-rw-r--r-- | comms/pilot-link/Makefile | 26 |
1 files changed, 18 insertions, 8 deletions
diff --git a/comms/pilot-link/Makefile b/comms/pilot-link/Makefile index d8ec22b856c..4efe943d9f0 100644 --- a/comms/pilot-link/Makefile +++ b/comms/pilot-link/Makefile @@ -1,29 +1,39 @@ -# $NetBSD: Makefile,v 1.29 2002/09/21 07:12:32 jlam Exp $ +# $NetBSD: Makefile,v 1.30 2003/01/10 04:30:17 rh Exp $ # .include "../../comms/pilot-link/Makefile.common" -PKGNAME= pilot-link-${PILOT_LINK_VERS} -PKGREVISION= 1 COMMENT= Tools to talk to the 3Com Pilot PDA BUILDLINK_DEPENDS.pilot-link-libs= pilot-link-libs>=${PILOT_LINK_VERS} -USE_BUILDLINK2= # defined -USE_X11= # defined -USE_GNU_READLINE= # defined +USE_X11= YES +USE_GMAKE= YES +USE_BUILDLINK2= YES +USE_GNU_READLINE= YES CONFIGURE_ARGS+= --with-perl5=${PERL5} CONFIGURE_ARGS+= --with-readline21 CONFIGURE_ARGS+= --with-tcl=${BUILDLINK_PREFIX.tcl} CONFIGURE_ARGS+= --with-tk=${BUILDLINK_PREFIX.tk} -LIBS+= -lpisock -liconv +BUILD_DIRS= ${WRKSRC}/src +BUILD_DIRS+= ${WRKSRC}/bindings +BUILD_DIRS+= ${WRKSRC}/doc +BUILD_DIRS+= ${WRKSRC}/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 -INSTALL_TARGET= install-execs install-man .include "../../comms/pilot-link-libs/buildlink2.mk" .include "../../devel/readline/buildlink2.mk" +.include "../../graphics/png/buildlink2.mk" .include "../../lang/perl5/buildlink2.mk" .include "../../lang/tcl/buildlink2.mk" .include "../../x11/tk/buildlink2.mk" |