mirror of
https://git.freebsd.org/ports.git
synced 2026-06-02 11:08:52 +00:00
18a2d75dd3
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.
20 lines
462 B
Makefile
20 lines
462 B
Makefile
PORTNAME= rtfreader
|
|
PORTVERSION= 1.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= textproc
|
|
MASTER_SITES= http://www.fiction.net/blong/programs/
|
|
DISTNAME= ms-rtf
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= Portable application/ms-rtf parser
|
|
WWW= http://www.fiction.net/blong/programs/\#rtf
|
|
|
|
ALL_TARGET= rtfreader
|
|
MAKE_ARGS= CC="${CC}" CFLAGS="${CFLAGS}"
|
|
PLIST_FILES= bin/rtfreader
|
|
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/rtfreader ${STAGEDIR}${PREFIX}/bin
|
|
|
|
.include <bsd.port.mk>
|