mirror of
https://git.freebsd.org/ports.git
synced 2025-04-28 09:36:41 -04:00
This is in preparation for the import of screen 5.0.0. I've tried screen-devel (5.0.0 prelrelease). There were some bugs and inconsistencies with screen 4.9.1. So we move screen to screen49 to maintain a version of screen that is known to work. This implements the concept of a master screen port by renaming it to screen49 and creating a slave port called screen. The idea of this is similar in concept used with the cfengine or krb5 family of ports. Users should never need to change port origins when a new stable version of screen is committed. People can install the screen port or package as before. However if they choose to use the other screen port/package they may remove screen and install the versioned "master" port/package directly. This is in preparation for import of screen 5.0.0 into the ports collection. Unfortunately my initial testing of screen 5.0.0 using the screen-devel port uncovered an annoying (to me) bug, which I have opened an issue with our upstream. I have not found the time to test their patches enough to feel comfortalbe replacing the existing screen 4.9.1 with 5.0.0. When 5.0.0 will be imported as sysutils/screen50, it will not become the default master port until we believe it won't become a source of many bugzilla bugs.
34 lines
1 KiB
Text
34 lines
1 KiB
Text
--- doc/Makefile.in.orig 2014-04-29 20:26:42.618832001 -0700
|
|
+++ doc/Makefile.in 2014-04-29 20:29:26.379384101 -0700
|
|
@@ -31,7 +31,10 @@
|
|
$(MAKEINFO) --no-split $(srcdir)/screen.texinfo -o screen.info
|
|
|
|
install: installdirs
|
|
+ifeq (${WITH_MAN},1)
|
|
$(INSTALL_DATA) $(srcdir)/screen.1 $(DESTDIR)$(mandir)/man1/screen.1
|
|
+endif
|
|
+ifeq (${WITH_INFO},1)
|
|
-$(MAKE) screen.info
|
|
-if test -f screen.info; then d=.; else d=$(srcdir); fi; \
|
|
if test -f $$d/screen.info; then \
|
|
@@ -40,13 +43,19 @@
|
|
install-info --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/screen.info; \
|
|
else true; fi; \
|
|
fi
|
|
+endif
|
|
|
|
uninstall:
|
|
rm -f $(DESTDIR)$(mandir)/man1/screen.1
|
|
rm -f $(DESTDIR)$(infodir)/screen.info*
|
|
|
|
installdirs:
|
|
- $(srcdir)/../etc/mkinstalldirs $(DESTDIR)$(mandir)/man1 $(DESTDIR)$(infodir)
|
|
+ifeq (${WITH_MAN},1)
|
|
+ $(srcdir)/../etc/mkinstalldirs $(DESTDIR)$(mandir)/man1
|
|
+endif
|
|
+ifeq (${WITH_INFO},1)
|
|
+ $(srcdir)/../etc/mkinstalldirs $(DESTDIR)$(infodir)
|
|
+endif
|
|
|
|
mostlyclean:
|
|
-rm -f *.cp *.cps *.fn *.fns *.ky *.kys *.pg *.tp *.vr
|