diff options
author | Thomas Gellekum <tg@FreeBSD.org> | 1997-11-03 10:02:38 +0000 |
---|---|---|
committer | Thomas Gellekum <tg@FreeBSD.org> | 1997-11-03 10:02:38 +0000 |
commit | 37ba5eb49966c78f3c9f6408d296ea66e4a7bcf6 (patch) | |
tree | 8c554b5db2e6303b9de1d5b4daabcb8d723587e2 /devel/cccc/files | |
parent | 5ff9e8ce5bac3ec2f610000c800361c50245b453 (diff) | |
download | ports-37ba5eb49966c78f3c9f6408d296ea66e4a7bcf6.tar.gz ports-37ba5eb49966c78f3c9f6408d296ea66e4a7bcf6.zip |
Notes
Diffstat (limited to 'devel/cccc/files')
-rw-r--r-- | devel/cccc/files/patch-aa | 47 | ||||
-rw-r--r-- | devel/cccc/files/patch-ab | 17 |
2 files changed, 64 insertions, 0 deletions
diff --git a/devel/cccc/files/patch-aa b/devel/cccc/files/patch-aa new file mode 100644 index 000000000000..ed4207c44a93 --- /dev/null +++ b/devel/cccc/files/patch-aa @@ -0,0 +1,47 @@ +*** makefile Sun Aug 10 16:52:24 1997 +--- /home/andy/tmp/wrk/makefile Sat Sep 13 18:42:12 1997 +*************** +*** 12,17 **** +--- 12,21 ---- + CONF=djgpp + endif + ++ ifeq "$(OSTYPE)" "FreeBSD" ++ CONF=FreeBSD ++ endif ++ + ifeq "$(OSTYPE)" "Linux" + CONF=linux + endif +*************** +*** 53,58 **** +--- 57,85 ---- + CCCC_BIN = ## the name of the cccc binary + INSTALL_BINDIR = ## the location where the binary is to be installed + INSTALL_LIBDIR = ## the location where the .dat files are to be installed ++ endif ++ ++ ifeq "$(CONF)" "FreeBSD" ++ ++ ## preferred directories for FreeBSD is under /usr/local tree ++ ## we need pccts installed from package ++ PCCTS = $(PREFIX) ++ PCCTS_H = $(PCCTS)/include/pccts ++ PCCTS_BIN = $(PCCTS)/bin ++ ++ ## using the GNU C++ compiler ++ ## we need working templates - I use version 2.7.2, I am not sure whether ++ ## versions earlier than 2.7 are OK ++ CCC=g++ ++ LD=g++ ++ CFLAGS+= -I/usr/include/g++-include -I. -I$(PCCTS_H) ++ CPPEXT=cpp ++ ++ COPY = cp ++ CCCC_BIN = cccc ++ INSTALL_BINDIR = $(PREFIX)/bin ++ INSTALL_LIBDIR = $(PREFIX)/share/cccc ++ + endif + + ifeq "$(CONF)" "linux" diff --git a/devel/cccc/files/patch-ab b/devel/cccc/files/patch-ab new file mode 100644 index 000000000000..8e6e558831fb --- /dev/null +++ b/devel/cccc/files/patch-ab @@ -0,0 +1,17 @@ +*** cccc.h Sun Aug 10 16:52:24 1997 +--- /home/andy/tmp/wrk/cccc.h Fri Sep 12 23:00:32 1997 +*************** +*** 21,27 **** +--- 21,32 ---- + #else + + #define SIGNAL_HEADER <sys/signal.h> ++ ++ #ifdef __FreeBSD__ ++ #define DEFAULT_LIBDIR "/usr/local/share/cccc" ++ #else + #define DEFAULT_LIBDIR "/usr/local/lib/cccc" ++ #endif + + #endif + |