diff options
author | lioux <lioux@FreeBSD.org> | 2001-08-03 03:00:03 +0800 |
---|---|---|
committer | lioux <lioux@FreeBSD.org> | 2001-08-03 03:00:03 +0800 |
commit | c8146434c8aed3a2971a78bb483ecd880f07b78e (patch) | |
tree | aa2ad69f2659fa5cd6f095224139df97040ed4ef /editors/joe-devel | |
parent | 28e58690a7a08deaa50b3cb025810fb1cec99b09 (diff) | |
download | freebsd-ports-gnome-c8146434c8aed3a2971a78bb483ecd880f07b78e.tar.gz freebsd-ports-gnome-c8146434c8aed3a2971a78bb483ecd880f07b78e.tar.zst freebsd-ports-gnome-c8146434c8aed3a2971a78bb483ecd880f07b78e.zip |
Patch required for installation to be successful, better config
file management, and to respect CFLAGS
PR: 29390
Submitted by: maintainer
Diffstat (limited to 'editors/joe-devel')
-rw-r--r-- | editors/joe-devel/files/patch-Makefile.in | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/editors/joe-devel/files/patch-Makefile.in b/editors/joe-devel/files/patch-Makefile.in new file mode 100644 index 000000000000..52080da067a3 --- /dev/null +++ b/editors/joe-devel/files/patch-Makefile.in @@ -0,0 +1,28 @@ +--- Makefile.in.orig Sun Apr 1 06:48:18 2001 ++++ Makefile.in Thu Jul 26 19:47:05 2001 +@@ -47,7 +47,7 @@ + + # C compiler options: make's built-in rules use this variable + +-CFLAGS = -O2 -fsigned-char -fomit-frame-pointer -pipe ++CFLAGS += -fsigned-char -fomit-frame-pointer -pipe + + # You may have to include some extra libraries + # for some systems +@@ -101,11 +101,11 @@ + + $(INSTALL_PROGRAM) -s termidx $(package_prefix)$(bindir) + +- if [ -a $(package_prefix)$(sysconfdir)/joerc ]; then echo; else $(INSTALL_DATA) joerc $(package_prefix)$(sysconfdir); fi +- if [ -a $(package_prefix)$(sysconfdir)/jmacsrc ]; then echo; else $(INSTALL_DATA) jmacsrc $(package_prefix)$(sysconfdir); fi +- if [ -a $(package_prefix)$(sysconfdir)/jstarrc ]; then echo; else $(INSTALL_DATA) jstarrc $(package_prefix)$(sysconfdir); fi +- if [ -a $(package_prefix)$(sysconfdir)/rjoerc ]; then echo; else $(INSTALL_DATA) rjoerc $(package_prefix)$(sysconfdir); fi +- if [ -a $(package_prefix)$(sysconfdir)/jpicorc ]; then echo; else $(INSTALL_DATA) jpicorc $(package_prefix)$(sysconfdir); fi ++ if [ -e $(package_prefix)$(sysconfdir)/joerc.dist ]; then echo; else $(INSTALL_DATA) joerc $(package_prefix)$(sysconfdir)/joerc.dist; fi ++ if [ -e $(package_prefix)$(sysconfdir)/jmacsrc.dist ]; then echo; else $(INSTALL_DATA) jmacsrc $(package_prefix)$(sysconfdir)/jmacsrc.dist; fi ++ if [ -e $(package_prefix)$(sysconfdir)/jstarrc.dist ]; then echo; else $(INSTALL_DATA) jstarrc $(package_prefix)$(sysconfdir)/jstarrc.dist; fi ++ if [ -e $(package_prefix)$(sysconfdir)/rjoerc.dist ]; then echo; else $(INSTALL_DATA) rjoerc $(package_prefix)$(sysconfdir)/rjoerc.dist; fi ++ if [ -e $(package_prefix)$(sysconfdir)/jpicorc.dist ]; then echo; else $(INSTALL_DATA) jpicorc $(package_prefix)$(sysconfdir)/jpicorc.dist; fi + + rm -f $(package_prefix)$(man1dir)/joe.1 + $(INSTALL_DATA) joe.1 $(package_prefix)$(man1dir) |