Mon Oct 23 10:17:39 2017 UTC ()
orc: Append to USE_TOOLS (`+=') instead of initialize it (`=')

NFCI but can avoid some headaches if USE_TOOLS will be adjusted in the future.


(leot)
diff -r1.12 -r1.13 pkgsrc/devel/orc/Makefile

cvs diff -r1.12 -r1.13 pkgsrc/devel/orc/Makefile (expand / switch to unified diff)

--- pkgsrc/devel/orc/Makefile 2017/10/23 10:11:21 1.12
+++ pkgsrc/devel/orc/Makefile 2017/10/23 10:17:39 1.13
@@ -1,27 +1,27 @@ @@ -1,27 +1,27 @@
1# $NetBSD: Makefile,v 1.12 2017/10/23 10:11:21 leot Exp $ 1# $NetBSD: Makefile,v 1.13 2017/10/23 10:17:39 leot Exp $
2 2
3DISTNAME= orc-0.4.27 3DISTNAME= orc-0.4.27
4CATEGORIES= devel 4CATEGORIES= devel
5MASTER_SITES= https://gstreamer.freedesktop.org/src/orc/ 5MASTER_SITES= https://gstreamer.freedesktop.org/src/orc/
6EXTRACT_SUFX= .tar.xz 6EXTRACT_SUFX= .tar.xz
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://gstreamer.freedesktop.org/modules/orc.html 9HOMEPAGE= https://gstreamer.freedesktop.org/modules/orc.html
10COMMENT= Compiler for vector operations 10COMMENT= Compiler for vector operations
11LICENSE= modified-bsd 11LICENSE= modified-bsd
12 12
13USE_LIBTOOL= yes 13USE_LIBTOOL= yes
14USE_TOOLS= gmake 14USE_TOOLS+= gmake
15GNU_CONFIGURE= yes 15GNU_CONFIGURE= yes
16PKGCONFIG_OVERRIDE+= orc.pc.in 16PKGCONFIG_OVERRIDE+= orc.pc.in
17 17
18# XXX: Kludge to avoid uncoditionally pick up some gtkdoc-* tools if gtk-doc 18# XXX: Kludge to avoid uncoditionally pick up some gtkdoc-* tools if gtk-doc
19# XXX: package is installed and then fails in the installation phase. 19# XXX: package is installed and then fails in the installation phase.
20CONFIGURE_ENV+= ac_cv_prog_GTKDOC_CHECK= \ 20CONFIGURE_ENV+= ac_cv_prog_GTKDOC_CHECK= \
21 ac_cv_path_GTKDOC_CHECK_PATH= \ 21 ac_cv_path_GTKDOC_CHECK_PATH= \
22 ac_cv_path_GTKDOC_REBASE= \ 22 ac_cv_path_GTKDOC_REBASE= \
23 ac_cv_path_GTKDOC_MKPDF= 23 ac_cv_path_GTKDOC_MKPDF=
24 24
25TEST_TARGET= check 25TEST_TARGET= check
26 26
27 27