diff options
author | dmcmahill <dmcmahill@pkgsrc.org> | 2000-11-02 13:59:54 +0000 |
---|---|---|
committer | dmcmahill <dmcmahill@pkgsrc.org> | 2000-11-02 13:59:54 +0000 |
commit | 7254993bc192515fecea21043241382a877153ac (patch) | |
tree | be6a85333a4cd0332893433095d08960ce1d0b69 /cad/xcircuit/patches | |
parent | e28b73cd0aa9466ec76723f5fae7ace31972f210 (diff) | |
download | pkgsrc-7254993bc192515fecea21043241382a877153ac.tar.gz |
Initial import of cad/xcircuit.
The program xcircuit is a generic drawing program tailored especially
for making publication-quality renderings of circuit diagrams (hence
the name). The output is pure PostScript, and the graphical interface
attempts to maintain as much consistency as possible between the X11
window rendering and the final printer output.
xcircuit is mouse, menu, and keyboard-driven, with the emphasis on
single-character keyboard macros.
Package provided by Jason Beegan <jasontd@indigo.ie> in PR 11383 with
some minor modifications by me.
Diffstat (limited to 'cad/xcircuit/patches')
-rw-r--r-- | cad/xcircuit/patches/patch-aa | 33 | ||||
-rw-r--r-- | cad/xcircuit/patches/patch-ab | 12 |
2 files changed, 45 insertions, 0 deletions
diff --git a/cad/xcircuit/patches/patch-aa b/cad/xcircuit/patches/patch-aa new file mode 100644 index 00000000000..cb79e6e3c50 --- /dev/null +++ b/cad/xcircuit/patches/patch-aa @@ -0,0 +1,33 @@ +$NetBSD: patch-aa,v 1.1.1.1 2000/11/02 13:59:55 dmcmahill Exp $ + +--- Imakefile.orig Tue Oct 3 11:33:52 2000 ++++ Imakefile Thu Nov 2 08:22:31 2000 +@@ -29,6 +29,6 @@ + # + # for debugging purposes uncomment the following line: +-CDEBUGFLAGS = -g +-STD_INCLUDES = -I. -I/usr/X11R6/include/X11 ++#CDEBUGFLAGS = -g ++STD_INCLUDES = -I. -I${X11BASE}/include -I${LOCALBASE}/include + + #------------------------------------------------------------------------ +@@ -37,5 +37,5 @@ + #------------------------------------------------------------------------ + # +-PREFIX = /usr/local ++# PREFIX = /usr/local + # XCIRCUIT_LIB_DIR = $(PREFIX)/src/xcircuit-2.1b5/psfiles + XCIRCUIT_LIB_DIR = $(PREFIX)/lib/xcircuit-2.1 +@@ -59,5 +59,5 @@ + # to the path where gs can be found. + # GS_EXEC= /usr/local/src/gs5.50/obj/gs +-GS_EXEC= /usr/bin/gs ++GS_EXEC= ${LOCALBASE}/bin/gs + + #------------------------------------------------------------------------ +@@ -186,4 +186,5 @@ + #endif + ++MakefileSubdirs(Xw) + MakeMakeSubdirs(Xw,libxcXw.a) + MakeSubdirs(Xw) diff --git a/cad/xcircuit/patches/patch-ab b/cad/xcircuit/patches/patch-ab new file mode 100644 index 00000000000..ec8265f769b --- /dev/null +++ b/cad/xcircuit/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.1.1.1 2000/11/02 13:59:55 dmcmahill Exp $ + +use the 'standard' netbsd config rather than overriding CC. + +--- Xw/Imakefile.orig Thu Aug 3 16:10:52 2000 ++++ Xw/Imakefile Thu Nov 2 08:32:51 2000 +@@ -1,4 +1,4 @@ + # Compile flags +-CC = cc ++#CC = cc + # If you wish to compile with gcc: + #CC = gcc |