summaryrefslogtreecommitdiff
path: root/cad/geda-symbols/patches/patch-ab
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2002-12-13 05:19:44 +0000
committerdmcmahill <dmcmahill>2002-12-13 05:19:44 +0000
commitc3e0ee8c611875af2363c176e3865775642d39d1 (patch)
treeffe463f6fd4824bbba495fd39bf9ec50161de7b9 /cad/geda-symbols/patches/patch-ab
parent153a61d155b25331cabb69243936edb08b5f19bf (diff)
downloadpkgsrc-c3e0ee8c611875af2363c176e3865775642d39d1.tar.gz
update the gEDA suite of tools to the 20021103 release.
This represents many many improvements and bug fixes. A few items to note are that the attributes used by the symbol library have been greately cleaned up and unified. You may want to run gsymupdate and gschemupdate if migrating from older versions of the tools.
Diffstat (limited to 'cad/geda-symbols/patches/patch-ab')
-rw-r--r--cad/geda-symbols/patches/patch-ab36
1 files changed, 36 insertions, 0 deletions
diff --git a/cad/geda-symbols/patches/patch-ab b/cad/geda-symbols/patches/patch-ab
new file mode 100644
index 00000000000..ef571b986e6
--- /dev/null
+++ b/cad/geda-symbols/patches/patch-ab
@@ -0,0 +1,36 @@
+$NetBSD: patch-ab,v 1.1 2002/12/13 05:19:47 dmcmahill Exp $
+
+--- documentation/Makefile.in.orig Sun Nov 3 22:58:59 2002
++++ documentation/Makefile.in
+@@ -316,7 +316,7 @@ uninstall-am: uninstall-datadocDATA unin
+ #
+ %.pic: %.fig
+ @echo "Creating pic (using fig2dev)"
+- @if which fig2dev >/dev/null 2>/dev/null; then \
++ @if ! which fig2dev >/dev/null 2>/dev/null; then \
+ fig2dev -L pic $*.fig >$*.pic ;\
+ else \
+ echo "** Did not find fig2dev **" ;\
+@@ -327,19 +327,19 @@ uninstall-am: uninstall-datadocDATA unin
+ %.ps: %.doc
+ @echo "Creating ps (using groff)"
+ @rm -rf $*.tmp
+- @if which groff >/dev/null 2>/dev/null; then \
++ @if ! which groff >/dev/null 2>/dev/null; then \
+ groff -t -sp -ms $*.doc >$*.tmp ;\
+ else \
+ echo "** Did not find groff **" ;\
+ echo "Some Documentation might not be correct!" ;\
+- touch $*.ps ;\
++ touch $*.tmp ;\
+ fi
+ @mv -f $*.tmp $*.ps
+
+ %.pdf: %.ps
+ @echo "Creating pdf (using ps2pdf)"
+ @rm -rf $*.pdf
+- @if which ps2pdf >/dev/null 2>/dev/null; then \
++ @if ! which ps2pdf >/dev/null 2>/dev/null; then \
+ ps2pdf $*.ps ;\
+ else \
+ echo "** Did not find ps2pdf **" ;\