svn commit: r513895 - head/dns/ddclient

Koichiro Iwao meta at FreeBSD.org
Sun Oct 6 16:42:32 UTC 2019


Author: meta
Date: Sun Oct  6 16:42:31 2019
New Revision: 513895
URL: https://svnweb.freebsd.org/changeset/ports/513895

Log:
  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
  MFH:		2019Q4

Modified:
  head/dns/ddclient/Makefile

Modified: head/dns/ddclient/Makefile
==============================================================================
--- head/dns/ddclient/Makefile	Sun Oct  6 16:25:26 2019	(r513894)
+++ head/dns/ddclient/Makefile	Sun Oct  6 16:42:31 2019	(r513895)
@@ -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-head mailing list