Hi, On Fri, 08 Nov 2019, Stuart Henderson wrote:
> On 2019/11/08 08:34, Tracey Emery wrote: > > On Fri, Nov 08, 2019 at 02:44:07PM +0000, Stuart Henderson wrote: > > > However with pre-build removed we can use cmake's make backend which > > > is less susceptible to these problems so I've done that for now and > > > committed. > > > > With this commit, kicad-library is no longer needed. Is there some other > > magick the removal needs to wait for? > > Thanks, done. Just that + cvs rm, the magic was already there in kicad-share. I managed to build kicad ! Thank you all for the effort you put on this port. I think I've found an error on the cad/kicad-share group. Specifically on the i18n port. It fails to build because it cannot find the src folder for the port, it's looking for kicad-kicad-i18n-VERSION instead of kicad-i18n-VERSION IIRC (sorry I did this last night and did not copy the error). Anyway, here's a dumb diff that fixed the issue. Index: Makefile =================================================================== RCS file: /cvs/ports/cad/kicad-share/i18n/Makefile,v retrieving revision 1.2 diff -u -p -r1.2 Makefile --- Makefile 8 Nov 2019 14:17:49 -0000 1.2 +++ Makefile 8 Nov 2019 22:23:48 -0000 @@ -1,6 +1,6 @@ # $OpenBSD: Makefile,v 1.2 2019/11/08 14:17:49 sthen Exp $ -KICAD_PROJECT = kicad-i18n +KICAD_PROJECT = i18n COMMENT = language translations for KiCad BUILD_DEPENDS = devel/gettext,-tools I tried it with some old projects and all seems to be fine. I'm starting a new project this weekend, so I'll be using it for some hours and send a report probably next week. Cheers, -- Paco Esteban. 5818130B8A6DBC03