diff options
author | jperkin <jperkin@pkgsrc.org> | 2018-10-29 17:36:57 +0000 |
---|---|---|
committer | jperkin <jperkin@pkgsrc.org> | 2018-10-29 17:36:57 +0000 |
commit | b6161945457709168ddbb44ef0c648ec4a9a0d93 (patch) | |
tree | 88830639d83abc57fabfade366f3633bf8b7b535 /comms | |
parent | 874e4ba99485e4eac01a79933aa19ae8e13eec62 (diff) | |
download | pkgsrc-b6161945457709168ddbb44ef0c648ec4a9a0d93.tar.gz |
asterisk*: Fix install on SunOS.
Diffstat (limited to 'comms')
-rw-r--r-- | comms/asterisk/Makefile | 7 | ||||
-rw-r--r-- | comms/asterisk13/Makefile | 7 | ||||
-rw-r--r-- | comms/asterisk14/Makefile | 7 | ||||
-rw-r--r-- | comms/asterisk15/Makefile | 7 |
4 files changed, 24 insertions, 4 deletions
diff --git a/comms/asterisk/Makefile b/comms/asterisk/Makefile index 833bcdfb759..5e587087d9b 100644 --- a/comms/asterisk/Makefile +++ b/comms/asterisk/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.166 2018/08/22 09:43:03 wiz Exp $ +# $NetBSD: Makefile,v 1.167 2018/10/29 17:36:57 jperkin Exp $ # # NOTE: when updating this package, there are two places that sound # tarballs need to be checked; look win ${WRKSRC}/sounds/Makefile @@ -130,6 +130,10 @@ PLIST.mgcp= yes . endif .endfor +.if ${OPSYS} == "SunOS" +PLIST.mgcp= yes +.endif + .include "options.mk" # check sounds/Makefile for current version when upgrading package @@ -276,4 +280,5 @@ post-install: .include "../../www/curl/buildlink3.mk" .include "../../mk/curses.buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" +.include "../../mk/termcap.buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/comms/asterisk13/Makefile b/comms/asterisk13/Makefile index a34ab279eb4..286675907e6 100644 --- a/comms/asterisk13/Makefile +++ b/comms/asterisk13/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2018/08/22 09:43:03 wiz Exp $ +# $NetBSD: Makefile,v 1.42 2018/10/29 17:36:57 jperkin Exp $ # # NOTE: when updating this package, there are two places that sound # tarballs need to be checked; look in ${WRKSRC}/sounds/Makefile @@ -128,6 +128,10 @@ NOSIGPIPE!= ${GREP} SO_NOSIGPIPE /usr/include/sys/socket.h || echo "" PLIST.mgcp= yes .endif +.if ${OPSYS} == "SunOS" +PLIST.mgcp= yes +.endif + .include "options.mk" # check sounds/Makefile for current version when upgrading package @@ -277,4 +281,5 @@ post-install: .include "../../www/curl/buildlink3.mk" .include "../../mk/curses.buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" +.include "../../mk/termcap.buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/comms/asterisk14/Makefile b/comms/asterisk14/Makefile index 7144d1c014e..4ab8b8e2d80 100644 --- a/comms/asterisk14/Makefile +++ b/comms/asterisk14/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.25 2018/08/22 09:43:03 wiz Exp $ +# $NetBSD: Makefile,v 1.26 2018/10/29 17:36:57 jperkin Exp $ # # NOTE: when updating this package, there are two places that sound # tarballs need to be checked; look in ${WRKSRC}/sounds/Makefile @@ -134,6 +134,10 @@ PLIST.mgcp= yes . endif .endfor +.if ${OPSYS} == "SunOS" +PLIST.mgcp= yes +.endif + PLIST_VARS+= unbound .if exists(/usr/include/unbound.h) PLIST.unbound= yes @@ -289,4 +293,5 @@ post-install: .include "../../www/curl/buildlink3.mk" .include "../../mk/curses.buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" +.include "../../mk/termcap.buildlink3.mk" .include "../../mk/bsd.pkg.mk" diff --git a/comms/asterisk15/Makefile b/comms/asterisk15/Makefile index 70a4a3c23b9..aaa0b4dbf48 100644 --- a/comms/asterisk15/Makefile +++ b/comms/asterisk15/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.4 2018/08/22 09:43:03 wiz Exp $ +# $NetBSD: Makefile,v 1.5 2018/10/29 17:36:57 jperkin Exp $ # # NOTE: when updating this package, there are two places that sound # tarballs need to be checked; look in ${WRKSRC}/sounds/Makefile @@ -133,6 +133,10 @@ PLIST.mgcp= yes . endif .endfor +.if ${OPSYS} == "SunOS" +PLIST.mgcp= yes +.endif + PLIST_VARS+= unbound .if exists(/usr/include/unbound.h) PLIST.unbound= yes @@ -297,4 +301,5 @@ post-install: .include "../../www/curl/buildlink3.mk" .include "../../mk/curses.buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" +.include "../../mk/termcap.buildlink3.mk" .include "../../mk/bsd.pkg.mk" |