diff options
author | schmonz <schmonz@pkgsrc.org> | 2014-11-19 15:36:26 +0000 |
---|---|---|
committer | schmonz <schmonz@pkgsrc.org> | 2014-11-19 15:36:26 +0000 |
commit | 74d90a30200f41992243b9a67a57d711b300d747 (patch) | |
tree | e007f8ee4253cf1479fbbc8de104e1466ef96125 /devel | |
parent | 9d08fac1ae5bcc5462d0b2fc717100840f5c6631 (diff) | |
download | pkgsrc-74d90a30200f41992243b9a67a57d711b300d747.tar.gz |
Don't build and install the man page (which isn't in PLIST, and
would need heavy dependencies to add) just because xsltproc happens
to find docbook.xsl on a given system.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/talloc/distinfo | 3 | ||||
-rw-r--r-- | devel/talloc/patches/patch-buildtools_wafsamba_samba__conftests.py | 16 |
2 files changed, 18 insertions, 1 deletions
diff --git a/devel/talloc/distinfo b/devel/talloc/distinfo index 2ce547dd2ba..43ade73a218 100644 --- a/devel/talloc/distinfo +++ b/devel/talloc/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2014/05/30 13:51:12 wiz Exp $ +$NetBSD: distinfo,v 1.3 2014/11/19 15:36:26 schmonz Exp $ SHA1 (talloc-2.1.1.tar.gz) = 380bb786274dfd1a4a8179d31cd88cbee15c97bf RMD160 (talloc-2.1.1.tar.gz) = 5f77b5da4a593129e7381ff539bde46eef034c28 Size (talloc-2.1.1.tar.gz) = 418564 bytes +SHA1 (patch-buildtools_wafsamba_samba__conftests.py) = 8e40688a23fbf6112153b82a538df8801bf96247 diff --git a/devel/talloc/patches/patch-buildtools_wafsamba_samba__conftests.py b/devel/talloc/patches/patch-buildtools_wafsamba_samba__conftests.py new file mode 100644 index 00000000000..4db3ee5abb3 --- /dev/null +++ b/devel/talloc/patches/patch-buildtools_wafsamba_samba__conftests.py @@ -0,0 +1,16 @@ +$NetBSD: patch-buildtools_wafsamba_samba__conftests.py,v 1.1 2014/11/19 15:36:26 schmonz Exp $ + +Don't build and install the man page just because xsltproc happens +to find docbook.xsl on a given system. + +--- buildtools/wafsamba/samba_conftests.py.orig 2013-06-04 14:21:30.000000000 +0000 ++++ buildtools/wafsamba/samba_conftests.py +@@ -491,6 +491,8 @@ def CHECK_INLINE(conf): + @conf + def CHECK_XSLTPROC_MANPAGES(conf): + '''check if xsltproc can run with the given stylesheets''' ++ if "pkgsrc": ++ return False + + + if not conf.CONFIG_SET('XSLTPROC'): |