From owner-freebsd-ports@freebsd.org Thu Nov 9 20:09:41 2017 Return-Path: Delivered-To: freebsd-ports@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 7CB3CE5A8A7 for ; Thu, 9 Nov 2017 20:09:41 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: from mailman.ysv.freebsd.org (mailman.ysv.freebsd.org [IPv6:2001:1900:2254:206a::50:5]) by mx1.freebsd.org (Postfix) with ESMTP id 5F6AE76659 for ; Thu, 9 Nov 2017 20:09:41 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: by mailman.ysv.freebsd.org (Postfix) id 5E9DAE5A8A6; Thu, 9 Nov 2017 20:09:41 +0000 (UTC) Delivered-To: ports@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 5E33DE5A8A5 for ; Thu, 9 Nov 2017 20:09:41 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: from mx1.mailbox.org (mx1.mailbox.org [80.241.60.212]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "*.mailbox.org", Issuer "SwissSign Server Silver CA 2014 - G22" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1E53976658 for ; Thu, 9 Nov 2017 20:09:40 +0000 (UTC) (envelope-from herbert@mailbox.org) Received: from smtp1.mailbox.org (smtp1.mailbox.org [80.241.60.240]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.mailbox.org (Postfix) with ESMTPS id 7C29446B34; Thu, 9 Nov 2017 21:09:36 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=mailbox.org; h= content-type:content-type:mime-version:references:in-reply-to :subject:subject:from:from:message-id:date:date:received; s= mail20150812; t=1510258173; bh=7MMkVm0+YeWPp4M13yk9+QYEn2kQNdUpC RUvPyLg/Xg=; b=ulriXCmOgQwDKuY4cCebdx/R4EYBlcRUSx3eLxVOzPjXZb5ri wIJk/ReJHaI4gBwBufHGalqkh2wSt44J3ibvSy0wNSwuoqo+6xqpJnIee770axwx 6RPRF2Qx1PukjHhyhoz1Ig+tJ+61mzJJcjijvVOkK5p49g2EfXTGntLL5pfszSaZ rekmcUeBsRahJLiqZztvQ40gF3kaoP7PtIdGduY7Qs6jCad/8G2Vi/k4DBCMwmJB yu5bmKo3e8iSbzJylcqhOBwL6+fyDwa1wnglVk+4mtUa7b1PR+E8iEirJJE8ptQp TZ9Q9ossPb5YYUwbf1sl9yhS0mzcx07Mj4ytA== X-Virus-Scanned: amavisd-new at heinlein-support.de Received: from smtp1.mailbox.org ([80.241.60.240]) by hefe.heinlein-support.de (hefe.heinlein-support.de [91.198.250.172]) (amavisd-new, port 10030) with ESMTP id p5xlaIpf7_NR; Thu, 9 Nov 2017 21:09:33 +0100 (CET) Date: Thu, 09 Nov 2017 21:09:31 +0100 Message-ID: <87r2t7rz7o.wl-herbert@mailbox.org> From: "Herbert J. Skuhra" To: Kurt Jaeger Cc: freebsd-ports@dan.me.uk, ports@FreeBSD.org Subject: Re: mail/opendkim In-Reply-To: <20171109191650.GC49221@home.opsec.eu> References: <87tvy3sctp.wl-herbert@mailbox.org> <20171109174217.GB49221@home.opsec.eu> <87shdns2a0.wl-herbert@mailbox.org> <20171109191650.GC49221@home.opsec.eu> MIME-Version: 1.0 (generated by SEMI-EPG 1.14.7 - "Harue") Content-Type: text/plain; charset=US-ASCII X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 09 Nov 2017 20:09:41 -0000 On Thu, 09 Nov 2017 20:16:50 +0100, Kurt Jaeger wrote: > > Hi! > > > > > Can you/anyone commit it? > > > > > > A simple build-test looks OK (but fails if LUA is enabled), > > > but I can't run-test it. Can you do it ? > > > > > > With LUA I've seen some strange thing on a simple build-test > > > on a loaded box, must re-do it in poudriere. > > > > Hmm, autoreconf obviously overwrites the LUA changes to configure. :-( > > > > pre-configure: > > ${REINPLACE_CMD} -e '/LIBLUA_LIBS/s/lua5\.[0-9]/lua-${LUA_VER}/' \ > > -e '/PKG_CONFIG/s/lua5\.[0-9]/lua-${LUA_VER}/' \ > > Any idea on how to solve it ? I've other tasks on my plate, sorry... If it's OK to use autoreconf then we could modify configure.ac instead of configure!? e.g: Replacing the pre-configure part with: pre-configure: ${REINPLACE_CMD} -e '/PKG_CHECK_MODULES/s/lua5\.[0-9]/lua-${LUA_VER}/' \ -e '/PKG_CHECK_MODULES/s/cyrussasl/libsasl2/' \ ${WRKSRC}/configure.ac -- Herbert