diff options
author | sunpoet <sunpoet@FreeBSD.org> | 2019-01-23 08:00:41 +0800 |
---|---|---|
committer | sunpoet <sunpoet@FreeBSD.org> | 2019-01-23 08:00:41 +0800 |
commit | 8572558027c10e17532a0ffb74fa7504c7d9cb27 (patch) | |
tree | a7b7eec509ed5c0e740edc417dee1c2be499a664 /devel | |
parent | 94502f095f10ceb66baea03c0cc861c2146b8588 (diff) | |
download | freebsd-ports-gnome-8572558027c10e17532a0ffb74fa7504c7d9cb27.tar.gz freebsd-ports-gnome-8572558027c10e17532a0ffb74fa7504c7d9cb27.tar.zst freebsd-ports-gnome-8572558027c10e17532a0ffb74fa7504c7d9cb27.zip |
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.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/tradcpp/Makefile | 11 | ||||
-rw-r--r-- | devel/tradcpp/distinfo | 6 |
2 files changed, 9 insertions, 8 deletions
diff --git a/devel/tradcpp/Makefile b/devel/tradcpp/Makefile index 3c310ec6266c..29d1920bbc7d 100644 --- a/devel/tradcpp/Makefile +++ b/devel/tradcpp/Makefile @@ -1,9 +1,9 @@ # $FreeBSD$ PORTNAME= tradcpp -PORTVERSION= 0.5.2 +PORTVERSION= 0.5.3 CATEGORIES= devel -MASTER_SITES= http://ftp.NetBSD.org/pub/NetBSD/misc/dholland/ \ +MASTER_SITES= https://ftp.NetBSD.org/pub/NetBSD/misc/dholland/ \ LOCAL/sunpoet MAINTAINER= sunpoet@FreeBSD.org @@ -11,10 +11,11 @@ COMMENT= Traditional (K&R-style) C preprocessor LICENSE= BSD2CLAUSE -MAKE_ARGS= BINDIR=${PREFIX}/bin MANDIR=${MANPREFIX}/man/man USES= uidfix -PLIST_FILES= bin/${PORTNAME} \ - man/man1/${PORTNAME}.1.gz +MAKE_ARGS= BINDIR=${PREFIX}/bin MANDIR=${MANPREFIX}/man/man + +PLIST_FILES= bin/tradcpp \ + man/man1/tradcpp.1.gz .include <bsd.port.mk> diff --git a/devel/tradcpp/distinfo b/devel/tradcpp/distinfo index 45d41da5ab8e..b1dd94ee3e4c 100644 --- a/devel/tradcpp/distinfo +++ b/devel/tradcpp/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1479482579 -SHA256 (tradcpp-0.5.2.tar.gz) = 6c2153019e6214397294fc40528785e2b8432a4c889a21c41b3f8fc078e74bc0 -SIZE (tradcpp-0.5.2.tar.gz) = 37996 +TIMESTAMP = 1548164757 +SHA256 (tradcpp-0.5.3.tar.gz) = e17b9f42cf74b360d5691bc59fb53f37e41581c45b75fcd64bb965e5e2fe4c5e +SIZE (tradcpp-0.5.3.tar.gz) = 38683 |