Sat Nov 11 18:59:10 2023 UTC ()
graphics/geeqie: Force-disable yelp

If yelp, which is not bl3ed, is found, html documentation is installed
(and is not in PLIST).  It is left as future work to decide if the
documentation is useful enough to add a dependency on yelp.


(gdt)
diff -r1.116 -r1.117 pkgsrc/graphics/geeqie/Makefile

cvs diff -r1.116 -r1.117 pkgsrc/graphics/geeqie/Makefile (expand / switch to unified diff)

--- pkgsrc/graphics/geeqie/Makefile 2023/11/08 13:19:29 1.116
+++ pkgsrc/graphics/geeqie/Makefile 2023/11/11 18:59:09 1.117
@@ -1,34 +1,37 @@ @@ -1,34 +1,37 @@
1# $NetBSD: Makefile,v 1.116 2023/11/08 13:19:29 wiz Exp $ 1# $NetBSD: Makefile,v 1.117 2023/11/11 18:59:09 gdt Exp $
2 2
3DISTNAME= geeqie-2.1 3DISTNAME= geeqie-2.1
4PKGREVISION= 3 4PKGREVISION= 3
5CATEGORIES= graphics 5CATEGORIES= graphics
6MASTER_SITES= ${MASTER_SITE_GITHUB:=BestImageViewer/} 6MASTER_SITES= ${MASTER_SITE_GITHUB:=BestImageViewer/}
7EXTRACT_SUFX= .tar.xz 7EXTRACT_SUFX= .tar.xz
8GITHUB_RELEASE= v${PKGVERSION_NOREV} 8GITHUB_RELEASE= v${PKGVERSION_NOREV}
9 9
10MAINTAINER= gdt@NetBSD.org 10MAINTAINER= gdt@NetBSD.org
11HOMEPAGE= http://www.geeqie.org/ 11HOMEPAGE= http://www.geeqie.org/
12COMMENT= Image viewer 12COMMENT= Image viewer
13LICENSE= gnu-gpl-v2 13LICENSE= gnu-gpl-v2
14 14
15TOOL_DEPENDS+= gettext-m4-[0-9]*:../../devel/gettext-m4 15TOOL_DEPENDS+= gettext-m4-[0-9]*:../../devel/gettext-m4
16# .../geeqie-2.0.1/scripts/generate-ClayRGB1998-icc-h.sh: xxd: not found 16# .../geeqie-2.0.1/scripts/generate-ClayRGB1998-icc-h.sh: xxd: not found
17TOOL_DEPENDS+= vim-share-[0-9]*:../../editors/vim-share 17TOOL_DEPENDS+= vim-share-[0-9]*:../../editors/vim-share
18 18
19LDFLAGS.SunOS+= -lm -lsocket -lnsl 19LDFLAGS.SunOS+= -lm -lsocket -lnsl
20 20
21MESON_ARGS+= -Ddoxygen=disabled 21MESON_ARGS+= -Ddoxygen=disabled
 22# Do not build html documentation.
 23# \todo Consider depending on yelp instead
 24MESON_ARGS+= -Dyelp-build=disabled
22 25
23USE_PKGLOCALEDIR= yes 26USE_PKGLOCALEDIR= yes
24USE_LANGUAGES= c c++ 27USE_LANGUAGES= c c++
25USE_TOOLS= bash:run msgfmt pkg-config 28USE_TOOLS= bash:run msgfmt pkg-config
26 29
27REPLACE_BASH+= plugins/*/* 30REPLACE_BASH+= plugins/*/*
28REPLACE_BASH+= doc/*.sh 31REPLACE_BASH+= doc/*.sh
29REPLACE_BASH+= g*.sh 32REPLACE_BASH+= g*.sh
30REPLACE_BASH+= version.sh 33REPLACE_BASH+= version.sh
31 34
32INSTALLATION_DIRS= ${PKGMANDIR}/man1 35INSTALLATION_DIRS= ${PKGMANDIR}/man1
33 36
34.include "../../mk/bsd.fast.prefs.mk" 37.include "../../mk/bsd.fast.prefs.mk"