pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/graphics/inkscape



Module Name:    pkgsrc
Committed By:   yurix
Date:           Mon May 18 19:54:53 UTC 2026

Modified Files:
        pkgsrc/graphics/inkscape: Makefile

Log Message:
inkscape: fix macos install

Inkscape no longer adds an extra 0 to its libraries on macOS.


To generate a diff of this commit:
cvs rdiff -u -r1.325 -r1.326 pkgsrc/graphics/inkscape/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/graphics/inkscape/Makefile
diff -u pkgsrc/graphics/inkscape/Makefile:1.325 pkgsrc/graphics/inkscape/Makefile:1.326
--- pkgsrc/graphics/inkscape/Makefile:1.325     Fri May 15 09:58:51 2026
+++ pkgsrc/graphics/inkscape/Makefile   Mon May 18 19:54:52 2026
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.325 2026/05/15 09:58:51 adam Exp $
+# $NetBSD: Makefile,v 1.326 2026/05/18 19:54:52 yurix Exp $
 
 DISTNAME=      inkscape-1.4.4
 PKGREVISION=   2
@@ -101,15 +101,15 @@ post-build:
 post-install: fix-darwin-install-name
 fix-darwin-install-name:
        ${RUN} cd ${DESTDIR}${PREFIX} && \
-               for f in lib/inkscape/libinkscape_base.${PKGVERSION_NOREV}.0.0.dylib; do        \
+               for f in lib/inkscape/libinkscape_base.${PKGVERSION_NOREV}.0.dylib; do  \
                        install_name_tool -id                                           \
                        ${PREFIX}/$$f $$f;                                              \
                done
        ${RUN} cd ${DESTDIR}${PREFIX} && \
                for f in bin/inkscape bin/inkview; do                                   \
                        install_name_tool -change                                       \
-                       ${PREFIX}/lib/libinkscape_base.${PKGVERSION_NOREV}.0.0.dylib    \
-                       ${PREFIX}/lib/inkscape/libinkscape_base.${PKGVERSION_NOREV}.0.0.dylib   \
+                       ${PREFIX}/lib/libinkscape_base.${PKGVERSION_NOREV}.0.dylib      \
+                       ${PREFIX}/lib/inkscape/libinkscape_base.${PKGVERSION_NOREV}.0.dylib     \
                        $$f;                                                            \
                done
 .endif



Home | Main Index | Thread Index | Old Index