diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2021-05-10 16:45:06 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2021-05-10 16:47:05 +0000 |
commit | 4f6c06bb823c8db4dc9a786b29fb8cf43f0f1c41 (patch) | |
tree | e637115fa0b891555585c81909158b1daf7e174e | |
parent | 43a8d8729ea9979d2002ea1b394260387eaaccb8 (diff) |
games/alienarena-data: eliminate @dirrm* usage
It's been years since @dirrm and @dirrmtry support has been removed
from the tree, pkg 1.17 just drop entirely the support for those
keywords making this port fail to build.
-rw-r--r-- | games/alienarena-data/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/games/alienarena-data/Makefile b/games/alienarena-data/Makefile index 65282a9f9384..38d224411380 100644 --- a/games/alienarena-data/Makefile +++ b/games/alienarena-data/Makefile @@ -2,6 +2,7 @@ PORTNAME= alienarena PORTVERSION= 2013.766 +PORTEEVISION= 1 CATEGORIES= games MASTER_SITES= ftp://ftp.linux.kiev.ua/pub/Linux/Gentoo/distfiles/ \ http://ftp.jeuxlinux.fr/files/ \ @@ -40,12 +41,10 @@ pre-install: . endfor @${ECHO_CMD} share/pixmaps/${PORTNAME}.png >> ${PLIST} - @${ECHO_CMD} "@dirrmtry %%DATADIR%%" >> ${PLIST} @cd ${WRKSRC}/docs && \ ${FIND} * -type f | ${SORT} | ${SED} -e 's|^|%%PORTDOCS%%%%DOCSDIR%%/|' >> ${PLIST} && \ ${FIND} * -type d | ${SORT} -r | ${SED} -e 's|^|%%PORTDOCS%%@dirrm %%DOCSDIR%%/|' >> ${PLIST} - @${ECHO_CMD} "%%PORTDOCS%%@dirrmtry %%DOCSDIR%%" >> ${PLIST} do-install: cd ${WRKSRC} && ${COPYTREE_SHARE} "arena botinfo data1" ${STAGEDIR}${DATADIR} |