mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-04 22:33:27 +00:00
31 lines
852 B
Plaintext
31 lines
852 B
Plaintext
--- Makefile.orig Sun Feb 6 00:26:12 2000
|
|
+++ Makefile Tue Jun 13 16:56:02 2000
|
|
@@ -1,21 +1,21 @@
|
|
|
|
# You will need to specify the absolute path if gnome-config is not in
|
|
# your path or if the one in your path is not the correct one
|
|
-GNOME_CONFIG = gnome-config
|
|
+GNOME_CONFIG = ${X11BASE}/bin/gnome-config
|
|
|
|
# This should be set to where aspell was installed the default is
|
|
# /usr/local
|
|
-ASPELL_PREFIX = /usr/local
|
|
+ASPELL_PREFIX = ${PREFIX}
|
|
|
|
-CXX = g++
|
|
-CXXFLAGS = -O2 -g
|
|
+CXX ?= g++
|
|
+CXXFLAGS ?= -O2 -g
|
|
|
|
# You should not need to modify anything below this comment
|
|
|
|
-VERSION = .29
|
|
+VERSION = .30
|
|
|
|
INCLUDES = -I$(ASPELL_PREFIX)/include `$(GNOME_CONFIG) --cflags gnomeui` \
|
|
- -D VERSION=\"$(VERSION)\"
|
|
+ -DVERSION=\"$(VERSION)\"
|
|
LIBS = -L$(ASPELL_PREFIX)/lib -laspell `$(GNOME_CONFIG) --libs gnomeui`
|
|
|
|
gaspell: gaspell.o DICTClient.o
|