From owner-freebsd-ports-bugs@freebsd.org Sat Jul 9 11:28:24 2016 Return-Path: Delivered-To: freebsd-ports-bugs@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 0E400B84150 for ; Sat, 9 Jul 2016 11:28:24 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2001:1900:2254:206a::16:76]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id D951516C0 for ; Sat, 9 Jul 2016 11:28:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from bugs.freebsd.org ([127.0.1.118]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id u69BSNOM077001 for ; Sat, 9 Jul 2016 11:28:23 GMT (envelope-from bugzilla-noreply@freebsd.org) From: bugzilla-noreply@freebsd.org To: freebsd-ports-bugs@FreeBSD.org Subject: [Bug 210450] [NEW PORT] devel/liteide: Simple, open source, cross-platform Go IDE Date: Sat, 09 Jul 2016 11:28:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Ports & Packages X-Bugzilla-Component: Individual Port(s) X-Bugzilla-Version: Latest X-Bugzilla-Keywords: feature, patch X-Bugzilla-Severity: Affects Only Me X-Bugzilla-Who: jbeich@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: freebsd-ports-bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: cc Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated MIME-Version: 1.0 X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 09 Jul 2016 11:28:24 -0000 https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D210450 Jan Beich changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |jbeich@FreeBSD.org --- Comment #5 from Jan Beich --- Can you do i386 and QT5=3Don builds using poudriere as well? Both at least = on 9.3-RELEASE-*. > XGH_PROJECT=3D liteide Drop this (default) line. > XUSES=3D qmake > XQT4_USE=3D QT4=3Dcorelib,gui,network,webkit,xml,moc_build,rcc_build,uic_= build > XQT5_USE=3D QT5=3Dcore,gui,widgets,network,webkit,xml,printsupport,buildt= ools_build Having option helpers in different or non-optional sections is... visually confusing. > XOPTIONS_RADIO=3D QT > XOPTIONS_RADIO_QT=3D QT4 QT5 As USES=3Dqmake requires either USE_QT4 or USE_QT5 you need OPTIONS_SINGLE instead, or move USES=3Dqmake into option helpers. Otherwise, QT4=3Doff + Q= T5=3Doff leads to $ make =3D=3D=3D> liteide-30.1 'USES+=3D qmake' must be accompanied with 'USE_Q= T[]=3D. *** Error code 1 > X.include > X > X.if ${PORT_OPTIONS:MQT5} > XUSE_GL+=3D gl > X.endif Can you convert this into option helpers? > Xpost-install-DOCS-on: > X @${MKDIR} ${STAGEDIR}${DOCSDIR} > X.for d in ${PORTDOCS} > X ${INSTALL_DATA} ${WRKSRC:H}/${d} ${STAGEDIR}${DOCSDIR} > X.endfor COPYTREE_SHARE would be more concise e.g., post-install-DOCS-on: (cd ${WRKSRC:H} && ${COPYTREE_SHARE} \ "${PORTDOCS}" ${STAGEDIR}${DOCSDIR}) --=20 You are receiving this mail because: You are the assignee for the bug.=