Gnus development mailing list
 help / color / mirror / Atom feed
* Gnus autoloads
@ 1997-09-25 10:52 Morten Skjelland
  1997-09-25 17:26 ` SL Baur
  0 siblings, 1 reply; 2+ messages in thread
From: Morten Skjelland @ 1997-09-25 10:52 UTC (permalink / raw)


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.

 Which autoload's do I need?

Morten
-- 
I'm heading for the trees over there.
If that's not our destination,
I don't care.


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: Gnus autoloads
  1997-09-25 10:52 Gnus autoloads Morten Skjelland
@ 1997-09-25 17:26 ` SL Baur
  0 siblings, 0 replies; 2+ messages in thread
From: SL Baur @ 1997-09-25 17:26 UTC (permalink / raw)


[-- 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
)

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~1997-09-25 17:26 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1997-09-25 10:52 Gnus autoloads Morten Skjelland
1997-09-25 17:26 ` SL Baur

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).