svn commit: r516952 - in head/games/yadex: . files

Alexey Dokuchaev danfe at FreeBSD.org
Thu Nov 7 09:31:02 UTC 2019


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 at 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."


More information about the svn-ports-all mailing list