diff options
author | rene <rene@FreeBSD.org> | 2018-11-02 21:32:34 +0800 |
---|---|---|
committer | rene <rene@FreeBSD.org> | 2018-11-02 21:32:34 +0800 |
commit | abe85598b76e65884f63f5d35b14a7a5837c77ee (patch) | |
tree | 2c2c3d0def8d9d1ad349013f7b532f0065f57789 /games/gzdoom/Makefile | |
parent | a6ebb885ab3952f319e4a2e650eba1580d82a26e (diff) | |
download | freebsd-ports-gnome-abe85598b76e65884f63f5d35b14a7a5837c77ee.tar.gz freebsd-ports-gnome-abe85598b76e65884f63f5d35b14a7a5837c77ee.tar.zst freebsd-ports-gnome-abe85598b76e65884f63f5d35b14a7a5837c77ee.zip |
Remove compatibility code for FreeBSD < 11.2 from all ports.
Simplify some ports where DragonFlyBSD no longer needs to be special-cased.
Submitted by: rene
Reviewed by: bapt, jbeich
Differential Revision: https://reviews.freebsd.org/D17724
Diffstat (limited to 'games/gzdoom/Makefile')
-rw-r--r-- | games/gzdoom/Makefile | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/games/gzdoom/Makefile b/games/gzdoom/Makefile index 5694c8938c0b..22390a788954 100644 --- a/games/gzdoom/Makefile +++ b/games/gzdoom/Makefile @@ -43,16 +43,10 @@ PLIST_FILES= bin/${PORTNAME} \ .include "${.CURDIR}/../doom-data/Makefile.include" -.include <bsd.port.pre.mk> - -.if ${OPSYS} == "FreeBSD" && ${OSVERSION} < 1100000 && ${MACHINE_ARCH} == "i386" -STRIP= # 10.4/i386 strip(1) is incapable of stripping the gzdoom binary -.endif - do-install: ${MKDIR} ${STAGEDIR}${DATADIR} ${INSTALL_PROGRAM} ${CONFIGURE_WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin ${INSTALL_DATA} ${CONFIGURE_WRKSRC}/${PORTNAME}.pk3 ${STAGEDIR}${DATADIR} ${INSTALL_DATA} ${FILESDIR}/${PORTNAME}.xpm ${STAGEDIR}${PREFIX}/share/pixmaps -.include <bsd.port.post.mk> +.include <bsd.port.mk> |