diff options
Diffstat (limited to 'devel/noweb/files/patch-Makefile')
-rw-r--r-- | devel/noweb/files/patch-Makefile | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/devel/noweb/files/patch-Makefile b/devel/noweb/files/patch-Makefile deleted file mode 100644 index bfdc45648b04..000000000000 --- a/devel/noweb/files/patch-Makefile +++ /dev/null @@ -1,67 +0,0 @@ ---- Makefile.orig 2006-06-12 20:14:20 UTC -+++ Makefile -@@ -2,13 +2,14 @@ - # See file COPYRIGHT for more information. - # - # Adjust these two lines for your ANSI C compiler --CC=gcc -ansi -pedantic --CFLAGS= -+#CC=gcc -ansi -pedantic -+#CFLAGS= - # If you have Icon, you should use the Icon versions of the noweb pipeline. - # Set LIBSRC=icon --LIBSRC=awk -+LIBSRC=icon -+#LIBSRC=awk - # If you have no Icon compiler, but do have icont, make ICONC=icont --ICONC=iconc -+ICONC=icont - ICONT=icont - - # BIN is where the commands (notangle, noweave, nountangle, noroots) land -@@ -18,13 +19,13 @@ ICONT=icont - # MAN7EXT is the extension for the nowebstyle man page (usually 7) - # TEXINPUTS is the directory for TeX macro files - # ELISP is the directory for emacs lisp files, or /dev/null not to install --BIN=/usr/local/noweb --LIB=/usr/local/noweb/lib --MAN=/usr/local/noweb/man -+BIN=${INSTALL_PREFIX}/bin -+LIB=${INSTALL_PREFIX}/share/noweb -+MAN=${INSTALL_PREFIX}/man - MANEXT=1 - MAN7EXT=7 --TEXINPUTS=/usr/local/tex/inputs --ELISP=/dev/null -+TEXINPUTS=${LIB}/tex -+ELISP=${INSTALL_PREFIX}/share/emacs/site-lisp - - # change WEAVE if you want a different version of noweave to be installed - WEAVE=noweave -@@ -37,7 +38,7 @@ MANDIR=$(MAN)/man$(MANEXT) - MAN7DIR=$(MAN)/man$(MAN7EXT) - CATDIR=$(MAN)/cat$(MANEXT) - CAT7DIR=$(MAN)/cat$(MAN7EXT) --LIBNAME=$(LIB) -+LIBNAME=${PREFIX}/share/noweb - TEXNAME=$(TEXINPUTS) - - all: -@@ -179,7 +180,7 @@ install-preformat-man: - rm -f $(CATDIR)/nountangle.$(MANEXT).gz - (cd $(CATDIR); ln notangle.$(MANEXT).gz nountangle.$(MANEXT).gz) - install-tex: -- -mkdir $(TEXINPUTS) 2>/dev/null -+ -${MKDIR} $(TEXINPUTS) 2>/dev/null - cp tex/nwmac.tex tex/noweb.sty $(TEXINPUTS) - -texhash || echo "Program texhash not found or failed" - -@@ -187,7 +188,7 @@ uninstall-tex: - rm -f $(TEXINPUTS)/nwmac.tex $(TEXINPUTS)/noweb.sty - - install-elisp: -- -mkdir $(ELISP) 2>/dev/null -+ -${MKDIR} $(ELISP) 2>/dev/null - cp elisp/noweb-mode.el $(ELISP) - - uninstall-elisp: |