1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/devel/tradcpp/Makefile
Sunpoet Po-Chuan Hsieh 948f01caa7 Update to 0.5.3
- Fix markup typo in the man page.
- Abort on line numbering or column numbering overflow. Line numbers are limited
  to values that fit in "unsigned int". Also reject input lines longer than
  2^32-1 characters. It seems reasonable to presume that any input that violates
  these constraints is someone screwing around and not a serious attempt to
  compile or preprocess anything useful. Done in response to n2129, but without
  getting into any of the silliness found there.
- Recognize __ia64__ for IA64 builds.
- Recognize __aarch64__ for 64-bit ARM builds, as sent in by various people.
- Recognize __riscv__ and __riscv64__ for risc-v builds.
2019-01-23 00:00:41 +00:00

22 lines
403 B
Makefile

# $FreeBSD$
PORTNAME= tradcpp
PORTVERSION= 0.5.3
CATEGORIES= devel
MASTER_SITES= https://ftp.NetBSD.org/pub/NetBSD/misc/dholland/ \
LOCAL/sunpoet
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Traditional (K&R-style) C preprocessor
LICENSE= BSD2CLAUSE
USES= uidfix
MAKE_ARGS= BINDIR=${PREFIX}/bin MANDIR=${MANPREFIX}/man/man
PLIST_FILES= bin/tradcpp \
man/man1/tradcpp.1.gz
.include <bsd.port.mk>