[Bug 211459] cad/qcad: inks to shared libraries broken

bugzilla-noreply at freebsd.org bugzilla-noreply at freebsd.org
Sat Jul 30 13:22:12 UTC 2016


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

            Bug ID: 211459
           Summary: cad/qcad: inks to shared libraries broken
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Many People
          Priority: ---
         Component: Individual Port(s)
          Assignee: mr at FreeBSD.org
          Reporter: roklein at roklein.de
             Flags: maintainer-feedback?(mr at FreeBSD.org)
          Assignee: mr at FreeBSD.org

Created attachment 173120
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=173120&action=edit
tentative patch

There is a slight mistake in the Makefile for qcad by which shared library
links point to non-existing files, for example

libqcadcore.so links to lib/libqcadcore.so.0 but should instead link to
libqcadcore.so.0 

Line 68 (or thereabouts) should probably look like this:

 ${LN} -sf ../lib/${lib}.0 ${STAGEDIR}${PREFIX}/lib/${lib}

instead of

 ${LN} -sf lib/${lib}.0 ${STAGEDIR}${PREFIX}/lib/${lib}

(see also the diff leading up to the current Makefile:
https://github.com/freebsd/freebsd-ports/commit/033141550fa4e5734b6a15723cbf5f16745b69f6
which also patches other ports in a similar way.  In the patch for qcad the
'../' part is missing.)

Attached is a tentative patch.

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


More information about the freebsd-ports-bugs mailing list