public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf/files: 4.2.7_p1-autotools.patch
@ 2012-04-13  2:19 Sebastien Fabbro (bicatali)
  0 siblings, 0 replies; 2+ messages in thread
From: Sebastien Fabbro (bicatali) @ 2012-04-13  2:19 UTC (permalink / raw
  To: gentoo-commits

bicatali    12/04/13 02:19:32

  Added:                4.2.7_p1-autotools.patch
  Log:
  Version bump, fixing a few autotools mistakes
  
  (Portage version: 2.1.10.44/cvs/Linux x86_64)

Revision  Changes    Path
1.1                  sci-libs/hdf/files/4.2.7_p1-autotools.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf/files/4.2.7_p1-autotools.patch?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf/files/4.2.7_p1-autotools.patch?rev=1.1&content-type=text/plain

Index: 4.2.7_p1-autotools.patch
===================================================================
diff -Nur hdf-4.2.7-patch1.orig/configure.ac hdf-4.2.7-patch1/configure.ac
--- hdf-4.2.7-patch1.orig/configure.ac	2012-03-18 03:45:46.000000000 +0000
+++ hdf-4.2.7-patch1/configure.ac	2012-04-13 03:04:17.000000000 +0100
@@ -200,20 +200,6 @@
 dnl Build static libraries by default. Furthermore, fortran shared libraries
 dnl are unsupported. Disallow a user from enabling both shared libraries and
 dnl fortran.
-if test "X${enable_shared}" != "Xyes"; then
-    enable_shared="no"
-fi
-
-if test "X${enable_shared}" = "Xyes"; then
-    if test "X${BUILD_FORTRAN}" = "Xyes"; then
-        AC_MSG_ERROR([Cannot build shared fortran libraries. Please configure with --disable-fortran flag.])
-    fi
-fi
-
-AC_PROG_INSTALL
-AC_PROG_LN_S
-
-AC_CHECK_PROGS([AR], [ar xar], [:], [$PATH])
 
 AC_CHECK_PROGS([YACC], ['bison -y' byacc yacc], [none], [])
 
@@ -404,6 +390,8 @@
 
     if test -z "$HAVE_SZIP"; then
       AC_MSG_ERROR([couldn't find szlib library])
+    else
+      USE_COMP_SZIP="yes"
     fi
     ;;
   no)
@@ -447,7 +435,7 @@
 
     AC_CHECK_LIB([sz], [SZ_BufftoBuffCompress],, [unset HAVE_SZIP])
 
-    if test -z "$HAVE_SZIP"; then
+    if test "X$HAVE_SZIP" != "Xyes"; then
       AC_MSG_ERROR([couldn't find szlib library])
     else
       USE_COMP_SZIP="yes"
@@ -703,7 +691,7 @@
 dnl ======================================================================
 dnl Libtool initialization
 dnl ======================================================================
-LT_INIT(dlopen disable-shared) 
+LT_INIT(dlopen) 
 LT_OUTPUT
 
 dnl ======================================================================
@@ -781,11 +769,6 @@
 dnl ------------------------------------------------------------------------
 dnl Check to see if libtool has enabled shared libraries. Set a conditional
 dnl as some Makefiles will build based on availability of shared libraries.
-if (./libtool --features | grep '^enable shared libraries' > /dev/null); then
-  enable_shared=yes
-else
-  enable_shared=no
-fi
 
 dnl ------------------------------------------------------------------------
 dnl Specify shared library extension the host machine should recognize.
@@ -840,23 +823,8 @@
 dnl name of the compiler and the reported version number.
 AC_SUBST([F77_VERSION])
 dnl Strip anything that looks like a flag off of $F77
-F77_NOFLAGS=`echo $F77 | sed 's/ -.*//'`
-
-if `echo $F77_NOFLAGS | grep ^/ >/dev/null 2>&1`; then
-  F77_VERSION="$F77"
-else
-  F77_VERSION="$F77";
-  for x in `echo $PATH | sed -e 's/:/ /g'`; do
-    if test -x $x/$F77_NOFLAGS; then
-      F77_VERSION="$x/$F77"
-      break
-    fi
-  done
-fi
-if test -n "$fc_version_info"; then
-  F77_VERSION="$F77_VERSION ( $fc_version_info)"
-fi
 
+F77_VERSION="$F77";
 
 dnl This part doesn't work yet since HDF4 config files do not contain
 dnl information for fortran_vendor and fortran_version. 
diff -Nur hdf-4.2.7-patch1.orig/hdf/test/fortestF.f hdf-4.2.7-patch1/hdf/test/fortestF.f
--- hdf-4.2.7-patch1.orig/hdf/test/fortestF.f	2012-03-18 03:44:01.000000000 +0000
+++ hdf-4.2.7-patch1/hdf/test/fortestF.f	2012-04-13 02:20:45.000000000 +0100
@@ -203,7 +203,7 @@
 
 	if (cmd .NE. 'Test' .AND. cmd .NE. 'test') then
 	 print *, 'Unknown Command: ', cmd, param
-	 print *, 'Try one of "Skip", "Test", "Verbosity" or "Cleanup"'
+	 print *, 'Try one of Skip, Test, Verbosity or Cleanup'
 	 retcode = -1
 	 return
 	endif
diff -Nur hdf-4.2.7-patch1.orig/mfhdf/libsrc/Makefile.am hdf-4.2.7-patch1/mfhdf/libsrc/Makefile.am
--- hdf-4.2.7-patch1.orig/mfhdf/libsrc/Makefile.am	2012-03-18 03:44:00.000000000 +0000
+++ hdf-4.2.7-patch1/mfhdf/libsrc/Makefile.am	2012-04-13 02:20:45.000000000 +0100
@@ -32,10 +32,11 @@
 else
 libmfhdf_la_SOURCES = $(CSOURCES)
 endif
+libmfhdf_la_LIBADD = $(top_builddir)/hdf/src/libdf.la
 
 if HDF_BUILD_XDR
 XDRLIB = ../xdr/libxdr.la
-libmfhdf_la_LIBADD = $(XDRLIB)
+libmfhdf_la_LIBADD += $(XDRLIB)
 endif
 
 if HDF_BUILD_NETCDF
@@ -50,11 +51,7 @@
 # fortran has been disabled in configure. The Fortran linker gets confused 
 # when shared libraries are enabled, so when Fortran is not enabled,
 # this replaces the Fortran link macro with the C link macro.
-if HDF_BUILD_FORTRAN
-    # do nothing
-else
-    F77LINK = $(LINK)
-endif
+
 
 #############################################################################
 ##                          And the cleanup                                ##






^ permalink raw reply	[flat|nested] 2+ messages in thread

* [gentoo-commits] gentoo-x86 commit in sci-libs/hdf/files: 4.2.7_p1-autotools.patch
@ 2013-01-02 17:24 Kacper Kowalik (xarthisius)
  0 siblings, 0 replies; 2+ messages in thread
From: Kacper Kowalik (xarthisius) @ 2013-01-02 17:24 UTC (permalink / raw
  To: gentoo-commits

xarthisius    13/01/02 17:24:54

  Modified:             4.2.7_p1-autotools.patch
  Log:
  Reintroduce autotools workaround for IUSE="-ifortran" wrt #448726 c#2 by Vicente Olivert Riera <peratu@carrosses.com>
  
  (Portage version: 2.2.0_alpha142/cvs/Linux x86_64, signed Manifest commit with key 895192F9)

Revision  Changes    Path
1.2                  sci-libs/hdf/files/4.2.7_p1-autotools.patch

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf/files/4.2.7_p1-autotools.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf/files/4.2.7_p1-autotools.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sci-libs/hdf/files/4.2.7_p1-autotools.patch?r1=1.1&r2=1.2

Index: 4.2.7_p1-autotools.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/hdf/files/4.2.7_p1-autotools.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- 4.2.7_p1-autotools.patch	13 Apr 2012 02:19:32 -0000	1.1
+++ 4.2.7_p1-autotools.patch	2 Jan 2013 17:24:54 -0000	1.2
@@ -114,16 +114,3 @@
  endif
  
  if HDF_BUILD_NETCDF
-@@ -50,11 +51,7 @@
- # fortran has been disabled in configure. The Fortran linker gets confused 
- # when shared libraries are enabled, so when Fortran is not enabled,
- # this replaces the Fortran link macro with the C link macro.
--if HDF_BUILD_FORTRAN
--    # do nothing
--else
--    F77LINK = $(LINK)
--endif
-+
- 
- #############################################################################
- ##                          And the cleanup                                ##





^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-01-02 17:25 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-01-02 17:24 [gentoo-commits] gentoo-x86 commit in sci-libs/hdf/files: 4.2.7_p1-autotools.patch Kacper Kowalik (xarthisius)
  -- strict thread matches above, loose matches on Subject: below --
2012-04-13  2:19 Sebastien Fabbro (bicatali)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox