diff options
author | prlw1 <prlw1@pkgsrc.org> | 2021-05-10 12:47:54 +0000 |
---|---|---|
committer | prlw1 <prlw1@pkgsrc.org> | 2021-05-10 12:47:54 +0000 |
commit | 3776174e1eac7d5fef47ddfa73236a6873220217 (patch) | |
tree | f091be42eb7f10a48b955b4af95035c0734f193d /devel/accerciser | |
parent | 8072cbf9e61a567bb1757ea64768eb2c0d7b3b74 (diff) | |
download | pkgsrc-3776174e1eac7d5fef47ddfa73236a6873220217.tar.gz |
accerciser: fix build after change to make itstool a TOOL.
accerciser DEPENDS yelp-tools DEPENDS itstools
no longer works. Luckily yelp-tools is only actually needed in accerciser
for regenerating the configure script.
Diffstat (limited to 'devel/accerciser')
-rw-r--r-- | devel/accerciser/Makefile | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/devel/accerciser/Makefile b/devel/accerciser/Makefile index 77c295c5405..c4e02b62f16 100644 --- a/devel/accerciser/Makefile +++ b/devel/accerciser/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.41 2020/12/04 20:45:06 nia Exp $ +# $NetBSD: Makefile,v 1.42 2021/05/10 12:47:54 prlw1 Exp $ DISTNAME= accerciser-3.38.0 -PKGREVISION= 1 +PKGREVISION= 2 CATEGORIES= devel gnome MASTER_SITES= ${MASTER_SITE_GNOME:=sources/accerciser/${PKGVERSION_NOREV:R}/} EXTRACT_SUFX= .tar.xz @@ -13,16 +13,21 @@ LICENSE= modified-bsd PREV_PKGPATH= devel/accerciser3 -USE_TOOLS+= gmake msgfmt pkg-config +USE_TOOLS+= gmake itstool msgfmt pkg-config USE_PKGLOCALEDIR= yes GNU_CONFIGURE= yes PY_PATCHPLIST= yes REPLACE_PYTHON= plugins/ipython_view.py REPLACE_PYTHON+= src/accerciser.in +.include "../../mk/bsd.prefs.mk" + +# msgfmt: unknown option -- desktop +.if ${OPSYS} == "NetBSD" +TOOLS_PLATFORM.msgfmt= +.endif + TOOL_DEPENDS+= gettext-tools>=0.19.8:../../devel/gettext-tools -_TOOLS_USE_PKGSRC.msgfmt= yes -BUILD_DEPENDS+= yelp-tools-[0-9]*:../../textproc/yelp-tools DEPENDS+= libwnck3-[0-9]*:../../devel/libwnck3 DEPENDS+= ${PYPKGPREFIX}-at-spi2-[0-9]*:../../devel/py-at-spi2 |