Date: Thu, 7 Nov 2019 09:31:01 +0000 (UTC) From: Alexey Dokuchaev <danfe@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r516952 - in head/games/yadex: . files Message-ID: <201911070931.xA79V1us045000@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: danfe Date: Thu Nov 7 09:31:01 2019 New Revision: 516952 URL: https://svnweb.freebsd.org/changeset/ports/516952 Log: - Provide working MASTER_SITES while the original website went down - Install files with our native install(1) instead of handrolled one, this fixes "Warning: 'bin/yadex' is not stripped" reported by Q/A Modified: head/games/yadex/Makefile head/games/yadex/files/patch-GNUmakefile Modified: head/games/yadex/Makefile ============================================================================== --- head/games/yadex/Makefile Thu Nov 7 09:30:39 2019 (r516951) +++ head/games/yadex/Makefile Thu Nov 7 09:31:01 2019 (r516952) @@ -5,13 +5,12 @@ PORTNAME= yadex PORTVERSION= 1.7.0 PORTREVISION= 3 CATEGORIES= games -MASTER_SITES= http://www.teaser.fr/~amajorel/yadex/ +MASTER_SITES= http://vault.101011010.xyz/distfiles/yadex/ \ + http://freebsd.nsu.ru/distfiles/yadex/ GENTOO DIST_SUBDIR= ${PORTNAME} MAINTAINER= danfe@FreeBSD.org COMMENT= WAD file editor, for games like Doom and Heretic - -BROKEN= unfetchable LICENSE= GPLv2 Modified: head/games/yadex/files/patch-GNUmakefile ============================================================================== --- head/games/yadex/files/patch-GNUmakefile Thu Nov 7 09:30:39 2019 (r516951) +++ head/games/yadex/files/patch-GNUmakefile Thu Nov 7 09:31:01 2019 (r516952) @@ -50,11 +50,11 @@ + @scripts/mkinstalldirs $(DESTDIR)$(MANDIR)/man6 + @scripts/mkinstalldirs $(DESTDIR)$(SHAREDIR) + rm -f $(DESTDIR)$(BINDIR)/yadex -+ $(OBJDIR)/install -m 755 $(OBJDIR)/yadex $(DESTDIR)$(BINDIR)/yadex ++ $(BSD_INSTALL_PROGRAM) $(OBJDIR)/yadex $(DESTDIR)$(BINDIR) + rm -f $(DESTDIR)$(MANDIR)/man6/yadex.6* -+ $(OBJDIR)/install -m 644 doc/yadex.6 $(DESTDIR)$(MANDIR)/man6/yadex.6 -+ $(OBJDIR)/install -m 644 -d $(DESTDIR)$(SHAREDIR) $(YGD) -+ $(OBJDIR)/install -m 644 -d $(DESTDIR)$(ETCDIR) yadex.cfg ++ $(BSD_INSTALL_MAN) doc/yadex.6 $(DESTDIR)$(MANDIR)/man6 ++ $(BSD_INSTALL_DATA) $(YGD) $(DESTDIR)$(SHAREDIR) ++ $(BSD_INSTALL_DATA) yadex.cfg $(DESTDIR)$(ETCDIR) +ifndef DESTDIR @echo "---------------------------------------------------------------" @echo " Yadex is now installed."
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201911070931.xA79V1us045000>