[65648] trunk/dports/archivers/libzzip

ryandesign at macports.org ryandesign at macports.org
Mon Mar 29 14:20:45 PDT 2010


Revision: 65648
          http://trac.macports.org/changeset/65648
Author:   ryandesign at macports.org
Date:     2010-03-29 14:20:44 -0700 (Mon, 29 Mar 2010)
Log Message:
-----------
libzzip: update to 0.13.59, remove pax patchfile no longer necessary, fix typo in Makefile patchfile name, simplify universal variant, use unversioned doc dir, pkgconfig and xmlto are needed at build time not runtime

Modified Paths:
--------------
    trunk/dports/archivers/libzzip/Portfile
    trunk/dports/archivers/libzzip/files/patch-configure.ac.diff

Added Paths:
-----------
    trunk/dports/archivers/libzzip/files/patch-zzip_Makefile.in.diff

Removed Paths:
-------------
    trunk/dports/archivers/libzzip/files/patch-m4-ax_pax_tar.m4.diff
    trunk/dports/archivers/libzzip/files/patch-zzib_Makefile.in.diff

Modified: trunk/dports/archivers/libzzip/Portfile
===================================================================
--- trunk/dports/archivers/libzzip/Portfile	2010-03-29 21:20:40 UTC (rev 65647)
+++ trunk/dports/archivers/libzzip/Portfile	2010-03-29 21:20:44 UTC (rev 65648)
@@ -4,7 +4,7 @@
 
 name            libzzip
 set my_name     zziplib
-version         0.13.58
+version         0.13.59
 categories      archivers devel
 platforms       darwin
 maintainers     nomaintainer
@@ -22,29 +22,22 @@
 distname        ${my_name}-${version}
 use_bzip2       yes
 
-checksums       md5 a0f743a5a42ca245b2003ecaea958487 \
-                sha1 4255290de3b66deb4a7233ab41727c1b56739e8c \
-                rmd160 d58946b65c3c0b726710d487751f5ecb52a01aa0
+checksums       md5     14b5a6fc229afe9916d48358479568d3 \
+                sha1    ddbce25cb36c3b4c2b892e2c8a88fa4a0be29a71 \
+                rmd160  b96f547039ac005f6e9ca2cf92c388a077b9b21e
 
-depends_run     port:pkgconfig \
+depends_build   port:pkgconfig \
                 port:xmlto
 
 depends_lib     port:zlib
 
-patchfiles      patch-zzib_Makefile.in.diff
+patchfiles      patch-zzip_Makefile.in.diff
 
-set docdir ${prefix}/share/doc/${name}-${version}
+set docdir ${prefix}/share/doc/${name}
 
-platform darwin 9 {
-    # Fix destroot failure on Leopard (does not affect Tiger or Snow Leopard)
-    use_autoreconf yes
-    patchfiles-append patch-m4-ax_pax_tar.m4.diff
-}
-
-variant universal {
+if {[variant_isset universal]} {
     patchfiles-append patch-configure.ac.diff
     use_autoconf yes
-    configure.args-append --disable-dependency-tracking
 }
 
 post-destroot {

Modified: trunk/dports/archivers/libzzip/files/patch-configure.ac.diff
===================================================================
--- trunk/dports/archivers/libzzip/files/patch-configure.ac.diff	2010-03-29 21:20:40 UTC (rev 65647)
+++ trunk/dports/archivers/libzzip/files/patch-configure.ac.diff	2010-03-29 21:20:44 UTC (rev 65648)
@@ -1,6 +1,6 @@
---- configure.ac.orig	2010-02-04 08:28:15.000000000 -0500
-+++ configure.ac	2010-02-04 08:28:23.000000000 -0500
-@@ -107,7 +107,6 @@
+--- configure.ac.orig	2010-03-29 14:24:17.000000000 -0500
++++ configure.ac	2010-03-29 15:31:04.000000000 -0500
+@@ -110,7 +110,6 @@
  AC_CHECK_TYPE(__int64,long long)
  AC_COMPILE_CHECK_SIZEOF(short)
  AC_COMPILE_CHECK_SIZEOF(int)

Deleted: trunk/dports/archivers/libzzip/files/patch-m4-ax_pax_tar.m4.diff
===================================================================
--- trunk/dports/archivers/libzzip/files/patch-m4-ax_pax_tar.m4.diff	2010-03-29 21:20:40 UTC (rev 65647)
+++ trunk/dports/archivers/libzzip/files/patch-m4-ax_pax_tar.m4.diff	2010-03-29 21:20:44 UTC (rev 65648)
@@ -1,24 +0,0 @@
---- m4/ax_pax_tar.m4.orig	2010-03-29 02:03:14.000000000 -0500
-+++ m4/ax_pax_tar.m4	2010-03-29 02:03:48.000000000 -0500
-@@ -67,10 +67,6 @@
-     ax_pax_tar_create="'$ac_cv_path_GTAR' cf"
-   elif test "$ac_cv_pax_tar_tool" = "pax"; then
-     ax_pax_tar_create="'$ac_cv_path_PAX' -w -f"
--    dnl BSD PAX has the nuisiance to prompt for a new archive on errors
--    if "$ac_cv_path_PAX" --help 2>&1 | grep "pax.*-[[a-zA-Z]]*O" ; then
--       ax_pax_tar_extract="'$ac_cv_path_PAX' -w -O -f"
--    fi
-   elif test "$ac_cv_pax_tar_tool" = "tar"; then
-     ax_pax_tar_create="'$ac_cv_path_TAR' cf"
-   else
-@@ -88,10 +84,6 @@
-     ax_pax_tar_extract="'$ac_cv_path_GTAR' xf"
-   elif test "$ac_cv_pax_tar_tool" = "pax"; then
-     ax_pax_tar_extract="'$ac_cv_path_PAX' -r -f"
--    dnl BSD PAX has the nuisiance to prompt for a new archive on errors
--    if "$ac_cv_path_PAX" --help 2>&1 | grep "pax.*-[[a-zA-Z]]*O" ; then
--       ax_pax_tar_extract="'$ac_cv_path_PAX' -r -O -f"
--    fi
-   elif test "$ac_cv_pax_tar_tool" = "tar"; then
-     ax_pax_tar_extract="'$ac_cv_path_TAR' xf"
-   else

Deleted: trunk/dports/archivers/libzzip/files/patch-zzib_Makefile.in.diff
===================================================================
--- trunk/dports/archivers/libzzip/files/patch-zzib_Makefile.in.diff	2010-03-29 21:20:40 UTC (rev 65647)
+++ trunk/dports/archivers/libzzip/files/patch-zzib_Makefile.in.diff	2010-03-29 21:20:44 UTC (rev 65648)
@@ -1,11 +0,0 @@
---- zzip/Makefile.in.orig	2009-08-23 07:38:22.000000000 -0400
-+++ zzip/Makefile.in	2010-02-04 11:36:59.000000000 -0500
-@@ -648,7 +648,7 @@
- 
- install-dvi: install-dvi-am
- 
--install-exec-am: install-exec-local install-libLTLIBRARIES
-+install-exec-am: install-libLTLIBRARIES
- 
- install-html: install-html-am
- 

Copied: trunk/dports/archivers/libzzip/files/patch-zzip_Makefile.in.diff (from rev 65646, trunk/dports/archivers/libzzip/files/patch-zzib_Makefile.in.diff)
===================================================================
--- trunk/dports/archivers/libzzip/files/patch-zzip_Makefile.in.diff	                        (rev 0)
+++ trunk/dports/archivers/libzzip/files/patch-zzip_Makefile.in.diff	2010-03-29 21:20:44 UTC (rev 65648)
@@ -0,0 +1,10 @@
+--- zzip/Makefile.in.orig	2010-03-29 14:40:50.000000000 -0500
++++ zzip/Makefile.in	2010-03-29 16:15:02.000000000 -0500
+@@ -694,7 +694,6 @@
+ 
+ install-exec-am: install-libLTLIBRARIES
+ 	@$(NORMAL_INSTALL)
+-	$(MAKE) $(AM_MAKEFLAGS) install-exec-hook
+ install-html: install-html-am
+ 
+ install-html-am:
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.macosforge.org/pipermail/macports-changes/attachments/20100329/831ab71a/attachment.html>


More information about the macports-changes mailing list