Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 29 Mar 2020 11:30:33 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 245162] kf5-breeze-icons requires xmllint to build on non-WIN32 os
Message-ID:  <bug-245162-7788@https.bugs.freebsd.org/bugzilla/>

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

            Bug ID: 245162
           Summary: kf5-breeze-icons requires xmllint to build on
                    non-WIN32 os
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: Individual Port(s)
          Assignee: ports-bugs@FreeBSD.org
          Reporter: david@lapinbilly.eu

Created attachment 212828
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=3D212828&action=
=3Dedit
appends xmllint as a build dependency

kf5-breeze-icons fails in the *configuration* stage if `xmllint` does not c=
ome
as a dependency:

```
CMake Error at icons/CMakeLists.txt:20 (add_dependencies):
Cannot add target-level dependencies to non-existent target
"breeze-validate-svg".
```

The required target 'breeze-validate-svg' will only be defined if both `sh`=
 and
`xmllint` were found:

```
find_program(SH_EXE sh)
find_program(XMLLINT_EXE xmllint)
if(SH_EXE AND XMLLINT_EXE)
[...]
        add_custom_target(breeze-validate-svg ALL
```

The attached patch appends `xmllint` into `BUILD_DEPENDS`.

--=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-245162-7788>