diff options
author | kris <kris@FreeBSD.org> | 1999-05-10 19:12:20 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 1999-05-10 19:12:20 +0800 |
commit | ee27d91065419bd9afeb85dfcaa3520ac986f1b0 (patch) | |
tree | f81c39c6d13d828e0bd3cdab530b8083106aae8c /astro/xglobe | |
parent | ad35492bf545b2cf005488715ba4dff48399f45b (diff) | |
download | freebsd-ports-gnome-ee27d91065419bd9afeb85dfcaa3520ac986f1b0.tar.gz freebsd-ports-gnome-ee27d91065419bd9afeb85dfcaa3520ac986f1b0.tar.zst freebsd-ports-gnome-ee27d91065419bd9afeb85dfcaa3520ac986f1b0.zip |
Oops, commit the new patch, not the patch to the previous patch.
Diffstat (limited to 'astro/xglobe')
-rw-r--r-- | astro/xglobe/files/patch-aa | 65 |
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 = + |