mirror of
https://git.FreeBSD.org/ports.git
synced 2024-10-31 21:57:12 +00:00
ef51112364
Approved by: reg (maintainer)
96 lines
3.7 KiB
Plaintext
96 lines
3.7 KiB
Plaintext
--- Makefile.in.orig Wed May 10 17:58:00 2000
|
|
+++ Makefile.in Tue May 16 15:45:21 2000
|
|
@@ -5,14 +5,15 @@
|
|
@MCFGR@@MCF@
|
|
|
|
foreigndirs=pc
|
|
-codedirs=vfs lib doc slang gtkedit edit src gnome new_icons icons idl syntax
|
|
-unixdirs=intl $(codedirs) doc-gnome @POSUB@
|
|
+codedirs=vfs lib doc slang gtkedit edit src syntax
|
|
+unixdirs=intl $(codedirs) @POSUB@
|
|
alldirs=$(unixdirs) $(foreigndirs)
|
|
subdirs=$(alldirs)
|
|
|
|
INSTALL = @INSTALL@
|
|
INSTALL_PROGRAM = @INSTALL_PROGRAM@
|
|
INSTALL_DATA = @INSTALL_DATA@
|
|
+INSTALL_SCRIPT = @INSTALL_SCRIPT@
|
|
|
|
DISTMAIN = configure configure.in NEWS README INSTALL INSTALL.FAST \
|
|
Makefile.in FAQ COPYING create_vcs install-sh \
|
|
@@ -45,7 +46,7 @@
|
|
install: installdirs
|
|
@for I in $(unixdirs); do cd $$I; $(MAKE) DESTDIR=$(DESTDIR) $@ || exit 1; cd ..; done
|
|
$(INSTALL_DATA) $(srcdir)/FAQ $(DESTDIR)$(mclibdir)/FAQ
|
|
- $(INSTALL_PROGRAM) mcfn_install $(DESTDIR)$(suppbindir)/mcfn_install
|
|
+ $(INSTALL_SCRIPT) mcfn_install $(DESTDIR)$(suppbindir)/mcfn_install
|
|
chmod +x $(DESTDIR)$(suppbindir)/mcfn_install
|
|
@echo "Please verify that the configuration values are correctly"
|
|
@echo "set in the mc.ext file in $(mclibdir)"
|
|
@@ -57,9 +58,8 @@
|
|
installdirs:
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(bindir) $(DESTDIR)$(mclibdir)
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(mandir) $(DESTDIR)$(man8dir)
|
|
- $(MKINSTALLDIRS) $(DESTDIR)$(icondir) $(DESTDIR)$(suppbindir)
|
|
+ $(MKINSTALLDIRS) $(DESTDIR)$(suppbindir)
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(tidir) $(DESTDIR)$(extfsdir)
|
|
- $(MKINSTALLDIRS) $(DESTDIR)$(idldir) $(DESTDIR)$(syntaxdir)
|
|
|
|
mcfninstall:
|
|
-/bin/sh ./mcfn_install
|
|
--- src/Makefile.in.orig Wed May 10 17:58:02 2000
|
|
+++ src/Makefile.in Tue May 16 15:45:43 2000
|
|
@@ -130,7 +130,7 @@
|
|
-$(RMF) $(srcdir)/Makefile
|
|
|
|
install: mc mcmfmt @saver@
|
|
- $(INSTALL_PROGRAM) mc $(DESTDIR)$(bindir)/$(binprefix)mc
|
|
+ $(INSTALL_PROGRAM) mc $(DESTDIR)$(bindir)/$(binprefix)midc
|
|
$(INSTALL_PROGRAM) mcmfmt $(DESTDIR)$(bindir)/$(binprefix)mcmfmt
|
|
$(SEDCMD2) < $(srcdir)/mc.hlp > $(DESTDIR)$(mclibdir)/$(libprefix)mc.hlp
|
|
|
|
--- doc/Makefile.in.orig Wed May 10 17:58:01 2000
|
|
+++ doc/Makefile.in Tue May 16 15:47:12 2000
|
|
@@ -17,7 +17,7 @@
|
|
install:
|
|
$(MKINSTALLDIRS) $(DESTDIR)/$(man1dir)
|
|
$(MKINSTALLDIRS) $(DESTDIR)/$(man8dir)
|
|
- -$(SEDCMD2) < mc.1 > $(DESTDIR)$(man1dir)/$(manprefix)mc.$(manext)
|
|
+ -$(SEDCMD2) < mc.1 > $(DESTDIR)$(man1dir)/$(manprefix)midc.$(manext)
|
|
-$(SEDCMD2) < mcedit.1 > $(DESTDIR)$(man1dir)/$(manprefix)mcedit.$(manext)
|
|
-$(SEDCMD2) < mcserv.8 > $(DESTDIR)$(man8dir)/$(manprefix)mcserv.$(man8ext)
|
|
|
|
--- lib/Makefile.in.orig Wed May 10 17:58:01 2000
|
|
+++ lib/Makefile.in Tue May 16 15:48:15 2000
|
|
@@ -12,8 +12,8 @@
|
|
# Distribution variables
|
|
#
|
|
|
|
-LIBFILES_IN = mc.ext.in mc-gnome.ext.in
|
|
-LIBFILES_OUT = mc.ext mc-gnome.ext mc.csh mc.sh
|
|
+LIBFILES_IN = mc.ext.in
|
|
+LIBFILES_OUT = mc.ext mc.csh mc.sh
|
|
LIBFILES_CONST = mc.hint mc.hint.es mc.hint.cs mc.hint.ru mc.lib mc.menu cedit.menu edit.indent.rc
|
|
SUPPBIN_IN = mc.csh.in mc.sh.in
|
|
SUPPBIN_OUT = mc.csh mc.sh
|
|
@@ -62,7 +62,7 @@
|
|
for I in $(LIBFILES_OUT); \
|
|
do $(INSTALL_DATA) $(builddir)/lib/$$I $(DESTDIR)$(mclibdir)/$$I; done
|
|
for I in $(SUPPBIN_OUT); \
|
|
- do $(INSTALL_PROGRAM) -m 755 $(builddir)/lib/$$I $(DESTDIR)$(suppbindir)//$$I; done
|
|
+ do $(INSTALL_DATA) -m 755 $(builddir)/lib/$$I $(DESTDIR)$(suppbindir)//$$I; done
|
|
for I in $(TIFILES); \
|
|
do $(INSTALL_DATA) $(srcdir)/$$I $(DESTDIR)$(tidir)/$$I; done
|
|
$(MKINSTALLDIRS) $(DESTDIR)$(confdir)
|
|
--- edit/Makefile.in.orig Wed May 10 17:58:01 2000
|
|
+++ edit/Makefile.in Tue May 16 15:48:47 2000
|
|
@@ -58,7 +58,7 @@
|
|
|
|
mcedit:
|
|
-$(RMF) $(DESTDIR)$(bindir)/$(binprefix)mcedit
|
|
- $(LN_S) mc $(DESTDIR)$(bindir)/$(binprefix)mcedit
|
|
+ $(LN_S) midc $(DESTDIR)$(bindir)/$(binprefix)mcedit
|
|
|
|
showlibdep:
|
|
@echo 'OBJS="$(EDITOBJS)"'
|