diff options
author | 2021-11-26 19:56:23 +0100 | |
---|---|---|
committer | 2021-11-26 20:00:08 +0100 | |
commit | 6f98b5322329ec776ad9f3ec153a6f9490f82772 (patch) | |
tree | 0086766177aa571335d55be848d6bc699c03055d /sci-electronics/magic/files | |
parent | sys-libs/glibc: remove deps on implicit system packages (diff) | |
download | gentoo-6f98b5322329ec776ad9f3ec153a6f9490f82772.tar.gz gentoo-6f98b5322329ec776ad9f3ec153a6f9490f82772.tar.bz2 gentoo-6f98b5322329ec776ad9f3ec153a6f9490f82772.zip |
sci-electronics/magic: add 8.3.232, remove 8.0.207
EAPI 8 (yay dosym -r!), Cairo support, new source of MOSIS tech files,
support for parallel building, no redundant inherits, no CPP=cpp.
Bug: https://bugs.gentoo.org/819120
Closes: https://bugs.gentoo.org/819120
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'sci-electronics/magic/files')
-rw-r--r-- | sci-electronics/magic/files/magic-8.3.232-libdir.patch | 13 | ||||
-rw-r--r-- | sci-electronics/magic/files/magic-8.3.232-verbose-build.patch (renamed from sci-electronics/magic/files/magic-7.5.231-verbose-build.patch) | 16 |
2 files changed, 21 insertions, 8 deletions
diff --git a/sci-electronics/magic/files/magic-8.3.232-libdir.patch b/sci-electronics/magic/files/magic-8.3.232-libdir.patch new file mode 100644 index 000000000000..fbfe8557287d --- /dev/null +++ b/sci-electronics/magic/files/magic-8.3.232-libdir.patch @@ -0,0 +1,13 @@ +'lib' is for 32-bit libraries only, thank you very much + +--- a/scripts/defs.mak.in ++++ b/scripts/defs.mak.in +@@ -36,7 +36,7 @@ + # Install targets may be different if dist_prefix is set by configure + INSTALL_BINDIR = @DIST_DIR@/bin + INSTALL_MANDIR = @DIST_DIR@/share/man +-INSTALL_LIBDIR = @DIST_DIR@/lib ++INSTALL_LIBDIR = ${libdir} + INSTALL_SYSDIR = ${INSTALL_LIBDIR}/magic/sys + INSTALL_SCMDIR = ${INSTALL_LIBDIR}/magic/scm + INSTALL_TCLDIR = ${INSTALL_LIBDIR}/magic/tcl diff --git a/sci-electronics/magic/files/magic-7.5.231-verbose-build.patch b/sci-electronics/magic/files/magic-8.3.232-verbose-build.patch index 64ad4fd18278..8455d7bb1931 100644 --- a/sci-electronics/magic/files/magic-7.5.231-verbose-build.patch +++ b/sci-electronics/magic/files/magic-8.3.232-verbose-build.patch @@ -1,5 +1,5 @@ ---- magic-7.5.231/Makefile -+++ magic-7.5.231/Makefile +--- a/Makefile ++++ b/Makefile @@ -18,12 +18,10 @@ all: $(ALL_TARGET) @@ -15,19 +15,19 @@ force: clean all -@@ -67,7 +65,7 @@ +@@ -68,7 +66,7 @@ install-magic: - @echo --- installing executable to $(DESTDIR)${BINDIR} - @echo --- installing runtime files to $(DESTDIR)${LIBDIR} + @echo --- installing executable to $(DESTDIR)${INSTALL_BINDIR} + @echo --- installing runtime files to $(DESTDIR)${INSTALL_LIBDIR} - @${MAKE} install-real 2>&1 >> install.log + @${MAKE} install-real install-real: install-dirs for dir in ${INSTALL_CAD_DIRS}; do \ -@@ -86,7 +84,7 @@ +@@ -89,7 +87,7 @@ install-tcl: - @echo --- installing executable to $(DESTDIR)${BINDIR} - @echo --- installing runtime files to $(DESTDIR)${LIBDIR} + @echo --- installing executable to $(DESTDIR)${INSTALL_BINDIR} + @echo --- installing runtime files to $(DESTDIR)${INSTALL_LIBDIR} - @${MAKE} install-tcl-real 2>&1 >> install.log + @${MAKE} install-tcl-real |