diff options
author | mandree <mandree@FreeBSD.org> | 2018-10-06 22:24:59 +0800 |
---|---|---|
committer | mandree <mandree@FreeBSD.org> | 2018-10-06 22:24:59 +0800 |
commit | db25604365ed4f233fa68dd16c78560e1eaaf000 (patch) | |
tree | 50cd1e1a68ed1fd2836d79c09d7a6a191c2df02f /misc/susv3 | |
parent | df4d893cea0d3eed9c2f4ada74cbf53c8a99fc7f (diff) | |
download | freebsd-ports-gnome-db25604365ed4f233fa68dd16c78560e1eaaf000.tar.gz freebsd-ports-gnome-db25604365ed4f233fa68dd16c78560e1eaaf000.tar.zst freebsd-ports-gnome-db25604365ed4f233fa68dd16c78560e1eaaf000.zip |
misc/susv*: fix fallout from PR#230864/c479406, misc fixes
susv2, update URLs to keep things downloadable
susv3, add a more direct access link
susv4, update to newer version (2018 edition), revise pkg-descr
susv2, susv3: add the file revision date to PORTVERSION for consistency and
transparency.
all: add OPTIONS_SLAVE=DOCS because it is no good installing an empty port,
systems that do not want documentation shall not install these ports.
all: Reshuffle Makefile lines to reduce number of portlint warnings.
Diffstat (limited to 'misc/susv3')
-rw-r--r-- | misc/susv3/Makefile | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/misc/susv3/Makefile b/misc/susv3/Makefile index e78307f40341..815737714b2c 100644 --- a/misc/susv3/Makefile +++ b/misc/susv3/Makefile @@ -2,26 +2,34 @@ # $FreeBSD$ PORTNAME= susv3 -PORTVERSION= 1.2 +PORTVERSION= 1.2.20050121 CATEGORIES= misc MASTER_SITES= # DISTNAME= susv3 -MAINTAINER= ports@FreeBSD.org +MAINTAINER= mandree@FreeBSD.org COMMENT= Single UNIX Specification Version 3 -RESTRICTED= Redistribution of the documents is not permitted +LICENSE= NONE USES= tar:bzip2 + +RESTRICTED= Redistribution of the documents is not permitted + NO_BUILD= yes PORTDOCS= * OPTIONS_DEFINE= DOCS +# Fix fallout of https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230864 and force the option on; +# meaning is to force this option on. The previous change around Sept 2018 introduced a regression in +# that PORTDOCS only works if there is a DOCS option. It does not, however, make sense to install +# empty documentation ports. +OPTIONS_SLAVE= DOCS .include <bsd.port.pre.mk> .if !exists(${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}) -IGNORE= may not be redistributed because of licensing reasons. Please visit http://www.unix.org/version3/online.html to accept their license and download ${DISTFILES} into ${DISTDIR} +IGNORE= may not be redistributed because of licensing reasons. Please visit http://www.unix.org/version3/online.html or https://publications.opengroup.org/t041 to accept their license and download ${DISTFILES} into ${DISTDIR} . You may need to choose "Read HTML Edition Online", navigate to it, and then find the Download link at the bottom right of the page .endif do-install: |