svn commit: r562184 - head/www/spreadlogd

Alexey Dokuchaev danfe at FreeBSD.org
Thu Jan 21 09:29:39 UTC 2021


Author: danfe
Date: Thu Jan 21 09:29:38 2021
New Revision: 562184
URL: https://svnweb.freebsd.org/changeset/ports/562184

Log:
  - Fix the build on recent -CURRENT by depending on `devel/libgnuregex'
  - Drop the leading article from the COMMENT line per our conventions
  - Install docfiles in the dedicated `do-install-DOCS-on' helper target
  - Wrap an overly long line and reduce vertical whitespace while here
  
  PR:		252258
  Submitted by:	kevans

Modified:
  head/www/spreadlogd/Makefile

Modified: head/www/spreadlogd/Makefile
==============================================================================
--- head/www/spreadlogd/Makefile	Thu Jan 21 09:19:55 2021	(r562183)
+++ head/www/spreadlogd/Makefile	Thu Jan 21 09:29:38 2021	(r562184)
@@ -7,18 +7,17 @@ CATEGORIES=	www net
 MASTER_SITES=	http://www.lethargy.org/mod_log_spread/
 
 MAINTAINER=	portmaster at bsdforge.com
-COMMENT=	The backend of mod_log_spread
+COMMENT=	Backend for mod_log_spread
 
 LICENSE=	ART10
 
-LIB_DEPENDS=	libspread.so:net/spread
+LIB_DEPENDS=	libgnuregex.so:devel/libgnuregex \
+		libspread.so:net/spread
 
 MAKEFILE=	makefile
-
 USE_RC_SUBR=	spreadlogd
 
 PLIST_FILES=	sbin/spreadlogd etc/spreadlogd.conf.sample
-
 PORTDOCS=	README
 
 OPTIONS_DEFINE=	DOCS
@@ -28,7 +27,10 @@ post-patch:
 
 do-install:
 	${INSTALL_PROGRAM} ${WRKSRC}/spreadlogd ${STAGEDIR}${PREFIX}/sbin
-	${INSTALL} ${WRKSRC}/spreadlogd.conf ${STAGEDIR}${PREFIX}/etc/spreadlogd.conf.sample
+	${INSTALL_DATA} ${WRKSRC}/spreadlogd.conf \
+		${STAGEDIR}${PREFIX}/etc/spreadlogd.conf.sample
+
+do-install-DOCS-on:
 	@${MKDIR} ${STAGEDIR}${DOCSDIR}
 	${INSTALL_DATA} ${PORTDOCS:S|^|${WRKSRC}/|} ${STAGEDIR}${DOCSDIR}
 


More information about the svn-ports-head mailing list