pkgsrc/math/xeukleides/patches/patch-aa
kristerw 508d6d88a6 Update xeukleides to 1.0.0 using patches provided by Torsten Sadowski
in PR pkg/28745.

Changes since 0.9.0 include:
* Bugs concerning `trace' command and `triangle' function fixed.
* Strings may now be enclosed in dollar signs ($).
* Variable names may now contain underscores (_) and single quotes (').
* New `strokes' command.
* New `label' command.
* Enhancement of `arg' function.
* Enhancement of `draw' command.
* New `dot' angle mark.
* Various new numerical functions: `min', `max', `clamp', `sign', `ceil',
  `floor', `round'.
* New ternary test operator, logical operators and comparison operators.
* Improvement of `interactive' command.
* Improvement of triangle and quadrilateral assignments.
* Minor bug fixes.
2004-12-31 13:13:32 +00:00

31 lines
822 B
Text

$NetBSD: patch-aa,v 1.2 2004/12/31 13:13:32 kristerw Exp $
--- Makefile.orig Wed May 12 21:20:31 2004
+++ Makefile Fri Dec 31 14:06:58 2004
@@ -6,10 +6,9 @@
OBJECTS = lex.yy.o parser.tab.o main.o geometry.o drawing.o
LEX = flex
YACC = bison -d
-PREFIX = /usr/local/
-BIN = $(PREFIX)bin/
-MAN = $(PREFIX)man/man1/
-INFO = $(PREFIX)info/
+BIN = $(PREFIX)/bin/
+MAN = $(PREFIX)/man/man1/
+INFO = $(PREFIX)/info/
PAPER = --texinfo=@afourpaper
DOC = eukleides.info eukleides.dvi eukleides.ps
@@ -40,11 +39,9 @@
book : dvi
dvips -f eukleides.dvi > eukleides.ps
-install : xeukleides man info
+install : xeukleides man
strip xeukleides ; \
cp -f xeukleides $(BIN)xeukleides ; \
- install-info eukleides.info $(INFO)dir ; \
- cp -f eukleides.info $(INFO)eukleides.info
uninstall :
rm -f $(BIN)xeukleides ; \