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
|
# $NetBSD: Makefile,v 1.17 2021/06/23 19:48:55 bacon Exp $
DISTNAME= swig-2.0.12
PKGNAME= ${DISTNAME:S/swig-/swig2-/}
PKGREVISION= 4
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=swig/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.swig.org/
COMMENT= Simplified Wrapper and Interface Generator (version 2)
LICENSE= 2-clause-bsd
CONFLICTS= swig-build-[0-9]*
# This package mostly can replace swig (1), but it is likely not
# entirely compatible (per upstream). So the plan is to keep
# devel/swig and devel/swig2 both for a while. This package is
# configured to install swig as "swig2", so that swig and swig2 can be
# installed in parallel. The downside of that is that depending
# packages must check for and use swig2. Thus, the decision about
# naming is open to being revisited.
## Notes about pkgsrc-wide transition to swig2:
# 2012-10: gnuradio is said to work with swig2 (private communication
# by gdt@ with a GNU Radio developer). However, it doesn't find 'swig2'.
# Solution: Use --program-suffix=2.0, not --program-suffix=2
# FindSWIG, installed by cmake, looks for executable named swig2.0, then swig
# bin/swig2.0 is the standard used by other OS's
# http://packages.debian.org/sid/i386/swig2.0/filelist
# http://svnweb.freebsd.org/ports/head/devel/swig20/pkg-plist?revision=306553&view=markup
# Keep the path from changing due to minor version bumps.
CONFIGURE_ARGS+= --with-swiglibdir=${PREFIX}/share/swig/2.0 \
--program-suffix=2.0
BUILD_TARGET= swig
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_TOOLS+= gmake pax
TOOLS_BROKEN+= perl
GNU_CONFIGURE= yes
GNU_CONFIGURE_STRICT= no # has sub-configures
INSTALLATION_DIRS+= share/doc/swig/2.0 share/examples/swig/2.0
CHECK_INTERPRETER_SKIP+= share/examples/swig/*
CHECK_WRKREF_SKIP+= share/examples/swig/*
# configure fails to generate this on NetBSD
LDFLAGS+= -lpcre
TEST_TARGET= check
# Tests require lots of other dependencies. There should be a better
# way to encode this, but for now they are commented out -gdt.
#.include "../../lang/python/extension.mk"
#.include "../../lang/php54/buildlink3.mk"
#.include "../../devel/boost-libs/buildlink3.mk"
post-install:
cd ${WRKSRC}/Doc/Manual && \
${INSTALL_DATA} SWIGDocumentation.html SWIGDocumentation.pdf \
*.png ${DESTDIR}${PREFIX}/share/doc/swig/2.0
cd ${WRKSRC}/Examples && \
pax -wr -s ',.*CVS.*,,' \
-s ',.*Makefile\.in$$,,' \
-s ',^test-suite.*,,' \
. ${DESTDIR}${PREFIX}/share/examples/swig/2.0
.include "../../devel/pcre/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|