update port to 0.4.8

- CONFIGURE_STYLE
- bump LICENSE_TYPE
This commit is contained in:
reinhard 2000-06-22 13:10:22 +00:00
parent 2b18b4aa98
commit 7dedf20191
11 changed files with 68 additions and 63 deletions

View File

@ -1,3 +1,3 @@
MD5 (abook-0.4.7.tar.gz) = f67456a997ccfb3b3b9f0bdccdd05d06
RMD160 (abook-0.4.7.tar.gz) = 9cc7021eab86c2a0f898aa0a6124c4e3e020f416
SHA1 (abook-0.4.7.tar.gz) = 205778f68564d9f36aa5679a0463eee0ba559112
MD5 (abook-0.4.8.tar.gz) = 3c9cd4a5b056483b78afce27b3e6f865
RMD160 (abook-0.4.8.tar.gz) = 8b7c1e6e5cba329540dce7bd13f24da7fb9d16ce
SHA1 (abook-0.4.8.tar.gz) = 7c81e6e678b1b5ff9c6d29df6eb56529baf344bd

View File

@ -1,15 +0,0 @@
$OpenBSD: patch-Makefile.in,v 1.1 2000/05/30 11:37:40 reinhard Exp $
# fix $(DESTDIR) for man-page; reported back to author
--- Makefile.in.orig Sun May 28 14:05:41 2000
+++ Makefile.in Tue May 30 12:53:59 2000
@@ -327,8 +327,8 @@ maintainer-clean-generic clean mostlycle
install-data-local:
- $(mkinstalldirs) $(mandir)/man1
- $(INSTALL_DATA) $(srcdir)/abook.1 $(mandir)/man1/
+ $(mkinstalldirs) $(DESTDIR)$(mandir)/man1
+ $(INSTALL_DATA) $(srcdir)/abook.1 $(DESTDIR)$(mandir)/man1/
uninstall-local:
-rm -f $(mandir)/man1/abook.1

View File

@ -1,7 +1,6 @@
$OpenBSD: patch-abook.c,v 1.1.1.1 2000/05/29 16:46:51 reinhard Exp $
# ncurses.h->curses.h
--- abook.c.orig Wed May 17 11:10:05 2000
+++ abook.c Mon May 29 15:47:39 2000
$OpenBSD: patch-abook.c,v 1.2 2000/06/22 13:10:22 reinhard Exp $
--- abook.c.orig Thu Jun 15 13:17:32 2000
+++ abook.c Thu Jun 22 14:29:48 2000
@@ -5,7 +5,7 @@
* Copyright (C) 1999, 2000 Jaakko Heinonen
*/

View File

@ -1,15 +1,24 @@
$OpenBSD: patch-configure.in,v 1.1.1.1 2000/05/29 16:46:51 reinhard Exp $
# ncurses->curses
--- configure.in.orig Sun May 28 14:05:37 2000
+++ configure.in Mon May 29 14:52:24 2000
@@ -7,17 +7,17 @@ AC_PROG_CC
$OpenBSD: patch-configure.in,v 1.2 2000/06/22 13:10:22 reinhard Exp $
--- configure.in.orig Tue Jun 20 21:42:52 2000
+++ configure.in Thu Jun 22 14:26:29 2000
@@ -8,25 +8,25 @@ AC_PROG_CC
AC_PROG_INSTALL
AC_HEADER_STDC
AC_CHECK_HEADERS(unistd.h locale.h termios.h linux/termios.h sys/ioctl.h stdarg.h varargs.h)
AC_CHECK_HEADERS(unistd.h locale.h termios.h linux/termios.h sys/ioctl.h)
-AC_CHECK_HEADER(ncurses.h,,AC_MSG_ERROR([*** ncurses.h not installed - please install first ***]))
+AC_CHECK_HEADER(curses.h,,AC_MSG_ERROR([*** curses.h not installed - please install first ***]))
AC_CHECK_HEADER(stdarg.h,AC_DEFINE(HAVE_STDARG_H),AC_MSG_ERROR([*** stdarg.h is missing on your system ***]))
AC_CHECK_FUNCS(setlocale)
-AC_ARG_WITH(ncurses,
- [ --with-ncurses=DIR Where ncurses is installed ],
+AC_ARG_WITH(curses,
+ [ --with-curses=DIR Where curses is installed ],
[
LDFLAGS="-L$withval/lib $LDFLAGS"
CPPFLAGS="-I$withval/include $CPPFLAGS"
])
NCURSES_LIB=error
-AC_CHECK_LIB(ncurses,initscr, [
- NCURSES_LIB="-lncurses"

View File

@ -1,7 +1,6 @@
$OpenBSD: patch-database.c,v 1.1.1.1 2000/05/29 16:46:51 reinhard Exp $
# ncurses.h->curses.h
--- database.c.orig Wed May 17 11:10:05 2000
+++ database.c Mon May 29 15:54:15 2000
$OpenBSD: patch-database.c,v 1.2 2000/06/22 13:10:22 reinhard Exp $
--- database.c.orig Wed Jun 14 17:32:21 2000
+++ database.c Thu Jun 22 14:34:42 2000
@@ -6,7 +6,7 @@
* Copyright (C) Jaakko Heinonen
*/

View File

@ -1,13 +0,0 @@
$OpenBSD: patch-database.h,v 1.1.1.1 2000/05/29 16:46:51 reinhard Exp $
# ncurses.h->curses.h
--- database.h.orig Wed May 17 11:10:05 2000
+++ database.h Mon May 29 15:41:32 2000
@@ -44,7 +44,7 @@ void print_database();
#define LAST_ITEM (items - 1)
-#include <ncurses.h>
+#include <curses.h>
#ifndef getnstr
# define getnstr(s, n) wgetnstr(stdscr, s, n)
#endif

View File

@ -1,7 +1,6 @@
$OpenBSD: patch-edit.c,v 1.1.1.1 2000/05/29 16:46:51 reinhard Exp $
# ncurses.h->curses.h
--- edit.c.orig Mon May 22 10:04:25 2000
+++ edit.c Mon May 29 15:48:59 2000
$OpenBSD: patch-edit.c,v 1.2 2000/06/22 13:10:22 reinhard Exp $
--- edit.c.orig Thu Jun 15 15:38:17 2000
+++ edit.c Thu Jun 22 14:31:09 2000
@@ -6,7 +6,7 @@
* Copyright (C) Jaakko Heinonen
*/

View File

@ -0,0 +1,30 @@
$OpenBSD: patch-estr.c,v 1.1 2000/06/22 13:10:22 reinhard Exp $
--- estr.c.orig Mon Jun 19 19:13:01 2000
+++ estr.c Thu Jun 22 14:31:48 2000
@@ -17,7 +17,7 @@
/*#undef ABOOK_SRC*/
#include <stdlib.h>
-#include <ncurses.h>
+#include <curses.h>
#include <ctype.h>
#include <string.h>
#include "estr.h"
@@ -144,7 +144,7 @@ out:
#include <stdlib.h>
#include <sys/stat.h>
#include <unistd.h>
-#include <ncurses.h>
+#include <curses.h>
#define FILESEL_STATUSLINE 2
@@ -193,7 +193,7 @@ my_getcwd()
#endif
-#include <ncurses.h>
+#include <curses.h>
#define FILESEL_LAST_ITEM (filesel_items -1)

View File

@ -1,13 +1,12 @@
$OpenBSD: patch-filter.c,v 1.1.1.1 2000/05/29 16:46:51 reinhard Exp $
# ncurses.h->curses.h
--- filter.c.orig Wed May 10 15:57:37 2000
+++ filter.c Mon May 29 15:50:16 2000
$OpenBSD: patch-filter.c,v 1.2 2000/06/22 13:10:22 reinhard Exp $
--- filter.c.orig Thu Jun 15 13:44:56 2000
+++ filter.c Thu Jun 22 14:32:33 2000
@@ -9,7 +9,7 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <ncurses.h>
+#include <curses.h>
#include <pwd.h>
#include <sys/types.h>
#include "filter.h"
#include "abook.h"
#include "database.h"

View File

@ -1,7 +1,6 @@
$OpenBSD: patch-list.c,v 1.1.1.1 2000/05/29 16:46:51 reinhard Exp $
# ncurses.h->curses.h
--- list.c.orig Sat May 6 17:26:47 2000
+++ list.c Mon May 29 15:51:33 2000
$OpenBSD: patch-list.c,v 1.2 2000/06/22 13:10:23 reinhard Exp $
--- list.c.orig Tue Jun 6 11:03:21 2000
+++ list.c Thu Jun 22 14:33:12 2000
@@ -6,7 +6,7 @@
* Copyright (C) Jaakko Heinonen
*/

View File

@ -1,7 +1,6 @@
$OpenBSD: patch-options.c,v 1.1.1.1 2000/05/29 16:46:51 reinhard Exp $
# ncurses.h->curses.h
--- options.c.orig Wed May 17 11:10:06 2000
+++ options.c Mon May 29 15:52:39 2000
$OpenBSD: patch-options.c,v 1.2 2000/06/22 13:10:23 reinhard Exp $
--- options.c.orig Mon Jun 5 12:45:28 2000
+++ options.c Thu Jun 22 14:33:49 2000
@@ -6,7 +6,7 @@
* Copyright (C) Jaakko Heinonen
*/