summaryrefslogtreecommitdiff
path: root/comms/multisync-gui/patches
diff options
context:
space:
mode:
authormarino <marino@pkgsrc.org>2012-05-16 19:57:56 +0000
committermarino <marino@pkgsrc.org>2012-05-16 19:57:56 +0000
commita3f72c6129f5d32590da74da55063985918b0985 (patch)
treee5065b3372aea031bc6549e5d02fcc81dec9b432 /comms/multisync-gui/patches
parent7136029b33ee4c0ca785a24f314f23bf22600b6b (diff)
downloadpkgsrc-a3f72c6129f5d32590da74da55063985918b0985.tar.gz
comms/multisync-gui: Fix indirect linking on DragonFly
The Scons script had to be modified to accept LDFLAGS environment variable. This was piggy-backed to existing patch.
Diffstat (limited to 'comms/multisync-gui/patches')
-rw-r--r--comms/multisync-gui/patches/patch-aa5
1 files changed, 3 insertions, 2 deletions
diff --git a/comms/multisync-gui/patches/patch-aa b/comms/multisync-gui/patches/patch-aa
index 7e1e4a76abc..6370fab11e0 100644
--- a/comms/multisync-gui/patches/patch-aa
+++ b/comms/multisync-gui/patches/patch-aa
@@ -1,11 +1,12 @@
-$NetBSD: patch-aa,v 1.1.1.1 2009/02/27 17:44:14 drochner Exp $
+$NetBSD: patch-aa,v 1.2 2012/05/16 19:57:56 marino Exp $
--- src/wscript.orig 2006-11-06 20:36:21.000000000 +0100
+++ src/wscript
-@@ -16,6 +16,8 @@ def build(bld):
+@@ -16,6 +16,9 @@ def build(bld):
obj_gui.find_sources_in_dirs('. plugins')
obj_gui.defines='HAVE_CONFIG_H=1'
obj_gui.uselib = 'GLIB GTK GLADE OPENSYNC OPENSYNCENGINE'
++ obj_gui.env['LINKFLAGS'] += [os.getenv('LDFLAGS')]
+ obj_gui.env['LINKFLAGS'] += ['-Wl,-R' + os.getenv('LOCALBASE') + '/lib']
+ obj_gui.env['LINKFLAGS'] += ['-Wl,-R' + os.getenv('X11BASE') + '/lib']