1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-24 09:25:01 +00:00
This commit is contained in:
Andrey A. Chernov 1995-03-26 02:21:28 +00:00
parent a915483270
commit 3143c86914
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=1201
12 changed files with 198 additions and 24 deletions

View File

@ -1,11 +1,11 @@
# New ports collection makefile for: gshar+gunshar
# Version required: 4.1.3
# Version required: 4.1.4
# Date created: 28 Dec 1994
# Whom: ache
#
# $Id: Makefile,v 1.1.1.1 1994/12/28 04:44:59 ache Exp $
# $Id: Makefile,v 1.2 1994/12/28 05:08:54 ache Exp $
#
DISTNAME= sharutils-4.1.3
DISTNAME= sharutils-4.1.4
MASTER_SITES= ftp://ftp.iro.umontreal.ca/pub/contrib/pinard/
GNU_CONFIGURE= YES
CONFIGURE_ARGS= --program-prefix=g --disable-uucode --prefix=${PREFIX}

View File

@ -1 +1 @@
MD5 (sharutils-4.1.3.tar.gz) = d10841ab1435a366f296fe2396c271c2
MD5 (sharutils-4.1.4.tar.gz) = 9efe11708a9c869189a4efb918b0916c

View File

@ -0,0 +1,89 @@
*** Makefile.in.orig Wed Feb 22 22:31:33 1995
--- Makefile.in Sun Mar 26 05:58:40 1995
***************
*** 18,24 ****
PACKAGE = @PACKAGE@
VERSION = @VERSION@
! PROGRAMS = @PROGRAMS@
CATALOGS = de.msg fr.msg nl.msg sv.msg
@SET_MAKE@
--- 18,25 ----
PACKAGE = @PACKAGE@
VERSION = @VERSION@
! PROGRAMS = shar unshar
! SCRIPTS = mail-files mailshar remsync
CATALOGS = de.msg fr.msg nl.msg sv.msg
@SET_MAKE@
***************
*** 167,176 ****
getopt.o getopt1.o: getopt.h
xgetcwd.o: pathmax.h
! .SUFFIXES: .msg .tt
! .tt.msg:
! cd $(srcdir) && \
! make-msg $*.tt $(PACKAGE).cod > $*.tmp && mv $*.tmp $@
$(CATALOGS): $(PACKAGE).cod
--- 168,177 ----
getopt.o getopt1.o: getopt.h
xgetcwd.o: pathmax.h
! #.SUFFIXES: .msg .tt
! #.tt.msg:
! # cd $(srcdir) && \
! # make-msg $*.tt $(PACKAGE).cod > $*.tmp && mv $*.tmp $@
$(CATALOGS): $(PACKAGE).cod
***************
*** 215,220 ****
--- 216,225 ----
$(INSTALL_PROGRAM) $$name \
$(bindir)/`echo $$name | sed '$(transform)'`; \
done
+ for name in $(SCRIPTS); do \
+ $(INSTALL_DATA) $$name $(bindir); \
+ chmod 755 $(bindir)/$$name; \
+ done
for name in $(CATALOGS); do \
lang=`echo $$name | sed 's/.msg$$//'`; \
$(srcdir)/mkinstalldirs $(localedir)/$$lang; \
***************
*** 237,251 ****
install-man:
$(srcdir)/mkinstalldirs $(man1dir) $(man5dir)
! for name in shar unshar uuencode; do \
$(INSTALL_DATA) $(srcdir)/$$name.1 \
$(man1dir)/`echo $$name | sed '$(transform)'`$(man1ext); \
done
! rm -f $(man1dir)/`echo uudecode | sed '$(transform)'`$(man1ext)
! ln $(man1dir)/`echo uuencode | sed '$(transform)'`$(man1ext) \
! $(man1dir)/`echo uudecode | sed '$(transform)'`$(man1ext)
! $(INSTALL_DATA) $(srcdir)/uuencode.5 \
! $(man5dir)/`echo uuencode | sed '$(transform)'`$(man5ext)
uninstall-man:
for name in shar unshar uudecode uuencode; do \
--- 242,256 ----
install-man:
$(srcdir)/mkinstalldirs $(man1dir) $(man5dir)
! for name in shar unshar; do \
$(INSTALL_DATA) $(srcdir)/$$name.1 \
$(man1dir)/`echo $$name | sed '$(transform)'`$(man1ext); \
done
! # rm -f $(man1dir)/`echo uudecode | sed '$(transform)'`$(man1ext)
! # ln $(man1dir)/`echo uuencode | sed '$(transform)'`$(man1ext) \
! # $(man1dir)/`echo uudecode | sed '$(transform)'`$(man1ext)
! # $(INSTALL_DATA) $(srcdir)/uuencode.5 \
! # $(man5dir)/`echo uuencode | sed '$(transform)'`$(man5ext)
uninstall-man:
for name in shar unshar uudecode uuencode; do \

View File

@ -1 +1 @@
Allow packing and unpacking of shell archives
Allow packing and unpacking of shell archives, v4.1.4

View File

@ -7,9 +7,3 @@ is initially derived from public domain. Some modules and other
code sections are freely borrowed from other GNU distributions,
bringing `shar' under the terms of the GNU General Public License.
`uuencode' prepares a file for transmission over an electronic
channel which ignores or otherwise mangles the eight bit (high
order bit) of bytes. `uudecode' does the converse transformation.
They are derived from the BSD NET/2 distribution. If you have more
powerful `uuencode' and `uudecode' already available, you may want
to use `./configure --disable-uucode' to prevent their installation.

View File

@ -1,10 +1,14 @@
@cwd /usr/local
info/sharutils.info
info/remsync.info
bin/gshar
bin/gunshar
bin/mailshar
bin/mail-files
bin/remsync
man/man1/gshar.1
man/man1/gunshar.1
man/man1/guuencode.1
share/locale/de/sharutils.msg
share/locale/fr/sharutils.msg
share/locale/sv/sharutils.msg
share/locale/nl/sharutils.msg

View File

@ -1,11 +1,11 @@
# New ports collection makefile for: gshar+gunshar
# Version required: 4.1.3
# Version required: 4.1.4
# Date created: 28 Dec 1994
# Whom: ache
#
# $Id: Makefile,v 1.1.1.1 1994/12/28 04:44:59 ache Exp $
# $Id: Makefile,v 1.2 1994/12/28 05:08:54 ache Exp $
#
DISTNAME= sharutils-4.1.3
DISTNAME= sharutils-4.1.4
MASTER_SITES= ftp://ftp.iro.umontreal.ca/pub/contrib/pinard/
GNU_CONFIGURE= YES
CONFIGURE_ARGS= --program-prefix=g --disable-uucode --prefix=${PREFIX}

View File

@ -1 +1 @@
MD5 (sharutils-4.1.3.tar.gz) = d10841ab1435a366f296fe2396c271c2
MD5 (sharutils-4.1.4.tar.gz) = 9efe11708a9c869189a4efb918b0916c

View File

@ -0,0 +1,89 @@
*** Makefile.in.orig Wed Feb 22 22:31:33 1995
--- Makefile.in Sun Mar 26 05:58:40 1995
***************
*** 18,24 ****
PACKAGE = @PACKAGE@
VERSION = @VERSION@
! PROGRAMS = @PROGRAMS@
CATALOGS = de.msg fr.msg nl.msg sv.msg
@SET_MAKE@
--- 18,25 ----
PACKAGE = @PACKAGE@
VERSION = @VERSION@
! PROGRAMS = shar unshar
! SCRIPTS = mail-files mailshar remsync
CATALOGS = de.msg fr.msg nl.msg sv.msg
@SET_MAKE@
***************
*** 167,176 ****
getopt.o getopt1.o: getopt.h
xgetcwd.o: pathmax.h
! .SUFFIXES: .msg .tt
! .tt.msg:
! cd $(srcdir) && \
! make-msg $*.tt $(PACKAGE).cod > $*.tmp && mv $*.tmp $@
$(CATALOGS): $(PACKAGE).cod
--- 168,177 ----
getopt.o getopt1.o: getopt.h
xgetcwd.o: pathmax.h
! #.SUFFIXES: .msg .tt
! #.tt.msg:
! # cd $(srcdir) && \
! # make-msg $*.tt $(PACKAGE).cod > $*.tmp && mv $*.tmp $@
$(CATALOGS): $(PACKAGE).cod
***************
*** 215,220 ****
--- 216,225 ----
$(INSTALL_PROGRAM) $$name \
$(bindir)/`echo $$name | sed '$(transform)'`; \
done
+ for name in $(SCRIPTS); do \
+ $(INSTALL_DATA) $$name $(bindir); \
+ chmod 755 $(bindir)/$$name; \
+ done
for name in $(CATALOGS); do \
lang=`echo $$name | sed 's/.msg$$//'`; \
$(srcdir)/mkinstalldirs $(localedir)/$$lang; \
***************
*** 237,251 ****
install-man:
$(srcdir)/mkinstalldirs $(man1dir) $(man5dir)
! for name in shar unshar uuencode; do \
$(INSTALL_DATA) $(srcdir)/$$name.1 \
$(man1dir)/`echo $$name | sed '$(transform)'`$(man1ext); \
done
! rm -f $(man1dir)/`echo uudecode | sed '$(transform)'`$(man1ext)
! ln $(man1dir)/`echo uuencode | sed '$(transform)'`$(man1ext) \
! $(man1dir)/`echo uudecode | sed '$(transform)'`$(man1ext)
! $(INSTALL_DATA) $(srcdir)/uuencode.5 \
! $(man5dir)/`echo uuencode | sed '$(transform)'`$(man5ext)
uninstall-man:
for name in shar unshar uudecode uuencode; do \
--- 242,256 ----
install-man:
$(srcdir)/mkinstalldirs $(man1dir) $(man5dir)
! for name in shar unshar; do \
$(INSTALL_DATA) $(srcdir)/$$name.1 \
$(man1dir)/`echo $$name | sed '$(transform)'`$(man1ext); \
done
! # rm -f $(man1dir)/`echo uudecode | sed '$(transform)'`$(man1ext)
! # ln $(man1dir)/`echo uuencode | sed '$(transform)'`$(man1ext) \
! # $(man1dir)/`echo uudecode | sed '$(transform)'`$(man1ext)
! # $(INSTALL_DATA) $(srcdir)/uuencode.5 \
! # $(man5dir)/`echo uuencode | sed '$(transform)'`$(man5ext)
uninstall-man:
for name in shar unshar uudecode uuencode; do \

View File

@ -1 +1 @@
Allow packing and unpacking of shell archives
Allow packing and unpacking of shell archives, v4.1.4

View File

@ -7,9 +7,3 @@ is initially derived from public domain. Some modules and other
code sections are freely borrowed from other GNU distributions,
bringing `shar' under the terms of the GNU General Public License.
`uuencode' prepares a file for transmission over an electronic
channel which ignores or otherwise mangles the eight bit (high
order bit) of bytes. `uudecode' does the converse transformation.
They are derived from the BSD NET/2 distribution. If you have more
powerful `uuencode' and `uudecode' already available, you may want
to use `./configure --disable-uucode' to prevent their installation.

View File

@ -1,10 +1,14 @@
@cwd /usr/local
info/sharutils.info
info/remsync.info
bin/gshar
bin/gunshar
bin/mailshar
bin/mail-files
bin/remsync
man/man1/gshar.1
man/man1/gunshar.1
man/man1/guuencode.1
share/locale/de/sharutils.msg
share/locale/fr/sharutils.msg
share/locale/sv/sharutils.msg
share/locale/nl/sharutils.msg