Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 30 Mar 2020 13:48:52 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r529889 - head/net/avahi-app
Message-ID:  <202003301348.02UDmqpC036260@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp
Date: Mon Mar 30 13:48:51 2020
New Revision: 529889
URL: https://svnweb.freebsd.org/changeset/ports/529889

Log:
  Fix paths in manual pages (duplicated PREFIX)
  
  There is no need to prepend PREFIX to paths in manual pages. Everything is
  handled by the build system of the port.
  
  Before:
  
    $ grep -Z /usr/local/usr/local /usr/local/man/man5/avahi-daemon.conf.5.gz
    \fB/usr/local/usr/local/etc/avahi/avahi-daemon.conf
  
  After:
  
    $ grep -Z /usr/local/usr/local /usr/local/man/man5/avahi-daemon.conf.5.gz
    \fB/usr/local/etc/avahi/avahi-daemon.conf
  
  Differential Revision:	https://reviews.freebsd.org/D24200

Modified:
  head/net/avahi-app/Makefile

Modified: head/net/avahi-app/Makefile
==============================================================================
--- head/net/avahi-app/Makefile	Mon Mar 30 13:24:59 2020	(r529888)
+++ head/net/avahi-app/Makefile	Mon Mar 30 13:48:51 2020	(r529889)
@@ -3,7 +3,7 @@
 
 PORTNAME=	avahi
 PORTVERSION=	0.7
-PORTREVISION?=	2
+PORTREVISION?=	3
 CATEGORIES?=	net dns
 MASTER_SITES=	http://www.avahi.org/download/
 PKGNAMESUFFIX?=	-app
@@ -98,8 +98,6 @@ post-patch: avahi-post-patch
 avahi-post-patch:
 	@${REINPLACE_CMD} -e 's|avahi_runtime_dir="/run"|avahi_runtime_dir="/var/run"|' \
 		${WRKSRC}/configure
-	@${REINPLACE_CMD} -e 's|/etc|${PREFIX}/etc|' \
-		${WRKSRC}/man/*.*
 	@${RM} ${WRKSRC}/man/*.bak
 	@${REINPLACE_CMD} -e 's|-ldl||g ; s|netdev|network|g' \
 		${WRKSRC}/configure \



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