diff options
author | clement <clement@FreeBSD.org> | 2004-02-12 01:55:28 +0800 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2004-02-12 01:55:28 +0800 |
commit | bc1da9824c82606921670f074b333f99ba9a627e (patch) | |
tree | 33eb57c0aa1c941cd18e45daeaf3bc0677fc02be | |
parent | 019ed93f6c355c85bce498b45d7303d21c619e92 (diff) | |
download | freebsd-ports-gnome-bc1da9824c82606921670f074b333f99ba9a627e.tar.gz freebsd-ports-gnome-bc1da9824c82606921670f074b333f99ba9a627e.tar.zst freebsd-ports-gnome-bc1da9824c82606921670f074b333f99ba9a627e.zip |
- Add a little workaround to keep man directories owned by root.
- Unmark as FORBIDDEN.
Noticed by: kris
-rw-r--r-- | news/inn-current/Makefile | 4 | ||||
-rw-r--r-- | news/inn-stable/Makefile | 4 | ||||
-rw-r--r-- | news/inn/Makefile | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/news/inn-current/Makefile b/news/inn-current/Makefile index 29db89e3f4c9..c299824f0996 100644 --- a/news/inn-current/Makefile +++ b/news/inn-current/Makefile @@ -17,8 +17,6 @@ DISTNAME= ${PORTNAME}-${BRANCH:U}-${SNAPSHOT} MAINTAINER= clement@FreeBSD.org COMMENT= InterNetNews -- the Internet meets Netnews -FORBIDDEN= "Changes ownership of system directories" - BRANCH= current SNAPSHOT= 20040118 @@ -139,6 +137,8 @@ post-patch: .endif post-install: + ${CHOWN} root:wheel ${PREFIX}/man ${PREFIX}/man/man1 ${PREFIX}/man/man3 \ + ${PREFIX}/man/man5 ${PREFIX}/man/man8 ${MKDIR} ${INN_NEWSSPOOL} .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} diff --git a/news/inn-stable/Makefile b/news/inn-stable/Makefile index a1792e4557a0..e73e4792e921 100644 --- a/news/inn-stable/Makefile +++ b/news/inn-stable/Makefile @@ -17,8 +17,6 @@ DISTNAME= ${PORTNAME}-${BRANCH:U}-${SNAPSHOT} MAINTAINER= clement@FreeBSD.org COMMENT= InterNetNews -- the Internet meets Netnews -FORBIDDEN= "Changes ownership of system directories" - BRANCH= stable SNAPSHOT= 20040118 @@ -135,6 +133,8 @@ post-patch: .endif post-install: + ${CHOWN} root:wheel ${PREFIX}/man ${PREFIX}/man/man1 ${PREFIX}/man/man3 \ + ${PREFIX}/man/man5 ${PREFIX}/man/man8 ${MKDIR} ${INN_NEWSSPOOL} .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} diff --git a/news/inn/Makefile b/news/inn/Makefile index 46f75cd94e16..1c472776a927 100644 --- a/news/inn/Makefile +++ b/news/inn/Makefile @@ -15,8 +15,6 @@ MASTER_SITE_SUBDIR= inn MAINTAINER= clement@FreeBSD.org COMMENT= InterNetNews -- the Internet meets Netnews -FORBIDDEN= "Changes ownership of system directories" - NO_LATEST_LINK= yes USE_GMAKE= yes USE_PERL5= yes @@ -131,6 +129,8 @@ post-patch: .endif post-install: + ${CHOWN} root:wheel ${PREFIX}/man ${PREFIX}/man/man1 ${PREFIX}/man/man3 \ + ${PREFIX}/man/man5 ${PREFIX}/man/man8 ${MKDIR} ${INN_NEWSSPOOL} .if !defined(NOPORTDOCS) ${MKDIR} ${DOCSDIR} |