svn commit: r529889 - head/net/avahi-app
Mateusz Piotrowski
0mp at FreeBSD.org
Mon Mar 30 13:49:01 UTC 2020
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 \
More information about the svn-ports-all
mailing list