diff options
author | obache <obache@pkgsrc.org> | 2009-06-03 12:40:32 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2009-06-03 12:40:32 +0000 |
commit | 6faa7582f5cb8e298170c624a70f404f40439295 (patch) | |
tree | 416401c9706132268e0360d5f4e4bacc25127189 /net/ORBit2 | |
parent | 05d7d2a733db122e1dc597a13e67aaf5224a619b (diff) | |
download | pkgsrc-6faa7582f5cb8e298170c624a70f404f40439295.tar.gz |
Remove build dependency on gtk-doc, related to PR#41475.
It comes from upstream Bug#562310:
http://bugzilla.gnome.org/show_bug.cgi?id=562310
Availability detection of `gtkdoc-rebase' command is depend on the behaviour
of `which' command, if `which gtkdoc-rebase' return false, do nothing.
It is known as not works as expected on Darwin and Solaris, then failed in
unwanted gtkdoc-rebase execution, and abort.
It is already fixed in upstream gtk-doc repository, but not released yet(1.12?).
So, some packages may contain and be using un-fixed gtk-doc.* files.
For easy to determine whether it is fixed or not, check gtk-doc.make contains
following commit (not using 'which gtkdoc-rebase', but $(GTKDOC_REBASE) macro):
http://git.gnome.org./cgit/gtk-doc/commit/?id=ef5f56ca5fd4a077e6f7a374e8dd333b7a6a8d42
Diffstat (limited to 'net/ORBit2')
-rw-r--r-- | net/ORBit2/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/net/ORBit2/Makefile b/net/ORBit2/Makefile index 13ea51aa494..69d925a6e04 100644 --- a/net/ORBit2/Makefile +++ b/net/ORBit2/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.68 2009/05/26 16:55:23 wiz Exp $ +# $NetBSD: Makefile,v 1.69 2009/06/03 12:40:32 obache Exp $ # DISTNAME= ORBit2-2.14.17 @@ -48,9 +48,12 @@ PRINT_PLIST_AWK+= /^@dirrm share\/idl$$/ \ { print "@unexec $${RMDIR} %D/" $$2 \ " 2>/dev/null || $${TRUE}"; next; } +# Workaround for Upstream Bug#562310. +# for more detail, see also PR#41475. +TOOLS_NOOP+= gtkdoc-rebase + BUILDLINK_API_DEPENDS.glib2+= glib2>=2.8.0 .include "../../devel/glib2/buildlink3.mk" .include "../../net/libIDL/buildlink3.mk" -.include "../../textproc/gtk-doc/buildlink3.mk" .include "../../mk/bsd.pkg.mk" |