diff options
author | kuriyama <kuriyama@FreeBSD.org> | 1998-10-03 14:00:00 +0800 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 1998-10-03 14:00:00 +0800 |
commit | 6dfba394e3aed94de314dc8140a22a040436a171 (patch) | |
tree | 8e826cb5fec1b008959d68b10481380bf1b9204a /converters/aish/files | |
parent | 31600783133b3a30e6ea6286b034c691d16995b7 (diff) | |
download | freebsd-ports-graphics-6dfba394e3aed94de314dc8140a22a040436a171.tar.gz freebsd-ports-graphics-6dfba394e3aed94de314dc8140a22a040436a171.tar.zst freebsd-ports-graphics-6dfba394e3aed94de314dc8140a22a040436a171.zip |
ish/uuencode converter
PR: ports/7639
Submitted by: Masanori Kiriake <seiken@nbs.co.jp>
Diffstat (limited to 'converters/aish/files')
-rw-r--r-- | converters/aish/files/patch-aa | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/converters/aish/files/patch-aa b/converters/aish/files/patch-aa new file mode 100644 index 00000000000..77696a6436a --- /dev/null +++ b/converters/aish/files/patch-aa @@ -0,0 +1,27 @@ +--- Makefile.orig Mon Sep 18 01:47:03 1995 ++++ Makefile Mon Aug 3 10:42:13 1998 +@@ -1,7 +1,7 @@ + # aish/koish 1993,94,95 by H.Ogasawara (COR.) + + # install directory +-DSTDIR = /usr/local/bin ++DSTDIR = ${PREFIX}/bin + + #### *** UNIX + CC = cc +@@ -134,10 +134,11 @@ + rm -f *.o $(SYSCHK) $(PROG) $(MPROG) core *~ autodecode + + install: $(SYSCHK) $(PROG) $(MPROG) autodecode +- install -c -s $(PROG) $(DSTDIR) +- install -c -s $(MPROG) $(DSTDIR) +- install -c -m 0755 ishcat $(DSTDIR) +- -install -c -m 0755 autodecode $(DSTDIR) ++ ${BSD_INSTALL_PROGRAM} $(PROG) $(DSTDIR) ++ ${BSD_INSTALL_PROGRAM} $(MPROG) $(DSTDIR) ++ ${BSD_INSTALL_SCRIPT} ishcat $(DSTDIR) ++ ${BSD_INSTALL_SCRIPT} autodecode $(DSTDIR) ++ ${BSD_INSTALL_MAN} aish.1 autodecode.1 ${PREFIX}/man/ja/man1 + + installc: $(SYSCHK) $(PROG) $(MPROG) autodecode + cp $(PROG) $(MPROG) ishcat autodecode $(DSTDIR) |