diff options
author | kuriyama <kuriyama@FreeBSD.org> | 1999-01-01 12:57:38 +0000 |
---|---|---|
committer | kuriyama <kuriyama@FreeBSD.org> | 1999-01-01 12:57:38 +0000 |
commit | f422759a868edf98a1d92afc940d84a3254df972 (patch) | |
tree | 71a0ff2ca5bef6356f8754c5d37bd52a84d7675c /mail/distribute/files | |
parent | 18f6456f6f2601576380fb7c54dff32e9fc23c0d (diff) | |
download | FreeBSD-ports-f422759a868edf98a1d92afc940d84a3254df972.zip FreeBSD-ports-f422759a868edf98a1d92afc940d84a3254df972.tar.gz |
Mail dispatcher for mailing list. Fits nicely with majordomo.
Original port created by: itojun
Will be maintained by: kuriyama
Diffstat (limited to 'mail/distribute/files')
-rw-r--r-- | mail/distribute/files/patch-aa | 46 | ||||
-rw-r--r-- | mail/distribute/files/patch-ab | 11 | ||||
-rw-r--r-- | mail/distribute/files/patch-ac | 12 |
3 files changed, 69 insertions, 0 deletions
diff --git a/mail/distribute/files/patch-aa b/mail/distribute/files/patch-aa new file mode 100644 index 0000000..117a4d6 --- /dev/null +++ b/mail/distribute/files/patch-aa @@ -0,0 +1,46 @@ +--- Makefile.orig Thu Oct 2 01:18:07 1997 ++++ Makefile Thu Oct 2 01:21:10 1997 +@@ -66,7 +66,7 @@ + ## -DDEF_ALIAS_CHAR_OPTION=\"b\" + + # +-DESTDIR= ++DESTDIR= ${PREFIX} + # + CFLAGS= -g ${OPTIONS} ${DEFAULTCONFIG} ${RCONFIG} + # -Wall +@@ -75,8 +75,8 @@ + MAKE= make + CC= ${PURIFY} ${PURIFYOPTS} cc + +-WHERE= /usr/local/libexec +-MANDIR= /usr/local/man ++WHERE= /sbin ++MANDIR= /man + MANSEC= 1 + + # Install as +@@ -84,7 +84,7 @@ + GROUP= daemon + + # install +-INSTALL= install -c ++#INSTALL= install -c + + # perl + PERL=perl +@@ -130,11 +130,11 @@ + @size xarchive + + install: xdistribute distribute.1 xarchive +- ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m 511 xdistribute \ ++ ${INSTALL} -c -s -o ${OWNER} -g ${GROUP} -m 511 xdistribute \ + ${DESTDIR}${WHERE}/distribute +- ${INSTALL} -s -o ${OWNER} -g ${GROUP} -m 511 xarchive \ ++ ${INSTALL} -c -s -o ${OWNER} -g ${GROUP} -m 511 xarchive \ + ${DESTDIR}${WHERE}/archive +- ${INSTALL} -m 444 distribute.1 \ ++ ${INSTALL_MAN} distribute.1 \ + ${DESTDIR}${MANDIR}/man${MANSEC}/distribute.${MANSEC} + + testinst: xdistribute xarchive diff --git a/mail/distribute/files/patch-ab b/mail/distribute/files/patch-ab new file mode 100644 index 0000000..b975cd3 --- /dev/null +++ b/mail/distribute/files/patch-ab @@ -0,0 +1,11 @@ +--- config.h.orig Sun Sep 14 09:25:53 1997 ++++ config.h Sun Sep 14 09:26:01 1997 +@@ -86,6 +86,8 @@ + * Other set-ups + */ + ++#if 0 + #ifndef _PATH_SENDMAIL + # define _PATH_SENDMAIL "/usr/lib/sendmail" /* default */ ++#endif + #endif diff --git a/mail/distribute/files/patch-ac b/mail/distribute/files/patch-ac new file mode 100644 index 0000000..07c9d89 --- /dev/null +++ b/mail/distribute/files/patch-ac @@ -0,0 +1,12 @@ +--- distribute.c.orig Sun Sep 14 09:26:57 1997 ++++ distribute.c Sun Sep 14 09:27:09 1997 +@@ -37,7 +37,8 @@ + #include <unistd.h> + #include <string.h> + +-#if defined(__bsdi__) /* may be wrong -- we need to use NET/2 def.*/ ++/* may be wrong -- we need to use NET/2 def.*/ ++#if defined(__bsdi__) || defined(__FreeBSD__) + # include <paths.h> /* for sendmail path */ + #endif + |