pkgsrc/math/orpie/patches/patch-ac
tnn 788109ef92 Update to orpie-1.5.0 and add DESTDIR support.
ChangeLog:
- Complete rewrite of units implementation, allowing user-defined units
  and physical constants.
- Updated included ocamlgsl bindings to 0.6.0.
- Square root of a negative value now returns a complex result.
- gcd(), lcd(), and mod() now accept real-valued  arguments.
- Fix for crash in abbrev mode.
- Made a minor Makefile change to correct linking errors under Gentoo
  (maybe others).
- Numerous code cleanups. Calculator code has been better separated from
  interface code.
- Support --sysconfdir configure option.  (Anyone packaging for the
  filesystem hierarchy standard will now need to use something like
  "./configure --prefix=/usr --sysconfdir=/etc".)
- Implemented entry of most fundamental physical constants.
- Fixed incorrect error message regarding deprecated extended_enter command
2007-09-13 12:10:39 +00:00

14 lines
604 B
Text

$NetBSD: patch-ac,v 1.2 2007/09/13 12:10:40 tnn Exp $
--- Makefile.in.orig 2007-09-13 08:35:16.000000000 +0200
+++ Makefile.in
@@ -151,7 +151,8 @@ install-indep:
mkdir -p $(DESTDIR)/$(sysconfdir)
mkdir -p $(MANDIR)/man1
mkdir -p $(MANDIR)/man5
- install -m 644 orpierc $(DESTDIR)/$(sysconfdir)
+ mkdir -p $(DESTDIR)$(PREFIX)/share/examples/orpie
+ install -m 644 orpierc $(DESTDIR)$(PREFIX)/share/examples/orpie
install -m 644 doc/orpie.1 $(MANDIR)/man1/orpie.1
install -m 644 doc/orpie-curses-keys.1 $(MANDIR)/man1/orpie-curses-keys.1
install -m 644 doc/orpierc.5 $(MANDIR)/man5/orpierc.5