summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorahoka <ahoka@pkgsrc.org>2009-10-25 12:49:04 +0000
committerahoka <ahoka@pkgsrc.org>2009-10-25 12:49:04 +0000
commiteeeca5b489309f52ab8c815a24298d8e986aab8e (patch)
tree28d83d775c6bcd8d2dcb464a4f354fb9776fb843
parent938418cdedac0e172fd826f75ca882d0ed37d5d6 (diff)
downloadpkgsrc-eeeca5b489309f52ab8c815a24298d8e986aab8e.tar.gz
It seems that <tnn> had an actual fix for the configure bug
in his pockets, thanks!
-rw-r--r--lang/see/Makefile8
-rw-r--r--lang/see/distinfo4
-rw-r--r--lang/see/patches/patch-ab25
3 files changed, 26 insertions, 11 deletions
diff --git a/lang/see/Makefile b/lang/see/Makefile
index 7a1b03fdbe9..618d3a8beb5 100644
--- a/lang/see/Makefile
+++ b/lang/see/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.5 2009/10/25 12:30:36 ahoka Exp $
+# $NetBSD: Makefile,v 1.6 2009/10/25 12:49:04 ahoka Exp $
#
DISTNAME= see-3.0.1376
@@ -21,10 +21,8 @@ CONFIGURE_ARGS+= --with-readline
PKGCONFIG_OVERRIDE+= libsee/see.pc.in
-# As of 20091025:
-# ./configure.lineno: 20846: Syntax error: ";" unexpected
-#pre-configure:
-# cd ${WRKSRC} && autoreconf -vif
+pre-configure:
+ cd ${WRKSRC} && autoreconf -vif
post-install:
${INSTALL_DATA} ${WRKSRC}/doc/USAGE.html ${DESTDIR}${PREFIX}/share/doc/see/
diff --git a/lang/see/distinfo b/lang/see/distinfo
index 808f0cd7038..7f34e21bdd2 100644
--- a/lang/see/distinfo
+++ b/lang/see/distinfo
@@ -1,8 +1,8 @@
-$NetBSD: distinfo,v 1.3 2009/06/03 06:03:50 hasso Exp $
+$NetBSD: distinfo,v 1.4 2009/10/25 12:49:04 ahoka Exp $
SHA1 (see-3.0.1376.tar.gz) = d803adac6298a0f556d59f501f0376d9196d0821
RMD160 (see-3.0.1376.tar.gz) = 1fb3eb7a796ba96fe68fbc3225bcaafff5692f6f
Size (see-3.0.1376.tar.gz) = 1066852 bytes
SHA1 (patch-aa) = 00d5260d023bc4f03239aa42eff0ced616a9691f
-SHA1 (patch-ab) = aabd85db43cfd9faa6ed28472582f1bd0f65e8dc
+SHA1 (patch-ab) = bddefab3a0c5f2026aee408227c3fa09536c80ed
SHA1 (patch-ac) = 387fcc2139fe2b558ea1556770b40bc339b195ff
diff --git a/lang/see/patches/patch-ab b/lang/see/patches/patch-ab
index d6f7ea71fe7..728ed39baf7 100644
--- a/lang/see/patches/patch-ab
+++ b/lang/see/patches/patch-ab
@@ -1,8 +1,25 @@
-$NetBSD: patch-ab,v 1.1 2009/06/03 06:03:50 hasso Exp $
+$NetBSD: patch-ab,v 1.2 2009/10/25 12:49:04 ahoka Exp $
---- configure.ac.orig 2009-06-03 05:59:44 +0300
-+++ configure.ac 2009-06-03 06:03:54 +0300
-@@ -333,6 +333,10 @@ AC_CHECK_FUNCS([isnan _isnan],[have_isna
+--- configure.ac.orig 2008-02-10 11:31:33.000000000 +0100
++++ configure.ac
+@@ -206,11 +206,12 @@ SEE_ARG_ENABLE(longjmperror,[yes],
+ [Define if you want SEE to catch longjmp corruption])
+ ])
+
+-SEE_ARG_ENABLE(native-dtoa,[auto],
++SEE_ARG_ENABLE(native-dtoa,[no],
+ [dtoa from libc],
+- [enable_native_dtoa=yes
+- AC_CHECK_FUNCS([strtod dtoa freedtoa],,[enable_native_dtoa=no])
+-])
++ [],
++ [enable_native_dtoa=yes],
++ [enable_native_dtoa=no]
++)
+ AM_CONDITIONAL(NATIVE_DTOA, test x"$enable_native_dtoa" = x"yes")
+
+
+@@ -333,6 +334,10 @@ AC_CHECK_FUNCS([isnan _isnan],[have_isna
AC_CHECK_FUNCS([finite _finite isfinite],[have_finite=yes])
AC_CHECK_FUNCS([copysign _copysign],[have_copysign=yes])