Date: Sun, 6 Oct 2019 16:42:31 +0000 (UTC) From: Koichiro Iwao <meta@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r513895 - head/dns/ddclient Message-ID: <201910061642.x96GgVaE088568@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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@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@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 \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201910061642.x96GgVaE088568>