diff options
author | drochner <drochner> | 2008-01-09 17:44:39 +0000 |
---|---|---|
committer | drochner <drochner> | 2008-01-09 17:44:39 +0000 |
commit | 241a6e9ff5e34d315f48a858ae941a18996cf346 (patch) | |
tree | 43021d2a861383492879eb37889369e6145e0708 | |
parent | a37beef14e2f0cdb3d2f9c69f5b0c3725b0f0e83 (diff) | |
download | pkgsrc-241a6e9ff5e34d315f48a858ae941a18996cf346.tar.gz |
fix a build error reported by Thomas Klausner: replace wrong use of
which(1) in a Makefile part provided by gtk-doc by a newer version
(which is still not portable, but since that gtk-doc stuff is used
at many places there is no point in introducing something better here)
-rw-r--r-- | misc/goffice0.6/distinfo | 3 | ||||
-rw-r--r-- | misc/goffice0.6/patches/patch-aa | 15 |
2 files changed, 17 insertions, 1 deletions
diff --git a/misc/goffice0.6/distinfo b/misc/goffice0.6/distinfo index 851fe733b87..5e604bd24ec 100644 --- a/misc/goffice0.6/distinfo +++ b/misc/goffice0.6/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.1.1.1 2008/01/06 15:43:45 drochner Exp $ +$NetBSD: distinfo,v 1.2 2008/01/09 17:44:39 drochner Exp $ SHA1 (goffice-0.6.1.tar.gz) = 2b5da913143c7b9913411c84bf8cacf14a43240d RMD160 (goffice-0.6.1.tar.gz) = 196a948112622154ef6f457be7c7910c1ffc266b Size (goffice-0.6.1.tar.gz) = 3049472 bytes +SHA1 (patch-aa) = 9808c7d3f77a0f99ad6250a1d43ed691cd5dcc2a diff --git a/misc/goffice0.6/patches/patch-aa b/misc/goffice0.6/patches/patch-aa new file mode 100644 index 00000000000..3314cb30ddf --- /dev/null +++ b/misc/goffice0.6/patches/patch-aa @@ -0,0 +1,15 @@ +$NetBSD: patch-aa,v 1.1 2008/01/09 17:44:39 drochner Exp $ + +--- docs/reference/Makefile.in.orig 2008-01-09 14:44:22.000000000 +0100 ++++ docs/reference/Makefile.in +@@ -588,8 +588,9 @@ install-data-local: + done; \ + echo '-- Installing $(srcdir)/html/index.sgml' ; \ + $(INSTALL_DATA) $(srcdir)/html/index.sgml $(DESTDIR)$(TARGET_DIR) || :; \ +- which gtkdoc-rebase >/dev/null && \ ++ if test `which gtkdoc-rebase` != ""; then \ + gtkdoc-rebase --relative --dest-dir=$(DESTDIR) --html-dir=$(DESTDIR)$(TARGET_DIR) ; \ ++ fi \ + fi + + uninstall-local: |