From owner-svn-ports-head@FreeBSD.ORG Sun Mar 16 13:41:14 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BAFC158; Sun, 16 Mar 2014 13:41:14 +0000 (UTC) Received: from mout.gmx.net (mout.gmx.net [212.227.15.18]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA (128/128 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id D089A983; Sun, 16 Mar 2014 13:41:13 +0000 (UTC) Received: from [192.168.0.100] ([87.139.233.65]) by mail.gmx.com (mrgmx001) with ESMTPSA (Nemesis) id 0MN1j6-1WVn193HOS-006hDT; Sun, 16 Mar 2014 14:40:59 +0100 Message-ID: <5325A9F2.8000403@gmx.de> Date: Sun, 16 Mar 2014 14:41:06 +0100 From: olli hauer User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:24.0) Gecko/20100101 Thunderbird/24.3.0 MIME-Version: 1.0 To: Antoine Brodin Subject: Re: svn commit: r347652 - in head/www/mod_log_sql2-dtc: . files References: <201403091528.s29FSbXG014062@svn.freebsd.org> In-Reply-To: X-Enigmail-Version: 1.6 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:bVFYE0KUeVHgufEx1HcQJSC3qLUhu3nrftFkIDRVIaocwE6GvBF bJsPn1+bJ2vo11NBwannsOxVD3sSqpBV4LigfUVS3/N56SMp7xqFtcwviuZb2vap2b1bbb+ WiybQjwyhRPH6UscLVRvr0y4jNGz3aWEFYCOtaGagiYPaabU62CVxMpYzOZCcvhTHm/jKoJ FBPAUVeFMhHuZWUXy9Gng== Cc: "svn-ports-head@freebsd.org" , Olli Hauer , "svn-ports-all@freebsd.org" , thomas@goirand.fr, "ports-committers@freebsd.org" X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 16 Mar 2014 13:41:14 -0000 On 2014-03-10 09:33, Antoine Brodin wrote: > On Sun, Mar 9, 2014 at 4:28 PM, Olli Hauer wrote: >> Author: ohauer >> Date: Sun Mar 9 15:28:37 2014 >> New Revision: 347652 >> URL: http://svnweb.freebsd.org/changeset/ports/347652 >> QAT: https://qat.redports.org/buildarchive/r347652/ >> >> Log: >> - add stage support >> - make DBI an OPTION instead guessing during build time >> - adjust pkg-plist >> >> Added: >> head/www/mod_log_sql2-dtc/files/patch-Makefile.in (contents, props changed) >> Modified: >> head/www/mod_log_sql2-dtc/Makefile >> head/www/mod_log_sql2-dtc/pkg-plist > > Hi, > > This doesn't package: > > =================================================== > ===> Building package for ap22-mod_log_sql-dtc-1.101_6 > pkg-static: lstat(/wrkdirs/usr/ports/www/mod_log_sql2-dtc/work/stage/usr/local/libexec/apache22/mod_log_sql.so): > No such file or directory > *** [do-package] Error code 1 > > Cheers, > > Antoine Hi Antoine, I'm wondering from where this error is originated since there was at no time a module with the name "mod_log_sql.so" in the mod_log_sql2-dtc port. http://svnweb.freebsd.org/ports/head/www/mod_log_sql2-dtc/pkg-plist After a quick grep over the full ports tree for "mod_log_sql.so" I suspect the error was thrown by building sysutils/dtc. In the past (nine+ years ago) sysutils/dtc had a dependency on mod_log_sql2 http://svnweb.freebsd.org/ports?view=revision&revision=109925 this was changed in r178997 (Dec. 06 2006) http://svnweb.freebsd.org/ports?view=revision&revision=178997 But even the port www/mod_log_sql2 hasn't had a "mod_log_sql.so" module in the past. http://svnweb.freebsd.org/ports/head/www/mod_log_sql2/pkg-plist I suspect the port sysutils/dtc can be easily fixed by removing the following line from RUN_DEPENDS (no one complained in more then 9+ years so it isn't really required) Index: sysutils/dtc/Makefile =================================================================== --- sysutils/dtc/Makefile (revision 348403) +++ sysutils/dtc/Makefile (working copy) @@ -21,8 +21,7 @@ DEPRECATED= Depends on expired www/sbox-dtc EXPIRATION_DATE=2014-04-10 -RUN_DEPENDS= ${LOCALBASE}/${APACHEMODDIR}/mod_log_sql.so:${PORTSDIR}/www/mod_log_sql2-dtc \ - ${LOCALBASE}/share/pear/Crypt/CBC.php:${PORTSDIR}/security/pear-Crypt_CBC \ +RUN_DEPENDS= ${LOCALBASE}/share/pear/Crypt/CBC.php:${PORTSDIR}/security/pear-Crypt_CBC \ ${LOCALBASE}/share/pear/XML/Serializer.php:${PORTSDIR}/devel/pear-XML_Serializer \ ${LOCALBASE}/share/pear/Net/IPv4.php:${PORTSDIR}/net/pear-Net_IPv4 \ ${LOCALBASE}/www/cgi-bin/sbox:${PORTSDIR}/www/sbox-dtc \ -- Regards, olli