- 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
This commit is contained in:
parent
966736f2f6
commit
954b38eec9
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=516952
2 changed files with 6 additions and 7 deletions
|
@ -5,14 +5,13 @@ PORTNAME= yadex
|
||||||
PORTVERSION= 1.7.0
|
PORTVERSION= 1.7.0
|
||||||
PORTREVISION= 3
|
PORTREVISION= 3
|
||||||
CATEGORIES= games
|
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}
|
DIST_SUBDIR= ${PORTNAME}
|
||||||
|
|
||||||
MAINTAINER= danfe@FreeBSD.org
|
MAINTAINER= danfe@FreeBSD.org
|
||||||
COMMENT= WAD file editor, for games like Doom and Heretic
|
COMMENT= WAD file editor, for games like Doom and Heretic
|
||||||
|
|
||||||
BROKEN= unfetchable
|
|
||||||
|
|
||||||
LICENSE= GPLv2
|
LICENSE= GPLv2
|
||||||
|
|
||||||
USES= gmake perl5 shebangfix xorg
|
USES= gmake perl5 shebangfix xorg
|
||||||
|
|
|
@ -50,11 +50,11 @@
|
||||||
+ @scripts/mkinstalldirs $(DESTDIR)$(MANDIR)/man6
|
+ @scripts/mkinstalldirs $(DESTDIR)$(MANDIR)/man6
|
||||||
+ @scripts/mkinstalldirs $(DESTDIR)$(SHAREDIR)
|
+ @scripts/mkinstalldirs $(DESTDIR)$(SHAREDIR)
|
||||||
+ rm -f $(DESTDIR)$(BINDIR)/yadex
|
+ 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*
|
+ rm -f $(DESTDIR)$(MANDIR)/man6/yadex.6*
|
||||||
+ $(OBJDIR)/install -m 644 doc/yadex.6 $(DESTDIR)$(MANDIR)/man6/yadex.6
|
+ $(BSD_INSTALL_MAN) doc/yadex.6 $(DESTDIR)$(MANDIR)/man6
|
||||||
+ $(OBJDIR)/install -m 644 -d $(DESTDIR)$(SHAREDIR) $(YGD)
|
+ $(BSD_INSTALL_DATA) $(YGD) $(DESTDIR)$(SHAREDIR)
|
||||||
+ $(OBJDIR)/install -m 644 -d $(DESTDIR)$(ETCDIR) yadex.cfg
|
+ $(BSD_INSTALL_DATA) yadex.cfg $(DESTDIR)$(ETCDIR)
|
||||||
+ifndef DESTDIR
|
+ifndef DESTDIR
|
||||||
@echo "---------------------------------------------------------------"
|
@echo "---------------------------------------------------------------"
|
||||||
@echo " Yadex is now installed."
|
@echo " Yadex is now installed."
|
||||||
|
|
Loading…
Reference in a new issue