From owner-svn-ports-head@FreeBSD.ORG Thu Aug 21 11:18:45 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 F1BD35A0; Thu, 21 Aug 2014 11:18:44 +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 DD00B3846; Thu, 21 Aug 2014 11:18:44 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7LBIife010461; Thu, 21 Aug 2014 11:18:44 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7LBIiEJ010458; Thu, 21 Aug 2014 11:18:44 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201408211118.s7LBIiEJ010458@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Thu, 21 Aug 2014 11:18:44 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r365545 - in head/www/publicfile: . files 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: Thu, 21 Aug 2014 11:18:45 -0000 Author: marino Date: Thu Aug 21 11:18:43 2014 New Revision: 365545 URL: http://svnweb.freebsd.org/changeset/ports/365545 QAT: https://qat.redports.org/buildarchive/r365545/ Log: Stage www/publicfile and assign maintainership to submitter PR: 192885 Submitted by: uffe Added: head/www/publicfile/files/patch-Makefile (contents, props changed) head/www/publicfile/files/patch-auto_home_stage.h (contents, props changed) Modified: head/www/publicfile/Makefile Modified: head/www/publicfile/Makefile ============================================================================== --- head/www/publicfile/Makefile Thu Aug 21 11:02:31 2014 (r365544) +++ head/www/publicfile/Makefile Thu Aug 21 11:18:43 2014 (r365545) @@ -3,11 +3,11 @@ PORTNAME= publicfile PORTVERSION= 0.52 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= www ftp MASTER_SITES= http://cr.yp.to/publicfile/ -MAINTAINER= ports@FreeBSD.org +MAINTAINER= uffe@uffe.org COMMENT= Secure, read-only, anonymous HTTP/FTP server RUN_DEPENDS= setuidgid:${PORTSDIR}/sysutils/daemontools \ @@ -23,7 +23,6 @@ SSL_DESC= provide SSL support through u CONFLICTS= xshttpd-3* LEGAL_TEXT= No license -- see http://cr.yp.to/softwarelaw.html -NO_STAGE= yes .include pre-everything:: @@ -89,5 +88,6 @@ post-patch: @${ECHO_CMD} "${CC} ${CFLAGS}" > ${WRKSRC}/conf-cc @${ECHO_CMD} "${CC} -s" > ${WRKSRC}/conf-ld @${ECHO_CMD} "${PREFIX}" > ${WRKSRC}/conf-home + @${ECHO_CMD} "${STAGEDIR}${PREFIX}" > ${WRKSRC}/conf-stage .include Added: head/www/publicfile/files/patch-Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/publicfile/files/patch-Makefile Thu Aug 21 11:18:43 2014 (r365545) @@ -0,0 +1,49 @@ +--- Makefile.orig 1999-11-09 08:23:46.000000000 +0100 ++++ Makefile 2014-08-21 12:29:41.000000000 +0200 +@@ -32,6 +32,14 @@ + compile auto_home.c + ./compile auto_home.c + ++auto_home_stage.c: \ ++auto-str conf-stage ++ ./auto-str auto_home `head -1 conf-stage` > auto_home_stage.c ++ ++auto_home_stage.o: \ ++compile auto_home_stage.c ++ ./compile auto_home_stage.c ++ + byte_chr.o: \ + compile byte_chr.c byte.h + ./compile byte_chr.c +@@ -231,7 +239,7 @@ + ./choose clr tryshsgr hasshsgr.h1 hasshsgr.h2 > hasshsgr.h + + hier.o: \ +-compile hier.c auto_home.h ++compile hier.c auto_home_stage.h + ./compile hier.c + + httpd: \ +@@ -257,9 +265,9 @@ + ./compile httpdate.c + + install: \ +-load install.o hier.o auto_home.o strerr.a substdio.a open.a error.a \ ++load install.o hier.o auto_home_stage.o strerr.a substdio.a open.a error.a \ + str.a +- ./load install hier.o auto_home.o strerr.a substdio.a \ ++ ./load install hier.o auto_home_stage.o strerr.a substdio.a \ + open.a error.a str.a + + install.o: \ +@@ -268,8 +276,8 @@ + ./compile install.c + + instcheck: \ +-load instcheck.o hier.o auto_home.o strerr.a substdio.a error.a str.a +- ./load instcheck hier.o auto_home.o strerr.a substdio.a \ ++load instcheck.o hier.o auto_home_stage.o strerr.a substdio.a error.a str.a ++ ./load instcheck hier.o auto_home_stage.o strerr.a substdio.a \ + error.a str.a + + instcheck.o: \ Added: head/www/publicfile/files/patch-auto_home_stage.h ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/publicfile/files/patch-auto_home_stage.h Thu Aug 21 11:18:43 2014 (r365545) @@ -0,0 +1,9 @@ +--- /dev/null 2014-08-21 12:22:00.000000000 +0200 ++++ auto_home_stage.h 2014-08-21 12:25:14.000000000 +0200 +@@ -0,0 +1,6 @@ ++#ifndef AUTO_HOME_STAGE_H_ ++#define AUTO_HOME_STAGE_H_ ++ ++extern char auto_home[]; ++ ++#endif