From owner-svn-ports-head@freebsd.org Thu Nov 7 09:31:02 2019 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 308331ADFC8; Thu, 7 Nov 2019 09:31:02 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 477ynf0X1Sz4N5d; Thu, 7 Nov 2019 09:31:02 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id EA65FB8C6; Thu, 7 Nov 2019 09:31:01 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id xA79V1iK045002; Thu, 7 Nov 2019 09:31:01 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id xA79V1us045000; Thu, 7 Nov 2019 09:31:01 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <201911070931.xA79V1us045000@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Thu, 7 Nov 2019 09:31:01 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r516952 - in head/games/yadex: . files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: in head/games/yadex: . files X-SVN-Commit-Revision: 516952 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Nov 2019 09:31:02 -0000 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."