diff options
author | rillig <rillig@pkgsrc.org> | 2019-11-03 12:04:12 +0000 |
---|---|---|
committer | rillig <rillig@pkgsrc.org> | 2019-11-03 12:04:12 +0000 |
commit | b2e4a5f46228c81e46d7dd51126346fc05230c3d (patch) | |
tree | cebaafcaf2ebef8bc8b5bec5f211fee2aa26c7b3 /comms/asterisk16 | |
parent | 7bf7c2274b7ce05513561cb64ce9b42f3c7753e8 (diff) | |
download | pkgsrc-b2e4a5f46228c81e46d7dd51126346fc05230c3d.tar.gz |
comms: align variable assignments
pkglint -Wall -F --only aligned --only indent -r
Manually adjusted the indentation in asterisk15 and asterisk16 to avoid
too deep indentation.
Diffstat (limited to 'comms/asterisk16')
-rw-r--r-- | comms/asterisk16/Makefile | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/comms/asterisk16/Makefile b/comms/asterisk16/Makefile index f0a64976f1a..5da3f3c9984 100644 --- a/comms/asterisk16/Makefile +++ b/comms/asterisk16/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.48 2019/08/22 12:22:54 ryoon Exp $ +# $NetBSD: Makefile,v 1.49 2019/11/03 12:04:12 rillig Exp $ # # NOTE: when updating this package, there are two places that sound # tarballs need to be checked; look in ${WRKSRC}/sounds/Makefile @@ -139,10 +139,10 @@ PLIST.mgcp= yes PLIST.mgcp= yes .endif -PLIST_VARS+= unbound +PLIST_VARS+= unbound # unbound 1.5 or later is required.` .if exists(/usr/include/unbound.h) && !empty(OS_VERSION:M9.*) -PLIST.unbound= yes +PLIST.unbound= yes .else CONFIGURE_ARGS+= --without-unbound .endif @@ -154,8 +154,10 @@ DISTFILES+= asterisk-extra-sounds-en-gsm-1.5.2.tar.gz # pjproject PJPROJ_VERSION= 2.9 -SITES.pjproject-${PJPROJ_VERSION}.tar.bz2= -https://raw.githubusercontent.com/asterisk/third-party/master/pjproject/${PJPROJ_VERSION}/pjproject-${PJPROJ_VERSION}.tar.bz2 -SITES.pjproject-${PJPROJ_VERSION}.md5= -https://raw.githubusercontent.com/asterisk/third-party/master/pjproject/${PJPROJ_VERSION}/MD5SUM.TXT +SITES.pjproject-${PJPROJ_VERSION}.tar.bz2= \ + -https://raw.githubusercontent.com/asterisk/third-party/master/pjproject/${PJPROJ_VERSION}/pjproject-${PJPROJ_VERSION}.tar.bz2 +SITES.pjproject-${PJPROJ_VERSION}.md5= \ + -https://raw.githubusercontent.com/asterisk/third-party/master/pjproject/${PJPROJ_VERSION}/MD5SUM.TXT DISTFILES+= pjproject-${PJPROJ_VERSION}.tar.bz2 pjproject-${PJPROJ_VERSION}.md5 ALL_ENV+= EXTERNALS_CACHE_DIR=${DISTDIR}/${DIST_SUBDIR} |