Gnus development mailing list
 help / color / mirror / Atom feed
From: SL Baur <steve@xemacs.org>
Subject: Re: Gnus autoloads
Date: 25 Sep 1997 10:26:42 -0700	[thread overview]
Message-ID: <m27mc5l2y5.fsf@altair.xemacs.org> (raw)
In-Reply-To: Morten Skjelland's message of "25 Sep 1997 12:52:00 +0200"

[-- Attachment #1: Type: text/plain, Size: 502 bytes --]

Morten Skjelland <Morten.Skjelland@chembio.ntnu.no> writes:

> Hi
>  I have installed XEmacs-20.3 beta 23.  This version of XEmacs is not
> dumped with Gnus, so I need to add autoload's for gnus functions.

>From the Gnus top level directory you need to execute a command that
looks something like:

xemacs-20.3 -batch -q -no-site-file \
	-eval '(setq autoload-package-name "gnus")' \
	-l autoload -f batch-update-directory lisp

The script I'm currently using for installing Quassia Gnus looks like:


[-- Attachment #2: xpackage.sh --]
[-- Type: application/octet-stream, Size: 1220 bytes --]

#! /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 widget.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
)

      reply	other threads:[~1997-09-25 17:26 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
1997-09-25 10:52 Morten Skjelland
1997-09-25 17:26 ` SL Baur [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=m27mc5l2y5.fsf@altair.xemacs.org \
    --to=steve@xemacs.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).