Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 Jul 2016 13:22:11 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-ports-bugs@FreeBSD.org
Subject:   [Bug 211459] cad/qcad: inks to shared libraries broken
Message-ID:  <bug-211459-13@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D211459

            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@FreeBSD.org
          Reporter: roklein@roklein.de
             Flags: maintainer-feedback?(mr@FreeBSD.org)
          Assignee: mr@FreeBSD.org

Created attachment 173120
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D173120&action=
=3Dedit
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=20

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/033141550fa4e5734b6a15723cb=
f5f16745b69f6
which also patches other ports in a similar way.  In the patch for qcad the
'../' part is missing.)

Attached is a tentative patch.

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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-211459-13>