diff options
author | hoek <hoek@FreeBSD.org> | 2000-05-13 14:16:17 +0000 |
---|---|---|
committer | hoek <hoek@FreeBSD.org> | 2000-05-13 14:16:17 +0000 |
commit | 62c6af46ddb13b500a93cce2e3264b851d3820d2 (patch) | |
tree | 21c34bec46eaebb23f05b88629735ade1aa8f7c5 /math/pspp/files | |
parent | bd6e223fb16345b2fcbad087d56771cff698b629 (diff) | |
download | FreeBSD-ports-62c6af46ddb13b500a93cce2e3264b851d3820d2.zip FreeBSD-ports-62c6af46ddb13b500a93cce2e3264b851d3820d2.tar.gz |
Add pspp, a language for statistics strikingly similar to spss.
Submitted-by: Andrew L. Neporada <andrew@chg.ru> (ports/18158)
Diffstat (limited to 'math/pspp/files')
-rw-r--r-- | math/pspp/files/patch-aa | 11 | ||||
-rw-r--r-- | math/pspp/files/patch-ab | 20 |
2 files changed, 31 insertions, 0 deletions
diff --git a/math/pspp/files/patch-aa b/math/pspp/files/patch-aa new file mode 100644 index 0000000..1a6aada --- /dev/null +++ b/math/pspp/files/patch-aa @@ -0,0 +1,11 @@ +--- Makefile.in.orig Sun Jan 16 19:06:30 2000 ++++ Makefile.in Sat Apr 22 15:23:56 2000 +@@ -97,7 +97,7 @@ + + SUBDIRS = doc intl po lib src config tests + +-pkgdocdir = $(prefix)/doc/@PACKAGE@ ++pkgdocdir = $(datadir)/doc/@PACKAGE@ + pkgdoc_DATA = NEWS README TODO + noinst_DATA = AUTHORS THANKS + diff --git a/math/pspp/files/patch-ab b/math/pspp/files/patch-ab new file mode 100644 index 0000000..a9d6c40 --- /dev/null +++ b/math/pspp/files/patch-ab @@ -0,0 +1,20 @@ +--- config/Makefile.in.orig Sun Jan 16 19:06:43 2000 ++++ config/Makefile.in Sat Apr 22 13:04:25 2000 +@@ -125,12 +125,15 @@ + $(mkinstalldirs) $(DESTDIR)$(pkgsysconfdir) + @list='$(pkgsysconf_DATA)'; for p in $$list; do \ + if test -f $(srcdir)/$$p; then \ +- echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p"; \ +- $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p; \ ++ echo " $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p.default"; \ ++ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p.default; \ + else if test -f $$p; then \ + echo " $(INSTALL_DATA) $$p $(DESTDIR)$(pkgsysconfdir)/$$p"; \ + $(INSTALL_DATA) $$p $(DESTDIR)$(pkgsysconfdir)/$$p; \ + fi; fi; \ ++ if test ! -f $(DESTDIR)$(pkgsysconfdir)/$$p; then \ ++ $(INSTALL_DATA) $(srcdir)/$$p $(DESTDIR)$(pkgsysconfdir)/$$p; \ ++ fi; \ + done + + uninstall-pkgsysconfDATA: |