diff options
author | asami <asami@FreeBSD.org> | 1996-12-18 13:26:32 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1996-12-18 13:26:32 +0800 |
commit | 85b0b80e456ed704aa8798e6127f90d2e3b501d3 (patch) | |
tree | 6ea2970168c7a6913b511221a10d50d68ebd8bc7 /www/w3/files | |
parent | a105e523732e3d7ceea832b3ec98c7177c460870 (diff) | |
download | freebsd-ports-gnome-85b0b80e456ed704aa8798e6127f90d2e3b501d3.tar.gz freebsd-ports-gnome-85b0b80e456ed704aa8798e6127f90d2e3b501d3.tar.zst freebsd-ports-gnome-85b0b80e456ed704aa8798e6127f90d2e3b501d3.zip |
Web browser based on emacs/mule.
Submitted by: Kiriyama Kazuhiko <kiri@kiri.toba-cmt.ac.jp>
Diffstat (limited to 'www/w3/files')
-rw-r--r-- | www/w3/files/patch-aa | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/www/w3/files/patch-aa b/www/w3/files/patch-aa new file mode 100644 index 000000000000..0429fd811d79 --- /dev/null +++ b/www/w3/files/patch-aa @@ -0,0 +1,40 @@ +--- Makefile.org Sun Oct 29 01:21:56 1995 ++++ Makefile Sun Dec 1 14:01:52 1996 +@@ -8,12 +8,13 @@ + # Various other stuff used + RM = rm -f + CP = cp ++INSTALL_DATA = /usr/bin/install -c -o bin -g bin -m 444 + + # where the Info file should go +-INFODIR = ../info ++INFODIR = ${PREFIX}/info + + # where the w3 lisp files should go +-LISPDIR = $$HOME/lisp ++LISPDIR = ${PREFIX}/share/emacs/site-lisp/w3 + + # Change this to be where your .emacs file is stored + DOTEMACS = $$HOME/.emacs +@@ -57,16 +58,16 @@ + w3: docomp.el $(OBJECTS) + @echo Build of w3 complete... + +-all: w3.info w3 emacs ++all: w3.info w3 + + install: all + @echo Installing in $(LISPDIR) + if [ ! -d $(LISPDIR) ] ; then $(MKDIR) $(LISPDIR) ; fi +- (cd $(LISPDIR) ; $(RM) -f $(SOURCES) $(OBJECTS) w3-sysdp.el*) +- $(CP) $(SOURCES) $(OBJECTS) $(LISPDIR) ++ (cd $(LISPDIR) ; $(RM) $(SOURCES) $(OBJECTS) w3-sysdp.el*) ++ ${INSTALL_DATA} $(SOURCES) $(OBJECTS) $(LISPDIR) + if [ ! -d $(INFODIR) ] ; then $(MKDIR) $(INFODIR) ; fi +- (cd $(INFODIR) ; $(RM) -f w3.info*) +- $(CP) w3.info* $(INFODIR) ++ (cd $(INFODIR) ; $(RM) w3.info*) ++ ${INSTALL_DATA} w3.info* $(INFODIR) + + emacs: + @echo Adding w3 setup to $(DOTEMACS) |