diff options
author | lioux <lioux@FreeBSD.org> | 2005-11-15 09:55:41 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2005-11-15 09:55:41 +0800 |
commit | 84f717f3dad1c48570e92a343c245539dedefdef (patch) | |
tree | 6c4e2842142c6ccc1b3841624d5f9a9de4765ef9 /dns/py-dnspython | |
parent | 0449bd87619cfdb06a59874de726ad93b0c6ee4e (diff) | |
download | freebsd-ports-gnome-84f717f3dad1c48570e92a343c245539dedefdef.tar.gz freebsd-ports-gnome-84f717f3dad1c48570e92a343c245539dedefdef.tar.zst freebsd-ports-gnome-84f717f3dad1c48570e92a343c245539dedefdef.zip |
o Permission safeness fix: files can become unaccessible depending
on umask(1) settings
o Bump PORTREVISION
Diffstat (limited to 'dns/py-dnspython')
-rw-r--r-- | dns/py-dnspython/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dns/py-dnspython/Makefile b/dns/py-dnspython/Makefile index bd528d88cb90..f6765f0a1538 100644 --- a/dns/py-dnspython/Makefile +++ b/dns/py-dnspython/Makefile @@ -7,6 +7,7 @@ PORTNAME= dnspython PORTVERSION= 1.3.5 +PORTREVISION= 1 CATEGORIES= dns python MASTER_SITES= http://www.dnspython.org/kits/stable/ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} @@ -41,5 +42,8 @@ post-install: .for file in ${EXAMPLE_FILES} @${INSTALL_DATA} ${WRKSRC}/examples/${file} ${EXAMPLESDIR} .endfor +# permission safeness + @${CHMOD} -R ${SHAREMODE} ${PYTHONPREFIX_SITELIBDIR}/dns/* + @${CHMOD} -R a+X ${PYTHONPREFIX_SITELIBDIR}/dns/* .include <bsd.port.mk> |