From owner-svn-ports-head@FreeBSD.ORG Wed Aug 13 23:24:03 2014 Return-Path: Delivered-To: svn-ports-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 695F083B; Wed, 13 Aug 2014 23:24:03 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3C55A2E63; Wed, 13 Aug 2014 23:24:03 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7DNO3kj011054; Wed, 13 Aug 2014 23:24:03 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7DNO3bs011053; Wed, 13 Aug 2014 23:24:03 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201408132324.s7DNO3bs011053@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Wed, 13 Aug 2014 23:24:03 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r364820 - head/www/pound X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.18-1 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: Wed, 13 Aug 2014 23:24:03 -0000 Author: marino Date: Wed Aug 13 23:24:02 2014 New Revision: 364820 URL: http://svnweb.freebsd.org/changeset/ports/364820 QAT: https://qat.redports.org/buildarchive/r364820/ Log: Stage www/pound PR: 189937 Submitted by: Joe (thralling.com) Approved by: Nobody, the maintainer was reset Lil' TLC: marino Modified: head/www/pound/Makefile Modified: head/www/pound/Makefile ============================================================================== --- head/www/pound/Makefile Wed Aug 13 22:45:45 2014 (r364819) +++ head/www/pound/Makefile Wed Aug 13 23:24:02 2014 (r364820) @@ -8,7 +8,6 @@ CATEGORIES= www net MASTER_SITES= http://www.apsis.ch/pound/ \ ftp://ftp.nuug.no/pub/anders/distfiles/ DISTNAME= Pound-${PORTVERSION} -EXTRACT_SUFX= .tgz MAINTAINER= ports@FreeBSD.org COMMENT= Reverse proxy, load balancer and HTTP(S) frontend for web servers @@ -16,44 +15,44 @@ COMMENT= Reverse proxy, load balancer an LICENSE= GPLv3 LICENSE_FILE= ${WRKSRC}/GPL.txt +USES= tar:tgz GNU_CONFIGURE= yes USE_OPENSSL= yes USE_RC_SUBR= ${PORTNAME} SUB_LIST= NAME=${PORTNAME} -MAN8= pound.8 poundctl.8 - OPTIONS_DEFINE= MSDAV PCRE -OPTIONS_DEFAULT= PCRE +OPTIONS_DEFAULT=PCRE MSDAV_DESC= Microsoft WebDAV extension support -CONFIGURE_ARGS= --disable-tcmalloc --disable-hoard -PLIST_FILES= sbin/pound sbin/poundctl +PCRE_CONFIGUE_ENABLE= pcreposix +MSDAV_CONFIGURE_ENABLE= msdav +CONFIGURE_ARGS= --disable-tcmalloc --disable-hoard + +PLIST_FILES= sbin/pound \ + sbin/poundctl \ + man/man8/pound.8.gz \ + man/man8/poundctl.8.gz PORTDOCS= README FAQ CHANGELOG -NO_STAGE= yes .include -.if ${PORT_OPTIONS:MMSDAV} -CONFIGURE_ARGS+= --enable-msdav -.endif - .if ${PORT_OPTIONS:MPCRE} LIB_DEPENDS+= libpcre.so:${PORTSDIR}/devel/pcre -CFLAGS+= "-I${LOCALBASE}/include" -CPPFLAGS+= "-I${LOCALBASE}/include" -LDFLAGS+= "-L${LOCALBASE}/lib" -.else -CONFIGURE_ARGS+= --disable-pcreposix +CFLAGS+= -I${LOCALBASE}/include +CPPFLAGS+= -I${LOCALBASE}/include +LDFLAGS+= -L${LOCALBASE}/lib .endif -post-install: +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/pound ${WRKSRC}/poundctl \ + ${STAGEDIR}${PREFIX}/sbin + ${INSTALL_MAN} ${WRKSRC}/pound.8 ${WRKSRC}/poundctl.8 \ + ${STAGEDIR}${MANPREFIX}/man/man8 .if ${PORT_OPTIONS:MDOCS} - ${MKDIR} ${DOCSDIR} -.for f in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${f} ${DOCSDIR} -.endfor + ${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} .endif .include