svn commit: r514023 - branches/2019Q4/dns/ddclient

Koichiro Iwao meta at FreeBSD.org
Tue Oct 8 02:23:34 UTC 2019


Author: meta
Date: Tue Oct  8 02:23:34 2019
New Revision: 514023
URL: https://svnweb.freebsd.org/changeset/ports/514023

Log:
  MFH: r513895
  
  dns/ddclient: Get rid of a wrong shebang statement
  
  in bin/ddclient. It has double shebang line and one is
  "#!/usr/local/local/bin/perl -w" This is definitely wrong.
  
  Also bumped PORTREVISION due to package content change.
  
  PR:		231277
  Submitted by:	koobs
  Reported by:	O. Hartmann <ohartmann at walstatt.org>
  Approved by:	maintainer
  
  Approved by:	portmgr (miwi)

Modified:
  branches/2019Q4/dns/ddclient/Makefile
Directory Properties:
  branches/2019Q4/   (props changed)

Modified: branches/2019Q4/dns/ddclient/Makefile
==============================================================================
--- branches/2019Q4/dns/ddclient/Makefile	Tue Oct  8 01:32:49 2019	(r514022)
+++ branches/2019Q4/dns/ddclient/Makefile	Tue Oct  8 02:23:34 2019	(r514023)
@@ -5,7 +5,7 @@ PORTNAME=	ddclient
 DISTVERSIONPREFIX=	v
 DISTVERSION=	3.8.3-104
 DISTVERSIONSUFFIX=	-gec2acfb
-PORTREVISION=	1
+PORTREVISION=	2
 CATEGORIES=	dns
 
 MAINTAINER=	mjl at luckie.org.nz
@@ -42,6 +42,8 @@ post-patch:
 		's|/usr|${PREFIX}|g'
 	@${REINPLACE_CMD} -e 's|%%ETCDIR%%|${PREFIX}/etc| ; \
 		 s|%%LOCALBASE%%|${LOCALBASE}|' ${WRKSRC}/ddclient
+	@${REINPLACE_CMD} -e '/^\#\!\/usr\/local\/local/d' \
+		${WRKSRC}/ddclient
 
 do-install:
 	(cd ${WRKSRC} && ${INSTALL_DATA} sample-etc_ddclient.conf \


More information about the svn-ports-branches mailing list