229e5a2ac7
PR: ports/79101 Submitted by: Conor McDermottroe <ports@mcdermottroe.com> (maintainer)
34 lines
1001 B
Plaintext
34 lines
1001 B
Plaintext
--- Makefile.orig Wed Feb 23 14:49:10 2005
|
|
+++ Makefile Mon Mar 21 18:31:51 2005
|
|
@@ -2,7 +2,7 @@
|
|
GAIM_OTR_VERSION = 2.0.1
|
|
|
|
# Replace this with the path to the GAIM headers
|
|
-GAIM_SOURCE ?= /usr/include/gaim
|
|
+GAIM_SOURCE ?= %%X11BASE%%/include/gaim
|
|
|
|
# If you don't have pkg-config, put the appropriate -I entry on the next line
|
|
GTK_HDRS ?= `pkg-config --cflags glib-2.0 gtk+-2.0`
|
|
@@ -10,10 +10,10 @@
|
|
# The location of the libotr include files. Note that if, for example,
|
|
# the full path of message.h is /usr/include/libotr/message.h, you
|
|
# should put /usr/include on the next line, not /usr/include/libotr
|
|
-LIBOTRINCDIR = /usr/include
|
|
+LIBOTRINCDIR = %%LOCALBASE%%/include
|
|
|
|
# The locataion of libotr.a.
|
|
-LIBOTRLIBDIR = /usr/lib
|
|
+LIBOTRLIBDIR = %%LOCALBASE%%/lib
|
|
|
|
# The target
|
|
TARGET = gaim-otr.so
|
|
@@ -29,7 +29,7 @@
|
|
-lgcrypt -lgpg-error
|
|
else
|
|
FPIC = -fPIC
|
|
-LDFLAGS = -module -avoid-version
|
|
+LDFLAGS = -module -avoid-version -L%%LOCALBASE%%/lib
|
|
LDLIBS = -lotr -lgcrypt
|
|
endif
|
|
|