aboutsummaryrefslogtreecommitdiffstats
path: root/astro
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>1999-05-10 19:12:20 +0800
committerKris Kennaway <kris@FreeBSD.org>1999-05-10 19:12:20 +0800
commitef12b155de71a5979a18d7a77adc969839e53811 (patch)
tree603430070648898c68586a599ca9a3b0dccad71f /astro
parent70b1b9126397ac775c95080eee36ce22590dcd86 (diff)
downloadfreebsd-ports-ef12b155de71a5979a18d7a77adc969839e53811.tar.gz
freebsd-ports-ef12b155de71a5979a18d7a77adc969839e53811.tar.zst
freebsd-ports-ef12b155de71a5979a18d7a77adc969839e53811.zip
Oops, commit the new patch, not the patch to the previous patch.
Notes
Notes: svn path=/head/; revision=18726
Diffstat (limited to 'astro')
-rw-r--r--astro/xglobe/files/patch-aa65
1 files changed, 42 insertions, 23 deletions
diff --git a/astro/xglobe/files/patch-aa b/astro/xglobe/files/patch-aa
index 673f98f72caf..ef51696f33ba 100644
--- a/astro/xglobe/files/patch-aa
+++ b/astro/xglobe/files/patch-aa
@@ -1,23 +1,42 @@
-Index: patches/patch-aa
-===================================================================
-RCS file: /home/ncvs/ports/astro/xglobe/patches/patch-aa,v
-retrieving revision 1.2
-diff -u -r1.2 patch-aa
---- patch-aa 1999/05/01 08:09:05 1.2
-+++ patch-aa 1999/05/09 03:27:50
-@@ -1,5 +1,5 @@
- --- Makefile.orig Mon Apr 19 18:51:04 1999
--+++ Makefile Sat May 1 17:17:30 1999
-++++ Makefile Sun May 9 12:57:37 1999
- @@ -4,29 +4,31 @@
-
- ####### Installation directory
-@@ -14,7 +14,7 @@
- -X11_INCLUDE_DIR = /usr/X11R6/include
- -QT_INCLUDE_DIR = /usr/lib/qt/include
- +X11_INCLUDE_DIR = $(X11BASE)/include
--+QT_INCLUDE_DIR = $(X11BASE)/share/include/X11/qt
-++QT_INCLUDE_DIR = $(X11BASE)/include/X11/qt
-
- -QT_LIB_DIR = /usr/lib/qt/lib
- -X11_LIB_DIR = /usr/X11R6/lib
+--- Makefile.orig Mon Apr 19 18:51:04 1999
++++ Makefile Sun May 9 12:57:37 1999
+@@ -4,29 +4,31 @@
+
+ ####### Installation directory
+
+-XGLOBE_DIR = /usr/local
++XGLOBE_DIR = $(PREFIX)
+ XGLOBE_LIB_DIR = $(XGLOBE_DIR)/lib/xglobe
+ XGLOBE_BIN_DIR = $(XGLOBE_DIR)/bin
+
+ ####### Library directories - you may need to modify these
+
+-X11_INCLUDE_DIR = /usr/X11R6/include
+-QT_INCLUDE_DIR = /usr/lib/qt/include
++X11_INCLUDE_DIR = $(X11BASE)/include
++QT_INCLUDE_DIR = $(X11BASE)/include/X11/qt
+
+-QT_LIB_DIR = /usr/lib/qt/lib
+-X11_LIB_DIR = /usr/X11R6/lib
++QT_LIB_DIR = $(X11BASE)/lib
++X11_LIB_DIR = $(X11BASE)/lib
+
+
+ ####### Compiler and tools
+
+-CPP = g++
+-LINK = g++
++CXX ?= g++
++CPP = $(CXX)
++LINK = $(CXX)
+ MOC = moc
+ INSTALL = install
+
+ ####### compile and link options
+
+-CFLAGS = $(INCLUDE_DIRS) -DXGLOBE_LIB_DIR=\"$(XGLOBE_LIB_DIR)\" -O2 -Wall
++CFLAGS ?= -O2
++CFLAGS += $(INCLUDE_DIRS) -DXGLOBE_LIB_DIR=\"$(XGLOBE_LIB_DIR)\" -Wall
+
+ LFLAGS =
+