aboutsummaryrefslogtreecommitdiffstats
path: root/devel/swig13/Makefile
blob: 8d5826b30b640ec418416bbbcd8148a35decd47d (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
# New ports collection makefile for:    SWIG
# Date created:         19 April 1996
# Whom:             jkh
#
# $FreeBSD$
#

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

MAINTAINER= alex@foxybanana.com
COMMENT=    Simplified Wrapper and Interface Generator

USE_AUTOTOOLS=  autoconf:253: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"/' ${WRKSRC}/configure
    ${REINPLACE_CMD} -e 's|$$RUBY |${RUBY} |' ${WRKSRC}/configure

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>