[Bug 251064] [NEW PORT] textproc/cast2gif: Tool to render Asciinema cast files to GIFs

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sun Nov 29 18:07:18 UTC 2020


https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=251064

Mikael Urankar <mikael at FreeBSD.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |mikael at FreeBSD.org

--- Comment #9 from Mikael Urankar <mikael at FreeBSD.org> ---
make is too old on 11.4 and AFAIU is not "jobserver" compatible:
https://github.com/rust-lang/rust/pull/42682#issue-125886139

On 11.4, you can install gmake and patch
cargo-crates/servo-fontconfig-sys-4.0.9/makefile.cargo:

--- ./cargo-crates/servo-fontconfig-sys-4.0.9/makefile.cargo.orig      
2020-11-29 19:04:42.745374000 +0100
+++ ./cargo-crates/servo-fontconfig-sys-4.0.9/makefile.cargo    2020-11-29
19:02:38.491280000 +0100
@@ -58,7 +58,7 @@ SRC_DIR = $(shell pwd)
 all: $(OUT_DIR)/libfontconfig.a

 $(OUT_DIR)/libfontconfig.a: $(OUT_DIR)/Makefile
-       cd $(OUT_DIR) && make -j$(NUM_JOBS)
+       cd $(OUT_DIR) && gmake -j$(NUM_JOBS)
        cp $(OUT_DIR)/src/.libs/libfontconfig.a $(OUT_DIR)

 EXPAT_INCLUDE_DIR ?= $(DEP_EXPAT_OUTDIR)/include



--- ./cargo-crates/servo-fontconfig-sys-4.0.9/build.rs.orig     2020-11-29
19:06:19.604660000 +0100
+++ ./cargo-crates/servo-fontconfig-sys-4.0.9/build.rs  2020-11-29
19:06:26.037062000 +0100
@@ -17,7 +17,7 @@ fn main() {
         }
     }

-    assert!(Command::new("make")
+    assert!(Command::new("gmake")
         .env("MAKEFLAGS", env::var("CARGO_MAKEFLAGS").unwrap_or_default())
         .args(&["-R", "-f", "makefile.cargo"])
         .status()

-- 
You are receiving this mail because:
You are the assignee for the bug.


More information about the freebsd-ports-bugs mailing list