[117158] trunk/dports/science/laldetchar
ram at macports.org
ram at macports.org
Mon Feb 17 16:04:16 PST 2014
Revision: 117158
https://trac.macports.org/changeset/117158
Author: ram at macports.org
Date: 2014-02-17 16:04:16 -0800 (Mon, 17 Feb 2014)
Log Message:
-----------
science/laldetchar: update to 0.1.0
non zero revision due to being in a testing repository prior to commit
Modified Paths:
--------------
trunk/dports/science/laldetchar/Portfile
Removed Paths:
-------------
trunk/dports/science/laldetchar/files/patch-swig-bindings-fix.diff
Modified: trunk/dports/science/laldetchar/Portfile
===================================================================
--- trunk/dports/science/laldetchar/Portfile 2014-02-18 00:04:12 UTC (rev 117157)
+++ trunk/dports/science/laldetchar/Portfile 2014-02-18 00:04:16 UTC (rev 117158)
@@ -2,10 +2,11 @@
PortSystem 1.0
PortGroup active_variants 1.1
+PortGroup conflicts_build 1.0
name laldetchar
-version 0.0.4
-revision 3
+version 0.1.0
+revision 2
categories science
platforms darwin
maintainers ram
@@ -19,14 +20,9 @@
homepage https://www.lsc-group.phys.uwm.edu/daswg/projects/lalsuite.html
master_sites http://www.lsc-group.phys.uwm.edu/daswg/download/software/source/lalsuite
-checksums rmd160 a0c9f63dd947260c0c518b936326fc80f1dbab08 \
- sha256 4e9d0c763f6e354ef55f18b31e56447b714caa0d17460cbc966a254e8da6514b
+checksums rmd160 fac4a4dae17496a38a05cb6c38c9110b7643bec0 \
+ sha256 e98ffe3f44ee02d1a0ff5ac754a179a90a6ae03a2d560f5c74efce28bf3c4763
-# upstream fix for swig bindings
-patchfiles patch-swig-bindings-fix.diff
-patch.pre_args -p1
-use_autoreconf yes
-
depends_build-append port:pkgconfig
depends_lib port:python27 \
@@ -54,6 +50,9 @@
pkgpythondir="${pythondir}/${name}" \
pkgpyexecdir="${pythondir}/${name}"
+# FIXME: fails to build if previous version active
+conflicts_build ${name}
+
variant swig_python description {Build python SWIG bindings} {
require_active_variants lal swig_python
require_active_variants lalframe swig_python
Deleted: trunk/dports/science/laldetchar/files/patch-swig-bindings-fix.diff
===================================================================
--- trunk/dports/science/laldetchar/files/patch-swig-bindings-fix.diff 2014-02-18 00:04:12 UTC (rev 117157)
+++ trunk/dports/science/laldetchar/files/patch-swig-bindings-fix.diff 2014-02-18 00:04:16 UTC (rev 117158)
@@ -1,192 +0,0 @@
-From c8df7e705a905f906d031d11172c46e2cc77757f Mon Sep 17 00:00:00 2001
-From: Karl Wette <karl.wette at ligo.org>
-Date: Tue, 20 Aug 2013 11:10:32 +0200
-Subject: [PATCH 1/3] SWIG: fix include path
-
-* -I flags should all be in SWIG_CPPFLAGS, to share between SWIG and C compiler
----
- gnuscripts/lalsuite_swig.m4 | 7 ++-----
- 1 file changed, 2 insertions(+), 5 deletions(-)
-
-diff --git a/gnuscripts/lalsuite_swig.m4 b/gnuscripts/lalsuite_swig.m4
-index 7fe5f47..7fe3e9d 100644
---- a/gnuscripts/lalsuite_swig.m4
-+++ b/gnuscripts/lalsuite_swig.m4
-@@ -1,7 +1,7 @@
- # SWIG configuration
- # Author: Karl Wette, 2011, 2012
- #
--# serial 38
-+# serial 39
-
- # enable SWIG wrapping modules
- AC_DEFUN([LALSUITE_ENABLE_SWIG],[
-@@ -143,15 +143,12 @@ AC_DEFUN([LALSUITE_USE_SWIG],[
- SWIG_SWIGFLAGS="${SWIG_SWIGFLAGS} -MP"
- ])
-
-- # look here for interfaces and LAL headers
-- SWIG_SWIGFLAGS="${SWIG_SWIGFLAGS} -I\$(abs_top_builddir)/include"
--
- # send language-specific SWIG output files to libtool directory
- AC_SUBST(SWIG_OUTDIR,["\$(abs_builddir)/${objdir}"])
- SWIG_SWIGFLAGS="${SWIG_SWIGFLAGS} -outdir \$(SWIG_OUTDIR)"
-
- # flags for generating/compiling SWIG wrapping module sources
-- AC_SUBST(SWIG_CPPFLAGS,[])
-+ AC_SUBST(SWIG_CPPFLAGS,["-I\$(abs_top_builddir)/include"])
- for flag in ${swig_save_CPPFLAGS}; do
- AS_CASE([${flag}],
- [-I*],[SWIG_CPPFLAGS="${SWIG_CPPFLAGS} ${flag} `echo ${flag} | ${SED} 's|/include$|/swig|'`"],
---
-1.8.3.4
-
-From a855c2ec06e92773e5d16257bddc5412aa3f9ff0 Mon Sep 17 00:00:00 2001
-From: Karl Wette <karl.wette at ligo.org>
-Date: Tue, 20 Aug 2013 11:29:25 +0200
-Subject: [PATCH 2/3] SWIG: revised SWIG binary checking code
-
-- mostly cosmetic changes to which log messages get printed
----
- gnuscripts/lalsuite_swig.m4 | 36 +++++++++++++++++++-----------------
- 1 file changed, 19 insertions(+), 17 deletions(-)
-
-diff --git a/gnuscripts/lalsuite_swig.m4 b/gnuscripts/lalsuite_swig.m4
-index 7fe3e9d..e9ac7ea 100644
---- a/gnuscripts/lalsuite_swig.m4
-+++ b/gnuscripts/lalsuite_swig.m4
-@@ -1,7 +1,7 @@
- # SWIG configuration
- # Author: Karl Wette, 2011, 2012
- #
--# serial 39
-+# serial 40
-
- # enable SWIG wrapping modules
- AC_DEFUN([LALSUITE_ENABLE_SWIG],[
-@@ -63,19 +63,18 @@ AC_DEFUN([LALSUITE_ENABLE_SWIG_LANGUAGE],[
- m4_popdef([lowercase])
- ])
-
--# check the version of ${SWIG}, and store it in ${SWIG_VERSION}
-+# check the version of ${SWIG}, and store it in ${swig_version}
-+# return swig_version=0.0 if ${SWIG} is not an executable
- AC_DEFUN([_LALSUITE_CHECK_SWIG_VERSION],[
-- AC_MSG_CHECKING([${SWIG} version])
-- SWIG_VERSION=0.0
-+ swig_version=0.0
- swig_version_output=[`${SWIG} -version 2>/dev/null`]
- AS_IF([test $? -eq 0],[
- swig_version_regex=['s|^ *SWIG [Vv]ersion \([0-9.][0-9.]*\)|\1|p;d']
-- SWIG_VERSION=[`echo "${swig_version_output}" | ${SED} "${swig_version_regex}"`]
-- AS_IF([test "x${SWIG_VERSION}" = x],[
-+ swig_version=[`echo "${swig_version_output}" | ${SED} "${swig_version_regex}"`]
-+ AS_IF([test "x${swig_version}" = x],[
- AC_MSG_ERROR([could not determine version of ${SWIG}])
- ])
- ])
-- AC_MSG_RESULT([${SWIG_VERSION}])
- ])
-
- # configure SWIG wrapping modules
-@@ -110,27 +109,30 @@ AC_DEFUN([LALSUITE_USE_SWIG],[
- AM_CONDITIONAL(SWIG_BUILD,[test "${swig_build_any}" = true])
- AM_COND_IF(SWIG_BUILD,[
-
-- # check for SWIG binary: use value of ${SWIG} first,
-- # then check for common SWIG binary names
-+ # check for SWIG binary with version >= ${swig_min_version}; use
-+ ## value of ${SWIG} if set, otherwise check common SWIG binary names
- AS_IF([test "x${SWIG}" != x],[
-+ AC_MSG_CHECKING([${SWIG} version])
- _LALSUITE_CHECK_SWIG_VERSION
-- AS_VERSION_COMPARE([${SWIG_VERSION}],[${swig_min_version}],[
-+ AS_VERSION_COMPARE([${swig_version}],[${swig_min_version}],[
- AC_MSG_ERROR([require ${SWIG} version >= ${swig_min_version}])
- ])
-+ AC_MSG_RESULT([${swig_version}])
- ],[
-+ AC_MSG_CHECKING([for SWIG with version >= ${swig_min_version}])
- for SWIG in swig swig2.0; do
- _LALSUITE_CHECK_SWIG_VERSION
-- AS_VERSION_COMPARE([${SWIG_VERSION}],[${swig_min_version}],[],[break],[break])
-+ AS_VERSION_COMPARE([${swig_version}],[${swig_min_version}],[],[break],[break])
- SWIG=
- done
-+ AS_IF([test "x${SWIG}" = x],[
-+ AC_MSG_ERROR([could not find SWIG with version >= ${swig_min_version}])
-+ ])
-+ AC_MSG_RESULT([${SWIG} (version ${swig_version})])
- ])
-
-- # if a SWIG binary was found, get its full path and print its version, otherwise fail
-- AS_IF([test "x${SWIG}" != x],[
-- AC_PATH_PROG(SWIG,["${SWIG}"])
-- ],[
-- AC_MSG_ERROR([could not find SWIG with version >= ${swig_min_version}])
-- ])
-+ # get full path of SWIG binary
-+ AC_PATH_PROG(SWIG,["${SWIG}"])
-
- # symbol prefixes for this LAL library
- AC_SUBST(SWIG_SYMBOL_PREFIXES,["$1"])
---
-1.8.3.4
-
-From 3d5852184dce91962be1343a83c992f18d0e6f47 Mon Sep 17 00:00:00 2001
-From: Karl Wette <karl.wette at ligo.org>
-Date: Tue, 20 Aug 2013 12:23:12 +0200
-Subject: [PATCH 3/3] SWIG: fix include path, take 2
-
-- flag -I\$(abs_top_builddir)/include needs to be in both SWIG_SWIGFLAGS
- and SWIG_CPPFLAGS, for interface preprocessing/generation and compilation
-- remove extraneous -I\$(top_builddir)/include from end of SWIG_CPPFLAGS
----
- gnuscripts/lalsuite_swig.m4 | 10 ++++------
- 1 file changed, 4 insertions(+), 6 deletions(-)
-
-diff --git a/gnuscripts/lalsuite_swig.m4 b/gnuscripts/lalsuite_swig.m4
-index e9ac7ea..b28e80d 100644
---- a/gnuscripts/lalsuite_swig.m4
-+++ b/gnuscripts/lalsuite_swig.m4
-@@ -1,7 +1,7 @@
- # SWIG configuration
- # Author: Karl Wette, 2011, 2012
- #
--# serial 40
-+# serial 41
-
- # enable SWIG wrapping modules
- AC_DEFUN([LALSUITE_ENABLE_SWIG],[
-@@ -137,8 +137,8 @@ AC_DEFUN([LALSUITE_USE_SWIG],[
- # symbol prefixes for this LAL library
- AC_SUBST(SWIG_SYMBOL_PREFIXES,["$1"])
-
-- # flags for generating SWIG wrapping module sources
-- AC_SUBST(SWIG_SWIGFLAGS,["-Wextra -Werror"])
-+ # flags for preprocessing/generating SWIG wrapping module sources
-+ AC_SUBST(SWIG_SWIGFLAGS,["-Wextra -Werror -I\$(abs_top_builddir)/include"])
-
- # add -MP option if SWIG is greater than version 2.0.9
- AS_VERSION_COMPARE([${swig_version}],[2.0.9],[],[],[
-@@ -157,6 +157,7 @@ AC_DEFUN([LALSUITE_USE_SWIG],[
- [*],[SWIG_CPPFLAGS="${SWIG_CPPFLAGS} ${flag}"]
- )
- done
-+ SWIG_CPPFLAGS="${SWIG_CPPFLAGS} -I/usr/include"
-
- # are we (not) in debugging mode?
- AS_IF([test "x${enable_debug}" = xno],[
-@@ -170,9 +171,6 @@ AC_DEFUN([LALSUITE_USE_SWIG],[
- SWIG_CPPFLAGS="${SWIG_CPPFLAGS} -DHAVE_LIBGSL"
- ])
-
-- # look here for interfaces and LAL headers (but not for preprocessing)
-- SWIG_CPPFLAGS="${SWIG_CPPFLAGS} -I\$(top_builddir)/include -I/usr/include"
--
- # flags for compiling SWIG wrapping module sources
- AC_SUBST(SWIG_CFLAGS,[])
- for arg in ${swig_save_CFLAGS}; do
---
-1.8.3.4
-
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.macosforge.org/pipermail/macports-changes/attachments/20140217/41a411b6/attachment.html>
More information about the macports-changes
mailing list