pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/textproc/rasqal



Module Name:    pkgsrc
Committed By:   leot
Date:           Tue Oct 24 10:44:51 UTC 2017

Modified Files:
        pkgsrc/textproc/rasqal: Makefile

Log Message:
rasqual: Fix installation if gtk-doc package is already installed

By default rasqual is configured with `--disable-gtk-doc'. However,
despite that, it will checks several `gtkdoc-*' tools anyway, ending
in a failure during the installation phase because only a couple
of them are available.

Add a kludge via CONFIGURE_ENV to avoid picking up gtkdoc-* tools.

Noticed by <martin>, thanks!


To generate a diff of this commit:
cvs rdiff -u -r1.29 -r1.30 pkgsrc/textproc/rasqal/Makefile

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/textproc/rasqal/Makefile
diff -u pkgsrc/textproc/rasqal/Makefile:1.29 pkgsrc/textproc/rasqal/Makefile:1.30
--- pkgsrc/textproc/rasqal/Makefile:1.29        Thu Aug 24 20:03:02 2017
+++ pkgsrc/textproc/rasqal/Makefile     Tue Oct 24 10:44:51 2017
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.29 2017/08/24 20:03:02 adam Exp $
+# $NetBSD: Makefile,v 1.30 2017/10/24 10:44:51 leot Exp $
 
 DISTNAME=      rasqal-0.9.33
 PKGREVISION=   5
@@ -16,6 +16,13 @@ USE_LIBTOOL= yes
 
 PKGCONFIG_OVERRIDE+=   rasqal.pc.in
 
+# XXX: Kludge to avoid uncoditionally pick up some gtkdoc-* tools if gtk-doc
+# XXX: package is installed and then fails in the installation phase.
+CONFIGURE_ENV+=                ac_cv_path_GTKDOC_CHECK= \
+                       ac_cv_path_GTKDOC_CHECK_PATH= \
+                       ac_cv_path_GTKDOC_REBASE= \
+                       ac_cv_path_GTKDOC_MKPDF=
+
 .include "../../devel/gmp/buildlink3.mk"
 .include "../../math/mpfr/buildlink3.mk"
 BUILDLINK_API_DEPENDS.raptor2+=        raptor2>=2.0.7



Home | Main Index | Thread Index | Old Index