diff options
author | Maxim Sobolev <sobomax@FreeBSD.org> | 2003-02-03 13:39:15 +0000 |
---|---|---|
committer | Maxim Sobolev <sobomax@FreeBSD.org> | 2003-02-03 13:39:15 +0000 |
commit | ba5358038a4d856de6add3585a7e2b88518bc191 (patch) | |
tree | cc4625aa1a17f9e5771238c67c04efd71ddadde4 | |
parent | Maintainer update: (diff) |
Correct permissions of the installed datafiles. Bump PORTREVISION.
PR: 45207
Submitted by: Stefan `Sec` Zehl <sec@42.org>
Notes
Notes:
svn path=/head/; revision=74574
-rw-r--r-- | games/solarwolf/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/games/solarwolf/Makefile b/games/solarwolf/Makefile index 42fe6bb34761..2526ac4ffe5c 100644 --- a/games/solarwolf/Makefile +++ b/games/solarwolf/Makefile @@ -7,6 +7,7 @@ PORTNAME= solarwolf PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= games MASTER_SITES= http://www.pygame.org/shredwheat/solarwolf/ @@ -16,6 +17,9 @@ RUN_DEPENDS= ${PYTHON_SITELIBDIR}/pygame/__init__.py:${PORTSDIR}/devel/py-game USE_PYTHON= yes +post-extract: + ${FIND} ${WRKSRC}/data -type f | ${XARGS} ${CHMOD} 644 + do-build: ${PYTHON_CMD} ${PYTHON_LIBDIR}/compileall.py ${WRKSRC} |