summaryrefslogtreecommitdiff
path: root/net/erlang-esip/patches/patch-rebar.config
blob: 857bd3fa09a419ecb0534dde071843ae008bd76e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
$NetBSD: patch-rebar.config,v 1.2 2016/04/29 18:23:32 fhajny Exp $

Deps are handled by pkgsrc.
Look up stun includes properly.

--- rebar.config.orig	2016-02-03 11:19:15.000000000 +0000
+++ rebar.config
@@ -22,17 +22,13 @@
 
 {erl_opts, [debug_info, {src_dirs, ["src"]},
             {i, "include"},
-	    {i, "deps/stun/include"},
+	    {i, "@LOCALBASE@/lib/erlang/lib/stun/include"},
 	    {i, "../stun/include"}]}.
 
 {port_env, [{"CFLAGS", "$CFLAGS"}, {"LDFLAGS", "$LDFLAGS"}]}.
 
 {port_specs, [{"priv/lib/esip_drv.so", ["c_src/esip_codec.c"]}]}.
 
-{deps, [{stun, ".*", {git, "https://github.com/processone/stun", {tag, "1.0.3"}}},
-	{fast_tls, ".*", {git, "https://github.com/processone/fast_tls", {tag, "1.0.3"}}},
-	{p1_utils, ".*", {git, "https://github.com/processone/p1_utils", {tag, "1.0.3"}}}]}.
-
 {clean_files, ["c_src/esip_codec.gcda", "c_src/esip_codec.gcno"]}.
 
 {cover_enabled, true}.