blob: fb38e417bfc6e24ebad652f3eeaef7e74dc41da0 (
plain) (
blame)
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
70
71
72
73
74
|
# Created by: Cezary Morga <cm@therek.net>
# $FreeBSD$
PORTNAME= Wx
PORTVERSION= 0.99.16
CATEGORIES= x11-toolkits perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
DISTNAME= ${PORTNAME}-${PORTVERSION:R}${PORTVERSION:E}
MAINTAINER= pclin@FreeBSD.org
COMMENT= Perl5 interface to the wxWidgets cross-platform GUI toolkit
LICENSE= ART10 GPLv1
LICENSE_COMB= dual
BUILD_DEPENDS= p5-Alien-wxWidgets>=0.25:${PORTSDIR}/x11-toolkits/p5-Alien-wxWidgets \
p5-ExtUtils-XSpp>=0.16.03:${PORTSDIR}/devel/p5-ExtUtils-XSpp
RUN_DEPENDS:= ${BUILD_DEPENDS}
OPTIONS_DEFINE= UNICODE
OPTIONS_DEFAULT= UNICODE
UNICODE_DESC= Build with Unicode support
USES= perl5
USE_PERL5= configure
USE_WX= 2.6+
WX_COMPS= wx contrib
CC= ${CXX}
CFLAGS+= -pthread -Wno-write-strings
MAKE_JOBS_UNSAFE= yes
MAN1= wxperl_overload.1
MAN3= Wx.3 \
Wx::Api.3 \
Wx::Loader.3 \
Wx::NewClass.3 \
Wx::Perl::Carp.3 \
Wx::Perl::SplashFast.3 \
Wx::Perl::TextValidator.3 \
Wx::Socket.3 \
Wx::Thread.3 \
Wx::XSP::Overload.3 \
Wx::build::MakeMaker.3 \
Wx::build::MakeMaker::Win32_MSVC.3 \
Wx::build::Options.3 \
Wx::build::Utils.3
.include <bsd.port.pre.mk>
.if ${PERL_LEVEL} < 501508
BUILD_DEPENDS+= p5-ExtUtils-ParseXS>=3.15:${PORTSDIR}/devel/p5-ExtUtils-ParseXS
RUN_DEPENDS+= p5-ExtUtils-ParseXS>=3.15:${PORTSDIR}/devel/p5-ExtUtils-ParseXS
.endif
.if ${PORT_OPTIONS:MUNICODE}
WX_UNICODE= yes
ALIEN_UNICODE= ${LS} ${SITE_PERL}/${PERL_ARCH}/Alien/wxWidgets/Config | ${GREP} "_uni_"
pre-configure:
@if [ ! "$$(${ALIEN_UNICODE})" ]; then \
${ECHO_MSG}; \
${ECHO_MSG} "===> It seems x11-toolkits/p5-Alien-wxWidgets was compiled without"; \
${ECHO_MSG} " Unicode suport. Please rebuild it and try again."; \
${ECHO_MSG}; \
exit 1; \
fi
.endif
post-configure:
@${FIND} ${WRKSRC} -name "Makefile" -type f | ${XARGS} \
${REINPLACE_CMD} -e 's/^CCFLAGS = .*$$/CCFLAGS = ${CFLAGS}/'
.include <bsd.port.post.mk>
|