diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2016-04-01 14:16:16 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2016-04-01 14:16:16 +0000 |
commit | 8d6597e0bb9591c40fc6d0c6e2159fca51178d56 (patch) | |
tree | d3548a0f08ca434f11cb4415a93d98037409413b /net/openbsc | |
parent | a9dcad2fffcc27906b85c5a15fdb3e50fdc1e2e2 (diff) | |
download | ports-8d6597e0bb9591c40fc6d0c6e2159fca51178d56.tar.gz ports-8d6597e0bb9591c40fc6d0c6e2159fca51178d56.zip |
Notes
Diffstat (limited to 'net/openbsc')
-rw-r--r-- | net/openbsc/Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/net/openbsc/Makefile b/net/openbsc/Makefile index dce55a29c711..6dea19ce8b55 100644 --- a/net/openbsc/Makefile +++ b/net/openbsc/Makefile @@ -12,11 +12,11 @@ COMMENT= GSM network in a box software LICENSE= GPLv3 -LIB_DEPENDS= libdbi.so:${PORTSDIR}/databases/libdbi \ - libosmocore.so:${PORTSDIR}/devel/libosmocore \ - libosmoabis.so:${PORTSDIR}/devel/libosmo-abis \ - libosmonetif.so:${PORTSDIR}/devel/libosmo-netif \ - libdbi.so:${PORTSDIR}/databases/libdbi +LIB_DEPENDS= libdbi.so:databases/libdbi \ + libosmocore.so:devel/libosmocore \ + libosmoabis.so:devel/libosmo-abis \ + libosmonetif.so:devel/libosmo-netif \ + libdbi.so:databases/libdbi WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}/${PORTNAME} @@ -38,10 +38,10 @@ OPTIONS_SUB= yes BSC_CONFIGURE_ENABLE= osmo-bsc NAT_CONFIGURE_ENABLE= nat -NAT_BUILD_DEPENDS= ${LOCALBASE}/lib/libsccp.a:${PORTSDIR}/devel/libosmo-sccp -NAT_RUN_DEPENDS= ${LOCALBASE}/lib/libsccp.a:${PORTSDIR}/devel/libosmo-sccp +NAT_BUILD_DEPENDS= ${LOCALBASE}/lib/libsccp.a:devel/libosmo-sccp +NAT_RUN_DEPENDS= ${LOCALBASE}/lib/libsccp.a:devel/libosmo-sccp -SQLITE_LIB_DEPENDS= libsqlite3.so:${PORTSDIR}/databases/sqlite3 +SQLITE_LIB_DEPENDS= libsqlite3.so:databases/sqlite3 post-patch: ${REINPLACE_CMD} -e 's|pkgconfigdir.*|pkgconfigdir = ${PREFIX}/libdata/pkgconfig|g' \ |