Add boost to BDEP, kicad supposedly bundles the parts of boost it needs in

the version we have in-tree, but experience has shown that if systemwide
boost was installed at some point during build then junked by dpb build
was failing. Boo.
Note that in newer releases of kicad those bundled boost headers were removed,
and now cmake downloads boost tarball during build and patch its headers on
the fly. Yay.
https://lists.launchpad.net/kicad-developers/msg10503.html
This commit is contained in:
landry 2013-12-12 20:21:45 +00:00
parent 6eae724348
commit c78c0c5093

View File

@ -1,4 +1,4 @@
# $OpenBSD: Makefile,v 1.19 2013/10/11 11:26:47 sthen Exp $
# $OpenBSD: Makefile,v 1.20 2013/12/12 20:21:45 landry Exp $
COMMENT-main= schematic and PCB editing software
COMMENT-docs= documentation for the kicad library of components
@ -32,6 +32,10 @@ MULTI_PACKAGES= -main -docs
MODULES= devel/cmake \
devel/gettext
# kicad includes some boost headers, but somehow
# randomly fails if boost is present then junked
BUILD_DEPENDS = devel/boost
RUN_DEPENDS-main= cad/kicad-library \
devel/desktop-file-utils \
misc/shared-mime-info \