source: trunk/debathena/third/nmh/debathenify-nmh @ 24783

Revision 24783, 842 bytes checked in by broder, 14 years ago (diff)
Fix a typo in debathenify-nmh.
  • Property svn:executable set to *
Line 
1#!/bin/sh
2set -e
3
4name=nmh
5daversionappend=debathena2
6
7dir=$(cd "$(dirname "$0")"; pwd)
8
9hack_package () {
10    cp -a "$dir/nmh-mbx_close.dpatch" debian/patches/
11    cp -a "$dir/nmh-mhshow_pager.dpatch" debian/patches/
12    echo nmh-mbx_close.dpatch >> debian/patches/00list
13    echo nmh-mhshow_pager.dpatch >> debian/patches/00list
14    append_description <<EOF
15 .
16 This package was rebuilt for the Debathena project. It adds a patch
17 to to avoid losing mail if close() fails (as it can in AFS if you run
18 over quota) when writing mailbox files, and a patch to wrap output
19 from MIME mail in a pager.
20EOF
21    add_changelog 'Avoid losing mail if close() fails, as it can in AFS.'
22    add_changelog 'Wrap as much output from MIME mail in the moreproc as possible.'
23    add_debathena_provides
24    munge_sections
25}
26
27. ../common/debathenificator.sh
Note: See TracBrowser for help on using the repository browser.