blob: 41a13cc6916cd857653983a20d5dd39c415ce8da (
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
|
# New ports collection makefile for: SWIG
# Date created: 19 April 1996
# Whom: jkh
#
# $FreeBSD$
#
PORTNAME= swig
PORTVERSION= 1.3.34
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= rafan@FreeBSD.org
COMMENT= Simplified Wrapper and Interface Generator
USE_AUTOTOOLS= autoconf:261:env libtool:15
VER= ${PORTVERSION:R}
PLIST_SUB+= PORTVERSION=${PORTVERSION}
# Supported languages: guile perl php4 python ruby tcl ocaml pike java csharp
# allegrocl modula3 chicken
WRKSRC= ${WRKDIR}/${DISTNAME}
CONFIGURE_ENV+= CFLAGS="${CFLAGS} -fPIC -DPIC"
ALL_TARGET= swig
PLIST_SUB+= VER="${VER}"
.include <bsd.port.pre.mk>
post-patch:
${REINPLACE_CMD} -e 's/SKIP_CHICKEN=$$/&"1"/; \
s|$$RUBY |${RUBY} |; \
s|^PHP4CONFIG=.*$$|PHP4CONFIG=php-config|; \
' ${WRKSRC}/configure
${REINPLACE_CMD} -e 's|malloc.h|stdlib.h|' \
${WRKSRC}/Lib/lua/luarun.swg
post-configure:
${REINPLACE_CMD} -e 's#null#&|| true#' ${WRKSRC}/Makefile
post-install:
${LN} -f ${PREFIX}/bin/swig ${PREFIX}/bin/swig${VER}
${MKDIR} ${EXAMPLESDIR}/${PORTVERSION}
cd ${WRKSRC}/Examples && ${FIND} . -type d \
-exec ${INSTALL} -d ${EXAMPLESDIR}/${PORTVERSION}/{} \;
cd ${WRKSRC}/Examples && ${FIND} . -type f \
-exec ${INSTALL_DATA} {} ${EXAMPLESDIR}/${PORTVERSION}/{} \;
.if !defined(NOPORTDOCS)
${MKDIR} ${DOCSDIR}/${PORTVERSION}
cd ${WRKSRC}/Doc && ${FIND} . -type d \
-exec ${INSTALL} -d ${DOCSDIR}/${PORTVERSION}/{} \;
cd ${WRKSRC}/Doc && ${FIND} . -type f \
-exec ${INSTALL_DATA} {} ${DOCSDIR}/${PORTVERSION}/{} \;
.endif
.include <bsd.port.post.mk>
|