diff options
author | cjep <cjep> | 2002-12-07 17:59:25 +0000 |
---|---|---|
committer | cjep <cjep> | 2002-12-07 17:59:25 +0000 |
commit | 7190e02df32769fb7c748d5b49a411da97f9a155 (patch) | |
tree | f472c316a5a79861f8e50c5a5807264640fd9f1b /math/eukleides/patches | |
parent | e672953a7b6e8522b5a6e884ddd80b087197cd89 (diff) | |
download | pkgsrc-7190e02df32769fb7c748d5b49a411da97f9a155.tar.gz |
Initial import of eukleides 0.9.0 into the NetBSD packages collection
as math/eukleides.
A Euclidean drawing language compiler which allows one to typeset
geometry figures within a (La)TeX document. This program is also useful
to convert such figures into EPS format or into various other vector
graphic formats.
Supplied by ich (tsadowski at gmx dot net) in PR#19090. Thanks!
Diffstat (limited to 'math/eukleides/patches')
-rw-r--r-- | math/eukleides/patches/patch-aa | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/math/eukleides/patches/patch-aa b/math/eukleides/patches/patch-aa new file mode 100644 index 00000000000..3b2d7998941 --- /dev/null +++ b/math/eukleides/patches/patch-aa @@ -0,0 +1,24 @@ +$NetBSD: patch-aa,v 1.1.1.1 2002/12/07 17:59:25 cjep Exp $ + +--- Makefile.orig Wed Jun 5 01:38:47 2002 ++++ Makefile Wed Jun 5 01:41:39 2002 +@@ -1,14 +1,14 @@ + # Eukleides 0.9.0 makefile + # Copyright (c) Christian Obrecht 2000-2002 + +-CC = gcc +-CFLAGS = -c -O2 ++#CC = gcc ++CFLAGS += -c + OBJECTS = lex.yy.o parser.tab.o main.o geometry.o drawing.o + LEX = flex + YACC = bison -d +-BIN = /usr/local/bin/ +-MAN = /usr/man/man1/ +-INFO = /usr/info/ ++BIN = ${PREFIX}/bin/ ++MAN = ${PREFIX}/man/man1/ ++INFO = ${PREFIX}/info/ + PAPER = --texinfo=@afourpaper + DOC = eukleides.info eukleides.dvi eukleides.ps + |