Revision: 141260 https://trac.macports.org/changeset/141260 Author: ryandesign@macports.org Date: 2015-10-13 16:30:00 -0700 (Tue, 13 Oct 2015) Log Message: ----------- ccache-devel: update to 3.2.4 Modified Paths: -------------- trunk/dports/devel/ccache-devel/Portfile Removed Paths: ------------- trunk/dports/devel/ccache-devel/files/patch-lz.diff Modified: trunk/dports/devel/ccache-devel/Portfile =================================================================== --- trunk/dports/devel/ccache-devel/Portfile 2015-10-13 23:04:45 UTC (rev 141259) +++ trunk/dports/devel/ccache-devel/Portfile 2015-10-13 23:30:00 UTC (rev 141260) @@ -4,7 +4,7 @@ PortSystem 1.0 PortGroup github 1.0 -github.setup jrosdahl ccache 3.2.3 v +github.setup jrosdahl ccache 3.2.4 v name ccache-devel epoch 1 categories devel @@ -23,8 +23,8 @@ homepage http://ccache.samba.org/ -checksums rmd160 acf3d48dfdb6ad7be3732bfd609518ce5a48d20b \ - sha256 b1f7b71503bb551ea25a559447337b433c78750dd209c449b8ba93954e748e68 +checksums rmd160 066c878e0c87929c03166ca37a4c6bdbb5a47e65 \ + sha256 f30a569e8375704340e88ed24f6f3a355f3f79d88b2df839f3d9babbbd80abca depends_build port:asciidoc \ port:autoconf \ @@ -35,7 +35,6 @@ depends_lib port:zlib patchfiles patch-dev.mk.in.diff -patchfiles-append patch-lz.diff post-patch { reinplace "s|@PREFIX@|${prefix}|g" ${worksrcpath}/dev.mk.in Deleted: trunk/dports/devel/ccache-devel/files/patch-lz.diff =================================================================== --- trunk/dports/devel/ccache-devel/files/patch-lz.diff 2015-10-13 23:04:45 UTC (rev 141259) +++ trunk/dports/devel/ccache-devel/files/patch-lz.diff 2015-10-13 23:30:00 UTC (rev 141260) @@ -1,57 +0,0 @@ -From: Joel Rosdahl <joel@rosdahl.net> -Date: Mon, 17 Aug 2015 17:05:14 +0000 (+0200) -Subject: Fix regression in recent change related to zlib in nonstandard location -X-Git-Url: https://git.samba.org/?p=ccache.git;a=commitdiff_plain;h=f74c761079330463098... - -Fix regression in recent change related to zlib in nonstandard location - -To allow for specifying a -L flag in LDFLAGS and have it take effect for --lz, 0220de9c8ebfb18caae2ac1aa163d060e98ceade put -lz in extra_libs -instead of extra_ldflags. However, extra_libs is supposed to contain -paths to libraries which are prerequisites of the ccache link rule, and -some older versions of make got confused by seeing -lz as a -prerequisite. - -This fix is to revert 0220de9c8ebfb18caae2ac1aa163d060e98ceade and -instead make sure that LDFLAGS comes before extra_ldflags. ---- Makefile.in.orig -+++ Makefile.in -@@ -20,7 +20,7 @@ RANLIB = @RANLIB@ - - all_cflags = $(CFLAGS) - all_cppflags = @DEFS@ @extra_cppflags@ -DSYSCONFDIR=$(sysconfdir) -I. -I$(srcdir) $(CPPFLAGS) --all_ldflags = @extra_ldflags@ $(LDFLAGS) -+all_ldflags = $(LDFLAGS) @extra_ldflags@ - extra_libs = @extra_libs@ - - base_sources = \ ---- NEWS.txt.orig -+++ NEWS.txt -@@ -2,6 +2,16 @@ ccache news - =========== - - -+Unreleased 3.2.4 -+---------------- -+ -+Bug fixes -+~~~~~~~~~ -+ -+- Fixed build error related to zlib on systems with older make versions -+ (regression in ccache 3.2.3). -+ -+ - ccache 3.2.3 - ------------ - Release date: 2015-08-16 ---- configure.ac.orig -+++ configure.ac -@@ -120,7 +120,7 @@ if test x${use_bundled_zlib} = xyes; then - extra_libs="zlib/libz.a" - mkdir -p zlib - else -- extra_libs="-lz" -+ extra_ldflags="-lz" - fi - - dnl Linking on Windows needs ws2_32
participants (1)
-
ryandesign@macports.org