Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 4 Nov 2018 17:50:53 +0000 (UTC)
From:      Craig Leres <leres@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r484114 - head/www/mini_httpd
Message-ID:  <201811041750.wA4Horts058612@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: leres
Date: Sun Nov  4 17:50:52 2018
New Revision: 484114
URL: https://svnweb.freebsd.org/changeset/ports/484114

Log:
  Create log directory on install so that it exists when
  500.mini_httpd-rotate runs.
  
  While we're here quiet new portlint nit (move CPE_VENDOR to its own
  block).
  
  PR:		232926
  Reported by:	Oleg Strizhak
  Approved by:	ler (mentor, implicit)

Modified:
  head/www/mini_httpd/Makefile
  head/www/mini_httpd/pkg-plist

Modified: head/www/mini_httpd/Makefile
==============================================================================
--- head/www/mini_httpd/Makefile	Sun Nov  4 17:46:23 2018	(r484113)
+++ head/www/mini_httpd/Makefile	Sun Nov  4 17:50:52 2018	(r484114)
@@ -3,6 +3,7 @@
 
 PORTNAME=	mini_httpd
 PORTVERSION=	1.30
+PORTREVISION=	1
 CATEGORIES=	www ipv6
 MASTER_SITES=	https://www.acme.com/software/mini_httpd/
 
@@ -12,6 +13,7 @@ COMMENT=	Small HTTP server with support for GET, HEAD,
 LICENSE=	BSD2CLAUSE
 
 USES=		cpe ssl
+
 CPE_VENDOR=	acme
 
 post-patch:
@@ -22,6 +24,7 @@ post-patch:
 
 do-install:
 	@${MKDIR} ${STAGEDIR}${PREFIX}/etc/periodic/daily
+	@${MKDIR} ${STAGEDIR}${PREFIX}/www/chroot/logs
 	${INSTALL_PROGRAM} ${WRKSRC}/mini_httpd ${STAGEDIR}${PREFIX}/sbin
 	${INSTALL_PROGRAM} ${WRKSRC}/htpasswd \
 		${STAGEDIR}${PREFIX}/sbin/${PORTNAME}-htpasswd

Modified: head/www/mini_httpd/pkg-plist
==============================================================================
--- head/www/mini_httpd/pkg-plist	Sun Nov  4 17:46:23 2018	(r484113)
+++ head/www/mini_httpd/pkg-plist	Sun Nov  4 17:50:52 2018	(r484114)
@@ -6,3 +6,4 @@ man/man8/mini_httpd.8.gz
 sbin/mini_httpd
 sbin/mini_httpd-htpasswd
 sbin/mini_httpd_wrapper
+@dir www/chroot/logs



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201811041750.wA4Horts058612>