blob: 775c45bc677010fa12d38edd58fd69420ccfed40 (
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
|
# New ports collection makefile for: SWIG
# Date created: 19 April 1996
# Whom: jkh
#
# $FreeBSD$
#
PORTNAME= swig
PORTVERSION= ${VER}p5
PORTREVISION= 9
CATEGORIES= devel perl5 python tcl84
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} \
ftp://ftp.mcc.ac.uk/pub/mvc/swig/
MASTER_SITE_SUBDIR= ${PORTNAME}
DISTNAME= ${PORTNAME}${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Simplified Wrapper and Interface Generator
BUILD_DEPENDS= ${PYTHON_CMD}:${PYTHON_PORTSDIR} \
${LOCALBASE}/bin/tclsh8.4:${PORTSDIR}/lang/tcl84
VER= 1.1
USE_PERL5= yes
USE_PYTHON= yes
PYTHON_NO_DEPENDS= yes
INSTALLS_SHLIB= yes
WRKSRC= ${WRKDIR}/${PORTNAME:U}${PORTVERSION}
GNU_CONFIGURE= yes
CONFIGURE_ENV= CFLAGS="${CFLAGS} -fpic -DPIC" PYTHON_VERSION=${PYTHON_VERSION}
CONFIGURE_ARGS= --with-tclincl=${LOCALBASE}/include/tcl8.4/ \
--with-tcllib=${LOCALBASE}/lib/tcl8.4/ \
--with-pyincl=${PYTHONPREFIX_INCLUDEDIR} \
--with-pylib=${LOCALBASE}/lib
ALL_TARGET= all runtime
MAN1= swig.1
PLIST_SUB= VER="${VER}"
NO_LATEST_LINK= yes
.include <bsd.port.pre.mk>
.if ${ARCH} == "sparc64"
BROKEN= "Does not compile on sparc64 (needs -fPIC)"
.endif
post-install:
${LN} -f ${PREFIX}/bin/swig ${PREFIX}/bin/swig${VER}
.include <bsd.port.post.mk>
|