diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-07-05 19:34:49 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2010-07-05 19:34:49 +0800 |
commit | bde500a3f7cf00b9c196f3393e21c440b318b03f (patch) | |
tree | b107009a045c5f5fad5d442bbd34f58d031772cb /www/surf/files/patch-config.mk | |
parent | 910ed5f4ecfca362ba908a3f74a888b6e78022ff (diff) | |
download | marcuscom-ports-bde500a3f7cf00b9c196f3393e21c440b318b03f.tar.gz marcuscom-ports-bde500a3f7cf00b9c196f3393e21c440b318b03f.tar.zst marcuscom-ports-bde500a3f7cf00b9c196f3393e21c440b318b03f.zip |
webkit-gtk2 shlib changed its name. Chase all users. also update some
depend lines to include a version because there is now a webkitgtk-1.0 and
webkitgtk-3.0. So webkitgtk matches both.
While here reset epiphany back to the 2.30 version.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@14295 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'www/surf/files/patch-config.mk')
-rw-r--r-- | www/surf/files/patch-config.mk | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/www/surf/files/patch-config.mk b/www/surf/files/patch-config.mk new file mode 100644 index 000000000..d19ad65c9 --- /dev/null +++ b/www/surf/files/patch-config.mk @@ -0,0 +1,38 @@ +--- config.mk 2009-10-30 13:41:02.000000000 +0100 ++++ config.mk 2009-12-21 19:25:11.000000000 +0100 +@@ -4,25 +4,25 @@ VERSION = 0.3 + # Customize below to fit your system + + # paths +-PREFIX = /usr/local +-MANPREFIX = ${PREFIX}/share/man ++PREFIX?= /usr/local ++MANPREFIX = ${PREFIX}/man + +-GTKINC=$(shell pkg-config --cflags gtk+-2.0 webkit-1.0) +-GTKLIB=$(shell 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 ${GTKINC} +-LIBS = -L/usr/lib -lc ${GTKLIB} -lgthread-2.0 ++INCS = ${GTKINC} ++LIBS = ${PTHREAD_LIBS} ${GTKLIB} + + # flags +-CPPFLAGS = -DVERSION=\"${VERSION}\" +-CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} +-LDFLAGS = -s ${LIBS} ++CPPFLAGS+= -DVERSION=\"${VERSION}\" ++CFLAGS+= -std=c99 ${INCS} ${CPPFLAGS} ++LDFLAGS+= ${LIBS} + + # Solaris + #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" + #LDFLAGS = ${LIBS} + + # compiler and linker +-CC = cc ++CC?= cc |