Files
ports/mail/exipick/Makefile
T
Tobias Kortkamp 18a2d75dd3 *: Fix WWW with broken anchors-as-comments
Case 1: WWW=https://example.com#foo

 Here #foo is not part of the value of WWW since # introduces a comment
 whether it's part of a word or not (quoting the word+# makes no
 difference either).  # needs to be escaped:

   WWW=https://example.com\#foo

Case 2: WWW=https://example.com #foo

 This is probably fallout from when WWW was moved from pkg-descr to
 Makefile.

The anchors still exist on the actual websites too or I removed them.
2026-03-17 22:29:31 +01:00

33 lines
751 B
Makefile

PORTNAME= exipick
PORTVERSION= 20100323.0
CATEGORIES= mail
MASTER_SITES= http://jetmore.org/john/code/
DISTNAME= ${PORTNAME}.${PORTVERSION}
EXTRACT_SUFX=
MAINTAINER= ports@FreeBSD.org
COMMENT= Display messages from Exim queue based on a variety of criteria
WWW= http://jetmore.org/john/code/\#exipick
PLIST_FILES= bin/${PORTNAME}
USES= perl5 shebangfix
SHEBANG_FILES= ${DISTNAME}
USE_PERL5= run
NO_BUILD= yes
do-extract:
@${RM} -r ${WRKDIR}
@${MKDIR} ${WRKSRC}
@${CP} ${DISTDIR}/${DIST_SUBDIR}/${DISTNAME} ${WRKSRC}
post-patch:
@${REINPLACE_CMD} -e 's;\/local\/exim\/spool;\/var\/spool\/exim;g' \
${WRKSRC}/${DISTNAME}
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} \
${STAGEDIR}${PREFIX}/bin/${PORTNAME}
.include <bsd.port.mk>