diff options
author | sketch <sketch@pkgsrc.org> | 2003-12-09 13:53:38 +0000 |
---|---|---|
committer | sketch <sketch@pkgsrc.org> | 2003-12-09 13:53:38 +0000 |
commit | 52d288ea76d4befbdb3f9b4e6f24fb016d713bd4 (patch) | |
tree | e8a273171bff7f284c1f7838039c767d9cecaae1 | |
parent | 6370668b49db1960163c7a2c8973a210083f569e (diff) | |
download | pkgsrc-52d288ea76d4befbdb3f9b4e6f24fb016d713bd4.tar.gz |
Some versions of BSD install(1) do not handle more than one directory
argument. As these are standard directories, remove the command rather
than splitting it into separate statements.
Fixes install on Solaris.
-rw-r--r-- | textproc/gocr/distinfo | 3 | ||||
-rw-r--r-- | textproc/gocr/patches/patch-ab | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/textproc/gocr/distinfo b/textproc/gocr/distinfo index 651798b8a77..ba0c4ba0377 100644 --- a/textproc/gocr/distinfo +++ b/textproc/gocr/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.2 2003/07/24 17:47:25 wiz Exp $ +$NetBSD: distinfo,v 1.3 2003/12/09 13:53:38 sketch Exp $ SHA1 (gocr-0.37.tar.gz) = 41fa2e3f1fc17d27f1f1610441cec4d5f4a6201e Size (gocr-0.37.tar.gz) = 672962 bytes SHA1 (patch-aa) = 106daf9fb2bf37f9a11972244b3c4e292178dbe2 +SHA1 (patch-ab) = 56833576531ee62dc96ab6d65e029448eacb88ea diff --git a/textproc/gocr/patches/patch-ab b/textproc/gocr/patches/patch-ab new file mode 100644 index 00000000000..969f309fdbd --- /dev/null +++ b/textproc/gocr/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.1 2003/12/09 13:53:38 sketch Exp $ + +--- src/Makefile.in.orig 2003-12-09 13:41:53.060784000 +0000 ++++ src/Makefile.in 2003-12-09 13:42:15.130080000 +0000 +@@ -66,7 +66,6 @@ + # PHONY = don't look at file clean, -rm = start rm and ignore errors + .PHONY : clean proper install + install: all +- $(INSTALL) -d $(DESTDIR)$(bindir) $(DESTDIR)$(libdir) $(DESTDIR)$(includedir) + $(INSTALL) ../bin/$(PROGRAM) $(DESTDIR)$(bindir) + $(INSTALL) $(LIBPGMASCLIB) $(DESTDIR)$(libdir) + $(INSTALL) $(INCLUDEFILES) $(DESTDIR)$(includedir) |