%n sharutils %v 4.2 %c * %l * %b * %d * %f * %t sharutils-4.2.tgz %w Gnu %% %setup patch -u -p1 <<'ENDPATCH' diff -ru2N sharutils-4.2/doc/Makefile.in sharutils-MCC/doc/Makefile.in --- sharutils-4.2/doc/Makefile.in Sat Nov 25 02:44:35 1995 +++ sharutils-MCC/doc/Makefile.in Fri Aug 16 22:51:36 1996 @@ -26,5 +26,5 @@ transform = @program_transform_name@ INSTALL = @INSTALL@ -INSTALL_DATA = @INSTALL_DATA@ +INSTALL_DATA = install -m 444 MAKEINFO = makeinfo TEXI2DVI = texi2dvi @@ -83,9 +83,4 @@ install-exec: install-data: - $(top_srcdir)/mkinstalldirs $(infodir) - cd $(srcdir) && \ - for file in sharutils.info* remsync.info*; do \ - $(INSTALL_DATA) $$file $(infodir)/$$file; \ - done uninstall: @@ -102,6 +97,5 @@ if test $$name = uudecode; then \ rm -f $(man1dir)/`echo uudecode | sed '$(transform)'`$(man1ext); \ - man1base=`echo $(man1dir) | sed 's@.*/\(.*\)@&1@'`; \ - echo ".so $$man1base/uuencode$(man1ext)" \ + echo ".so man1/uuencode$(man1ext)" \ > $(man1dir)/`echo uudecode | sed '$(transform)'`$(man1ext); \ else \ @@ -115,4 +109,6 @@ $(man5dir)/`echo $$name | sed '$(transform)'`$(man5ext); \ done + (cd /usr/man/man1;gzip -9f shar.1 unshar.1 uuencode.1 uudecode.1) + (cd /usr/man/man5;gzip -9f uuencode.5) uninstall-man: diff -ru2N sharutils-4.2/lib/Makefile.in sharutils-MCC/lib/Makefile.in --- sharutils-4.2/lib/Makefile.in Sun Nov 5 11:34:11 1995 +++ sharutils-MCC/lib/Makefile.in Fri Aug 16 22:40:58 1996 @@ -32,5 +32,5 @@ DEFS = @DEFS@ -CFLAGS = @CFLAGS@ +CFLAGS = -O6 CPPFLAGS = @CPPFLAGS@ LIBS = libshar.a @@ -44,5 +44,5 @@ # If your systems has the GNU getopt functions available you may comment # out the following line. -GETOPT = getopt.o getopt1.o +GETOPT = GETOPTSRC = getopt.c getopt1.c diff -ru2N sharutils-4.2/src/Makefile.in sharutils-MCC/src/Makefile.in --- sharutils-4.2/src/Makefile.in Sat Nov 25 21:37:27 1995 +++ sharutils-MCC/src/Makefile.in Fri Aug 16 22:42:24 1996 @@ -38,11 +38,11 @@ CC = @CC@ INSTALL = @INSTALL@ -INSTALL_PROGRAM = @INSTALL_PROGRAM@ -INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_PROGRAM = install -s -m 555 +INSTALL_SCRIPT = install -m 555 RANLIB = @RANLIB@ DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@ LIBS = ../lib/libshar.a @INTLLIBS@ ../lib/libshar.a @LIBS@ -CFLAGS = @CFLAGS@ +CFLAGS = -O6 CPPFLAGS = @CPPFLAGS@ LDFLAGS = @LDFLAGS@ ENDPATCH ./configure --prefix=/usr --disable-nls make * make install * make install-man * chmod 444 /usr/man/man1/uudecode.1.gz * rm -f /usr/bin/remsync %%