From owner-svn-ports-all@freebsd.org Thu Nov 24 05:38:12 2016 Return-Path: Delivered-To: svn-ports-all@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 D78F3C52EEC; Thu, 24 Nov 2016 05:38:12 +0000 (UTC) (envelope-from leres@ee.lbl.gov) Received: from fun.ee.lbl.gov (fun.ee.lbl.gov [IPv6:2620:83:8000:102::ca]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "fun.ee.lbl.gov", Issuer "ACS 3" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id A9634DEB; Thu, 24 Nov 2016 05:38:12 +0000 (UTC) (envelope-from leres@ee.lbl.gov) Received: from ice.ee.lbl.gov (ice-v6.ee.lbl.gov [IPv6:2620:83:8000:102:0:0:0:d5]) (authenticated bits=0) by fun.ee.lbl.gov (8.15.2/8.15.2) with ESMTPSA id uAO5cBKC045654 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 23 Nov 2016 21:38:11 -0800 (PST) (envelope-from leres@ee.lbl.gov) X-Authentication-Warning: fun.ee.lbl.gov: Host ice-v6.ee.lbl.gov [IPv6:2620:83:8000:102:0:0:0:d5] claimed to be ice.ee.lbl.gov Subject: Re: svn commit: r426826 - in head/net: ntp ntp-devel To: Cy Schubert References: <201611240433.uAO4XoIH006368@slippy.cwsent.com> Cc: Cy Schubert , ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org, delphij@freebsd.org From: Craig Leres Message-ID: <48ae2fd1-f96b-0e97-948c-08f41570d009@ee.lbl.gov> Date: Wed, 23 Nov 2016 21:38:11 -0800 User-Agent: Mozilla/5.0 (X11; FreeBSD amd64; rv:45.0) Gecko/20100101 Thunderbird/45.5.0 MIME-Version: 1.0 In-Reply-To: <201611240433.uAO4XoIH006368@slippy.cwsent.com> Content-Type: multipart/mixed; boundary="------------85ABBD5C3300954CDB126EE8" X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 24 Nov 2016 05:38:12 -0000 This is a multi-part message in MIME format. --------------85ABBD5C3300954CDB126EE8 Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit On 11/23/16 20:33, Cy Schubert wrote: > Turn autoreconf on. I'm considering committing the following when I get > back. Attached is what I tried but it seems to be equivalent adding a BUILD_DEPENDS for aclocal:devel/automake and has the same aclocal problem. I'm happy to test other good ideas you come up with if you're unable to. Craig Making install in tests /usr/bin/make install-am TEMPDIR=`pwd` && export TEMPDIR && cd . && ../scripts/build/genver m4/version.m4 CDPATH="${ZSH_VERSION+.}:" && cd . && aclocal-1.15 -I m4 -I libevent/m4 -I libopts/m4 aclocal-1.15: not found *** [./aclocal.m4] Error code 127 Stop in /wrkdirs/usr/ports/net/ntp/work/ntp-4.2.8p9/sntp. *** [install-recursive] Error code 1 Stop in /wrkdirs/usr/ports/net/ntp/work/ntp-4.2.8p9/sntp. *** [install] Error code 1 Stop in /wrkdirs/usr/ports/net/ntp/work/ntp-4.2.8p9/sntp. *** [install-recursive] Error code 1 Stop in /wrkdirs/usr/ports/net/ntp/work/ntp-4.2.8p9. *** [install] Error code 1 Stop in /wrkdirs/usr/ports/net/ntp/work/ntp-4.2.8p9. *** [do-install] Error code 1 Stop in /usr/ports/net/ntp. --------------85ABBD5C3300954CDB126EE8 Content-Type: text/plain; charset=UTF-8; name="patch.txt" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename="patch.txt" Index: net/ntp/Makefile =================================================================== --- net/ntp/Makefile (revision 426975) +++ net/ntp/Makefile (working copy) @@ -22,6 +22,12 @@ USES= cpe pathfix shebangfix libedit libtool localbase:ldflags \ pkgconfig ssl +.include + +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 +USES+= autoreconf +.endif + GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-leap-smear @@ -77,4 +83,4 @@ @cd ${WRKSRC}/html && ${FIND} . -print | \ ${CPIO} -pdu -R ${SHAREOWN}:${SHAREGRP} --quiet ${STAGEDIR}${DOCSDIR} -.include +.include --------------85ABBD5C3300954CDB126EE8--