blob: 82015f67d9c34a3f3bd4689c195932f30d816245 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
# $NetBSD: Makefile,v 1.50 2012/10/03 21:54:06 wiz Exp $
#
.include "../../comms/pilot-link/Makefile.common"
PKGNAME= p5-${DISTNAME}
PKGREVISION= 5
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
REPLACE_PERL+= bindings/Perl/dump.pl
REPLACE_PERL+= bindings/Perl/blib/lib/PDA/dump.pl
# Cannot use REPLACE_PERL for this because the substitution needs to be
# done either after build (on src/pilot-ietf2datebook, which is a build
# product) or not on the first line (on src/pilot-ietf2datebook.pl, which
# generates the installed script).
SUBST_CLASSES+= moreperl
SUBST_STAGE.moreperl= post-build
SUBST_MESSAGE.moreperl= Fixing Perl interpreter in build products.
SUBST_FILES.moreperl= src/pilot-ietf2datebook
SUBST_SED.moreperl= -e 1s,/usr/bin/env.perl,${PERL5:Q},
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"
|