From xemacs-m  Sun Aug 17 15:05:29 1997
Received: from altair.xemacs.org (steve@xemacs.miranova.com [206.190.83.19])
	by xemacs.org (8.8.5/8.8.5) with ESMTP id PAA24118
	for <xemacs-beta@xemacs.org>; Sun, 17 Aug 1997 15:05:28 -0500 (CDT)
Received: (from steve@localhost)
	by altair.xemacs.org (8.8.6/8.8.6) id NAA08818;
	Sun, 17 Aug 1997 13:10:07 -0700
Mail-Copies-To: never
To: xemacs-beta@xemacs.org
Subject: Gnus 5.4.65 package script (package binary updated on xemacs.org)
X-Face: `'%\i;ySOu]g?NlziJSk_$&@]KP`}~PEQPjZ5;nxSaDW_o$4+4%Ab]%Ifw3ZR;7TIT3,O,'
 @2{L;]ox6kc;$_5kU'n**9vFg-]eV~GbxSVCx|(s%uR[],*:^WKmC`B}(;|k9/m]gwt?&`t;^rfCJg
 khHH>pP1W\)xM0U@!FNDD72{3fDP$PkBhx^7Z?-WxH6DbFN:QOnT`llzW}VGdYv;n9lzljQvKTIBhQ
 YuV
X-Attribution: sb
From: SL Baur <steve@xemacs.org>
Mime-Version: 1.0 (generated by tm-edit 7.108)
Content-Type: multipart/mixed;
 boundary="Multipart_Sun_Aug_17_13:10:07_1997-1"
Content-Transfer-Encoding: 7bit
Date: 17 Aug 1997 13:10:07 -0700
Message-ID: <m2hgcoy3j4.fsf@altair.xemacs.org>
Lines: 76
X-Mailer: Gnus v5.4.65/XEmacs 20.3(beta19) - "Kiev"

--Multipart_Sun_Aug_17_13:10:07_1997-1
Content-Type: text/plain; charset=US-ASCII

I'm uploading an updated package binary for Gnus 5.4.65 to
ftp.xemacs.org.  Attached is a script which can be used to install the
.elcs and .info* files (I'm still not sure how to deal with the
detached etc tarball).

To use this script, grab a copy of gnus-5.4.64.tar.gz, untar and run
it in the top level Gnus directory.  Adjust EMACS and PACKAGEDIR
assignments to fit the local conventions.  texinfo-3.x is required to
build the info files.  XEmacs 20.3-beta18 is required in order to
generate a correct autoloads file.  After installing the package,
redump XEmacs (rm lib-src/DOC src/xemacs; make) for it to take affect.

Note that the convention of prepending `=' to a lisp file name to get
it to be ignored is used.

For a slightly different approach to package installation, see the
Makefile in the footnote package.

--Multipart_Sun_Aug_17_13:10:07_1997-1
Content-Type: application/octet-stream
Content-Disposition: attachment; filename="xpackage.sh"
Content-Transfer-Encoding: 7bit

#! /bin/sh

# Build and install an XEmacs package

# Path to your local version of XEmacs-20.3
EMACS=/usr/src/xemacs-20.0/src/xemacs
# Default package (top level) directory
PACKAGEDIR=/usr/local/lib/xemacs/packages

EVIL_LISP="cus-edit.el cus-face.el custom.el wid-browse.el wid-edit.el x-overlay.el md5.el"

for i in ${EVIL_LISP}; do
	if [ -f lisp/$i ]; then
		mv lisp/$i lisp/=$i
		rm -f lisp/${i}c
	fi
done

rm -f lisp/auto-autoloads.el*
rm -f lisp/custom-load.el*

echo Building Main Gnus lisp
(cd lisp; make EMACS=$EMACS)

echo Building Gnus autoloads
$EMACS -batch -q -no-site-file -eval '(setq autoload-package-name "gnus")' \
	-l autoload -f batch-update-directory lisp
$EMACS -batch -q -no-site-file -f batch-byte-compile lisp/auto-autoloads.el
$EMACS -batch -q -no-site-file -f batch-byte-compile lisp/custom-load.el

if [ -d $PACKAGEDIR/lisp/gnus ]; then
	rm -rf $PACKAGEDIR/lisp/gnus
fi

mkdir $PACKAGEDIR/lisp/gnus
install -c -m644 lisp/*.el $PACKAGEDIR/lisp/gnus
install -c -m644 lisp/*.elc $PACKAGEDIR/lisp/gnus

rm -f $PACKAGEDIR/info/gnus.info* $PACKAGEDIR/info/message.info*
(cd texi
 makeinfo gnus.texi -o $PACKAGEDIR/info/gnus.info
 makeinfo message.texi -o $PACKAGEDIR/info/message.info
)

--Multipart_Sun_Aug_17_13:10:07_1997-1
Content-Type: text/plain; charset=US-ASCII



--Multipart_Sun_Aug_17_13:10:07_1997-1--

