summaryrefslogtreecommitdiff
path: root/news/nn/patches/patch-ai
blob: 1fcfa181aaa1fa248ee90a74941f7597e47fc0ee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
$NetBSD: patch-ai,v 1.8 2006/10/14 19:33:45 schwarz Exp $

--- config.h-dist.orig	2005-04-01 22:44:22.000000000 +0200
+++ config.h-dist	2006-10-14 20:03:22.000000000 +0200
@@ -11,6 +11,8 @@
  *	(c) Copyright 1990, Kim F. Storm.  All rights reserved.
  */
 
+#define PREFIX		"@PREFIX@"
+#define PKG_SYSCONFDIR	"@PKG_SYSCONFDIR@"
 
 /*
  * The Good Net-Keeping Seal of Approval folks seem to think it necessary to
@@ -68,7 +70,7 @@
  *	LIB_DIRECTORY defined below.
  */
 
-#define NNTP_SERVER	"/usr/local/lib/nntp_server"
+#define NNTP_SERVER	PKG_SYSCONFDIR "/server"
 
 /*
  *  Define your local domain name.  If you leave this undefined, nn will
@@ -95,7 +97,7 @@
  *	conf/s-template.h as a starting point for writing you own.
  */
 
-#include "s-sunos5.h"
+#include "@SFILE@"
 
 /*
  *	Define DEFAULT_PAGER as the initial value of the 'pager' variable.
@@ -122,7 +124,7 @@
  *	conf/m-template.h as a starting point for writing you own.
  */
 
-#include "m-sparc.h"
+#include "@MFILE@"
 
 
 /***************************** OWNERSHIP ***************************
@@ -139,8 +141,8 @@
  *	Common choices are: (news, news) and (your uid, your gid)
  */
 
-#define OWNER	"news"
-#define GROUP	"news"
+#define OWNER	"@BINOWN@"
+#define GROUP	"@BINGRP@"
 
 
 /**************************** LOCALIZATION ****************************
@@ -173,8 +175,12 @@
  *			   (= LIB_DIRECTORY/Log if undefined).
  */
 
-#define BIN_DIRECTORY	"/usr/local/bin"
-#define LIB_DIRECTORY	"/usr/local/lib/nn"
+#define BIN_DIRECTORY	PREFIX "/bin"
+#define LIB_DIRECTORY	PREFIX "/share/nn"
+#ifndef _PATH_VARTMP
+# define _PATH_VARTMP  "/var/tmp"
+#endif
+#define TMP_DIRECTORY   _PATH_VARTMP
 
 
 /*************************** MAIL INTERFACE *************************
@@ -189,7 +195,11 @@
  */
 
 /* #define REC_MAIL	"/usr/lib/news/recmail"	*/	/* non-sendmail */
-#define REC_MAIL	"/usr/lib/sendmail -t"		/* sendmail */
+#ifndef _PATH_SENDMAIL
+# define _PATH_SENDMAIL	"/usr/lib/sendmail"
+#endif
+#define REC_MAIL	_PATH_SENDMAIL " -t"		/* sendmail */
+
 
 /*
  *	nn needs to know the name of your host.
@@ -237,13 +247,13 @@
  *	DAEMON_MAN	- nnmaster
  */
 
-#define USER_MAN_DIR	"/usr/local/man/man1"
+#define USER_MAN_DIR	PREFIX "/man/man1"
 #define USER_MAN_SECTION	"1"
 
-#define SYS_MAN_DIR	"/usr/local/man/man1"
-#define SYS_MAN_SECTION		"1m"
+#define SYS_MAN_DIR	PREFIX "/man/man1"
+#define SYS_MAN_SECTION		"1"
 
-#define DAEMON_MAN_DIR	"/usr/local/man/man8"
+#define DAEMON_MAN_DIR	PREFIX "/man/man8"
 #define DAEMON_MAN_SECTION	"8"
 
 
@@ -374,7 +384,7 @@
  *	performance (no data conversion is needed).
  */
 
-/* #define NETWORK_DATABASE	*/
+#define NETWORK_DATABASE
 
 
 /**************************** DATABASE LOCATION **************************