diff options
author | Jan Beich <jbeich@FreeBSD.org> | 2016-03-21 11:17:40 +0000 |
---|---|---|
committer | Jan Beich <jbeich@FreeBSD.org> | 2016-03-21 11:17:40 +0000 |
commit | 10b850290820d93a88afe8f2d8dc2c5b498982da (patch) | |
tree | e2d7c43aadaeeec71ba824ef2f37ae64181e04df /net/ns3/files/patch-src_wscript | |
parent | Import a patch from git mailing list to fix build with gcc 4.2.1 and (diff) |
net/ns3: simplify
- Convert to USES=waf (respects MAKE_JOBS_NUMBER)
- Convert to option helpers
- Define WRKSRC_SUBDIR after adjusting patches
- Drop/rename common option and their descriptions
- pkg-plist: rename WITH_DEBUG to DEBUG_SUFX to avoid confusion
- pkg-plist: define VERSION to avoid churn on updates
- post-install: compress multiple sh(1) loops via find(1) expressions
PR: 208146
Approved by: Nikola Kolev (maintainer)
Diffstat (limited to 'net/ns3/files/patch-src_wscript')
-rw-r--r-- | net/ns3/files/patch-src_wscript | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net/ns3/files/patch-src_wscript b/net/ns3/files/patch-src_wscript new file mode 100644 index 000000000000..e67fa5a5f836 --- /dev/null +++ b/net/ns3/files/patch-src_wscript @@ -0,0 +1,11 @@ +--- src/wscript.orig 2015-09-23 19:28:42 UTC ++++ src/wscript +@@ -436,7 +436,7 @@ def apply(self): + output_node = self.path.find_or_declare(output_filename) + assert output_node is not None, str(self) + task = self.create_task('ns3pcfile') +- self.bld.install_files('${LIBDIR}/pkgconfig', output_node) ++ self.bld.install_files('${LIBDIR}data/pkgconfig', output_node) + task.set_outputs([output_node]) + task.module = module + |