diff options
author | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-08-13 14:46:28 +0000 |
---|---|---|
committer | Tobias Kortkamp <tobik@FreeBSD.org> | 2019-08-13 14:46:28 +0000 |
commit | 5223f58a4891cb4b842355aa2cdaaed78d901b3c (patch) | |
tree | f186b130a66fd45a90789815010748bae1750cef /games | |
parent | Style: move GH_* variables closer to each other (diff) |
Mk/bsd.sanity.mk: Flag non-integer PORTREVISION/PORTEPOCH
Currently they are not checked and something like PORTREVISION=foo
or just PORTREVISION= is accepted. Some ports use indirection via
custom variables for them so it is worthwhile to check that they
are set to sane values.
While here fix ports that currently have non-integer PORTREVISION
or PORTEPOCH.
Approved by: portmgr (mat)
Differential Revision: https://reviews.freebsd.org/D21225
Notes
Notes:
svn path=/head/; revision=508829
Diffstat (limited to 'games')
-rw-r--r-- | games/xboard-devel/Makefile | 4 | ||||
-rw-r--r-- | games/xboard/Makefile | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/games/xboard-devel/Makefile b/games/xboard-devel/Makefile index 683cfd3326dd..65fb35afecf9 100644 --- a/games/xboard-devel/Makefile +++ b/games/xboard-devel/Makefile @@ -2,8 +2,8 @@ PORTNAME= xboard-devel PORTVERSION= 4.8.0.20151020.3 -PORTREVISION= -PORTEPOCH= +PORTREVISION= 0 +PORTEPOCH= 0 MASTER_SITES= http://freeheimdall.spdns.org/files/ # http://hgm.nubati.net/cgi-bin/gitweb.cgi?p=xboard.git;a=snapshot;h=${COMMIT_HASH};sf=tgz # http://hgm.nubati.net/cgi-bin/gitweb.cgi/xboard.git/snapshot/${COMMIT_HASH} diff --git a/games/xboard/Makefile b/games/xboard/Makefile index a1e455006637..cf1ae06f764a 100644 --- a/games/xboard/Makefile +++ b/games/xboard/Makefile @@ -4,7 +4,7 @@ PORTNAME?= xboard PORTVERSION?= 4.9.1 PORTREVISION?= 1 -PORTEPOCH?= +PORTEPOCH?= 0 CATEGORIES?= games MASTER_SITES?= GNU |