From owner-freebsd-ports@FreeBSD.ORG Mon Nov 14 10:20:28 2005 Return-Path: X-Original-To: ports@freebsd.org Delivered-To: freebsd-ports@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F38E16A41F for ; Mon, 14 Nov 2005 10:20:28 +0000 (GMT) (envelope-from a.heider@gmail.com) Received: from zproxy.gmail.com (zproxy.gmail.com [64.233.162.192]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CCA343D55 for ; Mon, 14 Nov 2005 10:20:27 +0000 (GMT) (envelope-from a.heider@gmail.com) Received: by zproxy.gmail.com with SMTP id i11so1104830nzh for ; Mon, 14 Nov 2005 02:20:27 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:user-agent:x-accept-language:mime-version:to:cc:subject:references:in-reply-to:content-type:content-transfer-encoding; b=nCYBaoL2nxYWAdurjca/rUbkMwYsCA30dFoIavKJgRT/Q1VpFZPaH1DrPy0NNCfvBU9GzfXg/9WseF9XkHZc/1zKrlq95IJlalj/6YfQwcJHwau8aQGjSTwFYuvHh5InFbFQhBNF3yJe/NP/QxjDr4v+kzG13u2Hb9nKYdx90+g= Received: by 10.65.225.15 with SMTP id c15mr5547288qbr; Mon, 14 Nov 2005 02:20:26 -0800 (PST) Received: from ?192.168.0.40? ( [82.83.193.178]) by mx.gmail.com with ESMTP id f16sm2214961qba.2005.11.14.02.20.25; Mon, 14 Nov 2005 02:20:26 -0800 (PST) Message-ID: <437864EA.4050808@gmail.com> Date: Mon, 14 Nov 2005 11:20:26 +0100 From: Andre Heider User-Agent: Mozilla Thunderbird 1.0.7 (Windows/20050923) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alastair Rankine References: <7caf76e40511140136j3d1b9d25sb4a9b81bffaf31eb@mail.gmail.com> In-Reply-To: <7caf76e40511140136j3d1b9d25sb4a9b81bffaf31eb@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Cc: ports@FreeBSD.org Subject: Re: subversion build fails X-BeenThere: freebsd-ports@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting software to FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Nov 2005 10:20:28 -0000 Alastair Rankine wrote: > Hi, > > I am having difficulty building subversion with apache 2.0.55 installed. > > I notice at least one other person has the same problem > (http://lists.freebsd.org/pipermail/freebsd-ports/2005-November/027240.html) > > Basically it tries to re-install apache and fails (see below) > > Do you have a fix or workaround? > > Thanks in advance, > > > subversion $ portinstall -sr subversion > ---> Installing 'subversion-1.3.0.r2' from a port (devel/subversion) > ---> Building '/usr/ports/devel/subversion' with make flags: > WITH_MOD_DAV_SVN=1 WITH_APACHE2_APR=1 WITH_SVNSERVE_WRAPPER=1 > WITH_BOOK=1 > ===> Cleaning for libiconv-1.9.2_1 > ===> Cleaning for autoconf-2.59_2 > ===> Cleaning for gettext-0.14.5 > ===> Cleaning for gmake-3.80_2 > ===> Cleaning for libtool-1.5.20 > ===> Cleaning for m4-1.4.3 > ===> Cleaning for p5-gettext-1.03 > ===> Cleaning for perl-5.8.7 > ===> Cleaning for help2man-1.36.2 > ===> Cleaning for expat-1.95.8_3 > ===> Cleaning for apache-2.0.55 > ===> Cleaning for neon-0.24.7 > ===> Cleaning for subversion-1.3.0.r2 > ---> [Executing a command as root: sudo /usr/bin/script -qa > /tmp/portinstall93525.0 make WITH_MOD_DAV_SVN=1 WITH_APACHE2_APR=1 > WITH_SVNSERVE_WRAPPER=1 WITH_BOOK=1 fetch-depends build-depends > lib-depends misc-depends] > Password: > ===> subversion-1.3.0.r2 depends on executable: - not found > ===> Verifying install for in /usr/ports/www/apache2 > > [... complete build of apache ...] > > ===> Installing for apache-2.0.55 > ===> apache-2.0.55 depends on file: /usr/local/bin/perl5.8.7 - found > ===> Generating temporary packing list > ===> Checking if www/apache2 already installed > ===> apache-2.0.55 is already installed > You may wish to ``make deinstall'' and install this port again > by ``make reinstall'' to upgrade it properly. > If you really wish to overwrite the old port of www/apache2 > without deleting it first, set the variable "FORCE_PKG_REGISTER" > in your environment or the "make install" command line. > *** Error code 1 > > Stop in /usr/ports/www/apache2. > *** Error code 1 > > Stop in /usr/ports/devel/subversion. > ** Listing the failed packages (*:skipped / !:failed) > ! devel/subversion (dependent ports) > ---> Packages processed: 0 done, 0 ignored, 0 skipped and 1 failed > just looked at the makefile, and problem only occurs when building with WITH_APACHE2_APR: .if defined(WITH_APACHE2_APR) APACHE2_PORT?= www/apache2 BUILD_DEPENDS+= ${APXS}:${PORTSDIR}/${APACHE2_PORT} RUN_DEPENDS+= ${APXS}:${PORTSDIR}/${APACHE2_PORT} APXS isnt set (at least on 6.0 release), thats why it spits out "===> subversion-1.3.0.r2 depends on executable: - not found" adding "APXS= apxs" to the makefile solved this problem regards