From owner-freebsd-ports-bugs@FreeBSD.ORG Tue Jul 17 17:40:09 2012 Return-Path: Delivered-To: freebsd-ports-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BC9A21065673 for ; Tue, 17 Jul 2012 17:40:09 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 9AD568FC1E for ; Tue, 17 Jul 2012 17:40:09 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.5/8.14.5) with ESMTP id q6HHe9gS063710 for ; Tue, 17 Jul 2012 17:40:09 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.5/8.14.5/Submit) id q6HHe9hM063709; Tue, 17 Jul 2012 17:40:09 GMT (envelope-from gnats) Resent-Date: Tue, 17 Jul 2012 17:40:09 GMT Resent-Message-Id: <201207171740.q6HHe9hM063709@freefall.freebsd.org> Resent-From: FreeBSD-gnats-submit@FreeBSD.org (GNATS Filer) Resent-To: freebsd-ports-bugs@FreeBSD.org Resent-Reply-To: FreeBSD-gnats-submit@FreeBSD.org, Martin Matuska Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7F3F106564A for ; Tue, 17 Jul 2012 17:30:43 +0000 (UTC) (envelope-from mm@neo.vx.sk) Received: from neo.vx.sk (neo.vx.sk [176.9.47.205]) by mx1.freebsd.org (Postfix) with ESMTP id 9A0BD8FC22 for ; Tue, 17 Jul 2012 17:30:43 +0000 (UTC) Received: by neo.vx.sk (Postfix, from userid 1001) id 5A919BC75; Tue, 17 Jul 2012 19:30:37 +0200 (CEST) Message-Id: <20120717173037.5A919BC75@neo.vx.sk> Date: Tue, 17 Jul 2012 19:30:37 +0200 (CEST) From: Martin Matuska To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Cc: Subject: ports/169946: [PATCH] ftp/curl: prepare for slave curl-hiphop X-BeenThere: freebsd-ports-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Ports bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 Jul 2012 17:40:09 -0000 >Number: 169946 >Category: ports >Synopsis: [PATCH] ftp/curl: prepare for slave curl-hiphop >Confidential: no >Severity: non-critical >Priority: low >Responsible: freebsd-ports-bugs >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Jul 17 17:40:09 UTC 2012 >Closed-Date: >Last-Modified: >Originator: Martin Matuska >Release: FreeBSD 9.0-STABLE amd64 >Organization: >Environment: System: FreeBSD neo.vx.sk 9.0-STABLE FreeBSD 9.0-STABLE #6 r237147M: Sat Jun 16 01:05:38 CEST >Description: Prepare ftp/curl for slave port ftp/curl-hiphop This will be only a patched static version of the library installed together with other hiphop stuff in ${LOCALBASE}/share/hiphop-php/ext for use with the HipHop PHP compiler. If this is not desired, I will SVN copy and modify ftp/curl for this purpose. Generated with FreeBSD Port Tools 0.99_6 (mode: change, diff: CVS) >How-To-Repeat: >Fix: --- curl-7.24.0.patch begins here --- Index: Makefile =================================================================== RCS file: /home/pcvs/ports/ftp/curl/Makefile,v retrieving revision 1.118 diff -u -r1.118 Makefile --- Makefile 3 Mar 2012 08:05:19 -0000 1.118 +++ Makefile 17 Jul 2012 17:28:10 -0000 @@ -12,8 +12,8 @@ LOCAL/sunpoet EXTRACT_SUFX= .tar.lzma -MAINTAINER= sunpoet@FreeBSD.org -COMMENT= Non-interactive tool to get files from FTP, GOPHER, HTTP(S) servers +MAINTAINER?= sunpoet@FreeBSD.org +COMMENT?= Non-interactive tool to get files from FTP, GOPHER, HTTP(S) servers LICENSE= MIT @@ -33,17 +33,20 @@ RTMP "RTMP streams support" off \ TRACKMEMORY "Enable curl memory diagnostic output" off -CONFIGURE_ARGS= --disable-threaded-resolver --disable-werror \ +CONFIGURE_ARGS+= --disable-threaded-resolver --disable-werror \ --enable-imap --enable-pop3 --enable-rtsp --enable-smtp CONFIGURE_ENV= LOCALBASE="${LOCALBASE}" GNU_CONFIGURE= yes MAKE_ENV= SHLIB_VER="${SHLIB_VER}" MAKE_JOBS_SAFE= yes USE_GNOME= gnomehack +.if !defined(_BUILDING_CURL_HIPHOP) USE_LDCONFIG= yes +.endif #defined(_BUILDING_CURL_HIPHOP) USE_PERL5_BUILD= yes USE_XZ= yes +.if !defined(_BUILDING_CURL_HIPHOP) DOCS= BINDINGS BUGS CONTRIBUTE DISTRO-DILEMMA FAQ FEATURES HISTORY \ INSTALL INSTALL.devcpp INTERNALS KNOWN_BUGS LICENSE-MIXING \ MANUAL README.netware README.win32 RESOURCES SSLCERTS THANKS \ @@ -69,9 +72,10 @@ curl_version.3 curl_version_info.3 libcurl.3 libcurl-easy.3 \ libcurl-errors.3 libcurl-multi.3 libcurl-share.3 \ libcurl-tutorial.3 -PLIST_SUB= SHLIB_VER="${SHLIB_VER}" +PLIST_SUB+= SHLIB_VER="${SHLIB_VER}" SHLIB_VER= 6 +.endif #defined(_BUILDING_CURL_HIPHOP) .include @@ -207,6 +211,7 @@ @${REINPLACE_CMD} -e '/require "valgrind.pm";/d' ${WRKSRC}/tests/runtests.pl post-install: +.if !defined(_BUILDING_CURL_HIPHOP) .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR}/ ${DOCSDIR}/libcurl/ cd ${WRKSRC}/docs/ && ${INSTALL_DATA} ${DOCS} ${DOCSDIR}/ @@ -216,6 +221,7 @@ ${MKDIR} ${EXAMPLESDIR}/ cd ${WRKSRC}/docs/examples/ && ${INSTALL_DATA} README Makefile.example makefile* *.c *.cc ${EXAMPLESDIR}/ .endif +.endif # Setting LC_ALL=C is a kludge; maybe curl/libcurl shouldn't actually use # the user's locale when dates are sent to the server. --- curl-7.24.0.patch ends here --- >Release-Note: >Audit-Trail: >Unformatted: