1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00
freebsd-ports/mail/hashcash/Makefile
Gerald Pfeifer d09ed096c4 */*: Replace USE_GCC=any with USE_GCC=yes
USE_GCC=any has been equivalent to USE_GCC=yes in most cases (such
as i386 and amd64 since 12.x and depending on configuration 11.x,
most newer installations on other platforms, and 13.x across the
board).

Since commit 96c17633d9 Mk/bsd.gcc.mk is treating them as
different spellings of the same, so continue the deorbiting of the
USE_GCC=any form and simply replace it with USE_GCC=yes.

This should not make any functional difference at all.

Discussed with:	mat, linimon, pkubaj
2021-06-04 05:53:21 +00:00

39 lines
795 B
Makefile

# Created by: bremner@unb.ca
PORTNAME= hashcash
PORTVERSION= 1.22
CATEGORIES= mail
MASTER_SITES= http://www.hashcash.org/source/
MAINTAINER= chalpin@cs.wisc.edu
COMMENT= Anti-spam / denial of service counter-measure tool
LICENSE= CPL
LICENSE_NAME= CPL
LICENSE_TEXT= http://www.cypherspace.org/CPL/
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
USES= tar:tgz
PLIST_FILES= bin/hashcash bin/sha1
PLIST_FILES+= man/man1/hashcash.1.gz
PLIST_FILES+= man/man1/sha1-hashcash.1.gz
PORTDOCS= CHANGELOG LICENSE README
ALL_TARGET= generic
MAKE_ENV+= STAGEDIR=${STAGEDIR}
OPTIONS_DEFINE= DOCS
.include <bsd.port.options.mk>
.if ${ARCH:Mpowerpc*}
USE_GCC= yes
.endif
post-patch-DOCS-off:
${REINPLACE_CMD} -e '/DOC_INSTALL_PATH/d' ${WRKSRC}/Makefile
.include <bsd.port.mk>