openbsd-ports/www/surf/patches/patch-config_mk
bcallah 2338ddac5f Update www/surf to 0.6
ok jung@ (MAINTAINER)
2013-03-11 17:08:51 +00:00

41 lines
1.1 KiB
Plaintext

$OpenBSD: patch-config_mk,v 1.5 2013/03/11 17:08:51 bcallah Exp $
use TRUEPREFIX instead of patching Makefile to remove DESTDIR
--- config.mk.orig Sun Mar 10 22:59:36 2013
+++ config.mk Sun Mar 10 23:01:27 2013
@@ -4,22 +4,22 @@ VERSION = 0.6
# Customize below to fit your system
# paths
-PREFIX = /usr/local
-MANPREFIX = ${PREFIX}/share/man
+PREFIX = ${TRUEPREFIX}
+MANPREFIX = ${TRUEPREFIX}/man
X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
-GTKINC = `pkg-config --cflags gtk+-2.0 webkit-1.0`
-GTKLIB = `pkg-config --libs gtk+-2.0 webkit-1.0`
+GTKINC != pkg-config --cflags gtk+-2.0 webkit-1.0
+GTKLIB != pkg-config --libs gtk+-2.0 webkit-1.0
# includes and libs
-INCS = -I. -I/usr/include -I${X11INC} ${GTKINC}
-LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 ${GTKLIB} -lgthread-2.0
+INCS = ${GTKINC}
+LIBS = -pthread ${GTKLIB}
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_BSD_SOURCE
-CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
+CFLAGS += -std=c99 ${INCS} ${CPPFLAGS}
LDFLAGS = -g ${LIBS}
# Solaris
@@ -27,4 +27,4 @@ LDFLAGS = -g ${LIBS}
#LDFLAGS = ${LIBS}
# compiler and linker
-CC = cc
+#CC = cc