summaryrefslogtreecommitdiff
path: root/lang/wamcc/files/patch-aa
diff options
context:
space:
mode:
authorMartin Wilke <miwi@FreeBSD.org>2009-03-23 20:53:42 +0000
committerMartin Wilke <miwi@FreeBSD.org>2009-03-23 20:53:42 +0000
commit5e535e782212b88c5653bcdf5b479068766cccd3 (patch)
tree383e4760b87c61a4d7ed195e85cffa507c0ebb80 /lang/wamcc/files/patch-aa
parent- Actually, klamav doesn't install docs, it just installs kde stuffs on (diff)
2009-03-22 emulators/dlx: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months
2009-03-22 java/javel: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 java/guavac: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 graphics/xrml: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 graphics/renderpark: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 games/jumpnbump: tcl8.0 support is going to be dropped 2009-03-17 irc/blackened: Broken and abandonware 2009-03-22 devel/libg++: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 devel/freescope: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 misc/menushki: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 misc/vbidecode: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 lang/wamcc: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 multimedia/mpegedit: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 mail/dkimap4: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 net-mgmt/oproute: unmaintained, does not work with current versions of GCC, needs gcc295 which has been failing to build for months 2009-03-22 x11/tkgoodstuff: tcl8.0 support is going to be dropped 2009-02-11 x11-toolkits/inti: not maintain by upstream for more than five years and no port depend on this
Notes
Notes: svn path=/head/; revision=230793
Diffstat (limited to 'lang/wamcc/files/patch-aa')
-rw-r--r--lang/wamcc/files/patch-aa73
1 files changed, 0 insertions, 73 deletions
diff --git a/lang/wamcc/files/patch-aa b/lang/wamcc/files/patch-aa
deleted file mode 100644
index 2865eb4bca81..000000000000
--- a/lang/wamcc/files/patch-aa
+++ /dev/null
@@ -1,73 +0,0 @@
---- Makefile.orig Tue Mar 7 10:21:05 1995
-+++ Makefile Wed Jun 4 11:00:59 2003
-@@ -5,16 +5,20 @@
- # /* Makefile */
- # /*-----------------------------------------------------------------------*/
-
--# you can change the following paths
-+PREFIX?= /usr/local
-+INCPATH= $(PREFIX)/include/wamcc
-+LIBPATH= $(PREFIX)/lib/wamcc
-+BINPATH= $(PREFIX)/bin
-+DOCPATH= $(PREFIX)/share/doc/wamcc
-+EXAMPLEPATH= $(PREFIX)/share/examples/wamcc
-+
-+PROGRAMS= src/$(COMPILER) src/$(BMF) src/hex2pl src/pl2hex
-+SCRIPTS= src/$(WCC)
-
--ROOTPATH= $(HOME)/$(COMPILER)
--INCPATH = $(ROOTPATH)/include
--LIBPATH = $(ROOTPATH)/lib
--BINPATH = $(ROOTPATH)/bin
-
- # you can specify the name of the C compiler
-
--CC = gcc
-+CC ?= gcc
-
- # do not change anything else
-
-@@ -25,24 +29,28 @@
-
- EXECS = $(WCC) $(COMPILER) $(BMF) hex2pl pl2hex
-
--install:
-- cd src; echo $(ROOTPATH);\
-+all:
-+ (cd src; \
- make $(WCC) COMPILER=$(COMPILER) INCPATH=$(INCPATH) \
-- LIBPATH=$(LIBPATH) CC=$(CC) WCC=$(WCC)
-- cd Builtin; \
-- make COMPILER=$(COMPILER) CC=$(CC) WCC=../src/$(WCC)
-- cd src; \
-+ LIBPATH=$(LIBPATH) CC=$(CC) WCC=$(WCC))
-+ (cd Builtin; \
-+ make COMPILER=$(COMPILER) CC=$(CC) WCC=../src/$(WCC))
-+ (cd src; \
- make COMPILER=$(COMPILER) INCPATH=$(INCPATH) \
-- LIBPATH=$(LIBPATH) CC=$(CC) WCC=$(WCC)
-- -mkdir -p $(INCPATH)
-- -mkdir -p $(LIBPATH)
-- -mkdir -p $(BINPATH)
-- cp src/*.h $(INCPATH)
-- rm $(INCPATH)/wamcc*.h
-- cp src/*.a $(LIBPATH)
-- ranlib $(LIBPATH)/*.a
-- cp src/$(WCC) src/$(COMPILER) src/$(BMF) src/hex2pl src/pl2hex $(BINPATH)
-+ LIBPATH=$(LIBPATH) CC=$(CC) WCC=$(WCC))
-
-+install:
-+ $(INSTALL) -d $(INCPATH)
-+ $(INSTALL) -c -m 444 src/*.h $(INCPATH)
-+ $(INSTALL) -d $(LIBPATH)
-+ $(INSTALL) -c -m 444 src/*.a $(LIBPATH)
-+ $(INSTALL) -d $(DOCPATH)
-+ $(INSTALL) -c -m 444 doc/* $(DOCPATH)
-+ $(INSTALL) -d $(EXAMPLEPATH)
-+ $(INSTALL) -c -m 444 Examples/* $(EXAMPLEPATH)
-+ $(INSTALL) -d $(BINPATH)
-+ $(INSTALL) -c -m 555 $(SCRIPTS) $(BINPATH)
-+ $(INSTALL) -c -s -m 555 $(PROGRAMS) $(BINPATH)
-
- clean:
- cd src; make clean