diff options
author | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2021-08-04 21:10:45 +0000 |
---|---|---|
committer | Jose Alonso Cardenas Marquez <acm@FreeBSD.org> | 2021-08-04 21:12:31 +0000 |
commit | bb7d81a68dd0424e0757d6851c102e4dbe6f44d9 (patch) | |
tree | 4a9f22dfe1ae4e1eb4e600a57b53852f3a7927aa | |
parent | a5541579f68c92886f7adbaf5e538193d21000d1 (diff) |
games/alienarena[-data]: fix pkg-plist
* Use @dir instead of @dirrm into pkg-plist
PR: 257384
Reported by: felix at palmen-it.de
-rw-r--r-- | games/alienarena-data/Makefile | 4 | ||||
-rw-r--r-- | games/alienarena/Makefile | 2 | ||||
-rw-r--r-- | games/alienarena/pkg-plist | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/games/alienarena-data/Makefile b/games/alienarena-data/Makefile index 1bcd3a268978..ddb14407b518 100644 --- a/games/alienarena-data/Makefile +++ b/games/alienarena-data/Makefile @@ -2,7 +2,7 @@ PORTNAME= alienarena PORTVERSION= 2013.766 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= games MASTER_SITES= ftp://ftp.linux.kiev.ua/pub/Linux/Gentoo/distfiles/ \ http://ftp.jeuxlinux.fr/files/ \ @@ -37,7 +37,7 @@ pre-install: . for DIRE in arena botinfo data1 @cd ${WRKSRC} && \ ${FIND} ${DIRE} -type f | ${SORT} | ${SED} -e 's|^|%%DATADIR%%/|' >> ${PLIST} && \ - ${FIND} ${DIRE} -type d | ${SORT} -r | ${SED} -e 's|^|@dirrm %%DATADIR%%/|' >> ${PLIST} + ${FIND} ${DIRE} -type d | ${SORT} -r | ${SED} -e 's|^|@dir %%DATADIR%%/|' >> ${PLIST} . endfor @${ECHO_CMD} share/pixmaps/${PORTNAME}.png >> ${PLIST} diff --git a/games/alienarena/Makefile b/games/alienarena/Makefile index 63b44b1c3dd1..caca37837a77 100644 --- a/games/alienarena/Makefile +++ b/games/alienarena/Makefile @@ -2,7 +2,7 @@ PORTNAME= alienarena PORTVERSION= 2013.766 -PORTREVISION= 10 +PORTREVISION= 11 CATEGORIES= games MASTER_SITES= SF/alienarena.mirror/Alien%20Arena%207.66/ \ http://icculus.org/alienarena/Files/ \ diff --git a/games/alienarena/pkg-plist b/games/alienarena/pkg-plist index 238fadd7d1b2..555fac98fe33 100644 --- a/games/alienarena/pkg-plist +++ b/games/alienarena/pkg-plist @@ -19,6 +19,6 @@ %%LIBDIR%%/data1/sound %%LIBDIR%%/data1/textures %%LIBDIR%%/data1/vehicles -@dirrm %%LIBDIR%%/data1 -@dirrm %%LIBDIR%%/arena -@dirrm %%LIBDIR%% +@dir %%LIBDIR%%/data1 +@dir %%LIBDIR%%/arena +@dir %%LIBDIR%% |