aboutsummaryrefslogtreecommitdiffstats
path: root/devel/swig13/Makefile
blob: d7a4f08361d4a6f4157693c14f38f235e094f3b6 (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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
# New ports collection makefile for:    SWIG
# Date created:         19 April 1996
# Whom:             jkh
#
# $FreeBSD$
#

PORTNAME=   swig
PORTVERSION=    1.3.36
CATEGORIES= devel
MASTER_SITES=   ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}

MAINTAINER= rafan@FreeBSD.org
COMMENT=    Simplified Wrapper and Interface Generator

USE_AUTOTOOLS=  autoconf:262:env libtool:15

VER=        ${PORTVERSION:R}
PLIST_SUB+= PORTVERSION=${PORTVERSION}

# Supported languages: allegrocl c# clisp chicken guile java lua ocaml Octave
#                      perl php pike python R ruby tcl

WRKSRC=     ${WRKDIR}/${DISTNAME}
CONFIGURE_ENV+= CFLAGS="${CFLAGS} -fPIC -DPIC"
ALL_TARGET= swig
PLIST_SUB+= VER="${VER}"

WANT_LUA=   yes
WANT_LUA_VER=   5.0+

.include <bsd.port.pre.mk>

.if ${HAVE_LUA:Mlua-5.*} != ""
USE_LUA=    yes
LUA_COMPS=  lua:build
CONFIGURE_ARGS+=--with-lua=${LUA_BINDIR}/lua \
        --with-luaincl=${LUA_INCDIR} \
        --with-lualib=${LUA_LIBDIR}
.endif

OCTAVE_VER_CMD= ${LOCALBASE}/bin/octave-config -v 2>/dev/null || ${TRUE}

post-patch:
    ${SETENV} OCTAVE_VER=$$(${OCTAVE_VER_CMD}) \
    ${REINPLACE_CMD} -e 's|$$RUBY |${RUBY} |; \
        s|^PHP4CONFIG=.*$$|PHP4CONFIG=php-config|; \
        s|OCTAVEDIR=".*"|OCTAVEDIR="${LOCALBASE}/include/octave-$${OCTAVE_VER}"|; \
        ' ${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}
.if !defined(NOPORTEXAMPLES)
    ${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}/{} \;
.endif
.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

.if defined(MAINTAINER_MODE)
TMP_PREFIX= /tmp/${PKGNAME}
gen-pkg-plist:
    ${RM} -rf ${PLIST} ${TMP_PREFIX}
    ${MAKE} PLIST=pkg-plist PKG_DBDIR=${TMP_PREFIX}/pkgdb PREFIX=${TMP_PREFIX}/local clean all install
    ${PORTSDIR}/Tools/scripts/plist \
      -d -m ${PORTSDIR}/Templates/BSD.local.dist ${TMP_PREFIX}/local | ${SED} '\
        s,${DATADIR_REL},%%DATADIR%%,; \
        s,${DOCSDIR_REL},%%DOCSDIR%%,; \
        s,${EXAMPLESDIR_REL},%%EXAMPLESDIR%%,; \
        /%%DOCSDIR%%/s,^,%%PORTDOCS%%,; \
        /%%EXAMPLESDIR%%/s,^,%%PORTEXAMPLES%%,; \
        s,${PORTVERSION},%%PORTVERSION%%,; \
        s,${VER},%%VER%%, \
      ' > ${PLIST}
.endif

.include <bsd.port.post.mk>