Gnus development mailing list
 help / color / mirror / Atom feed
* Installing Gnus as a package under XEmacs-21.2
@ 1998-12-05 13:22 Lloyd Zusman
  1998-12-07  9:40 ` Didier Verna
  0 siblings, 1 reply; 2+ messages in thread
From: Lloyd Zusman @ 1998-12-05 13:22 UTC (permalink / raw)


I'm using pgnus-0.63 under XEmacs-21.2.beta4

I'm wondering what it would take to install Gnus as an
auto-autoloadable package under XEmacs-21.2. I know that part of this
procedure entails creating the following directory:

  ../lib/xemacs/site-packages/lisp/gnus

However, I believe that I also need an `auto-autoloads.el' file.  Is
that true?  If so, how can I generate one?  It looks like the
`auto-autoloads.el' files for other packages are somehow automatically
generated.

Thanks in advance.

-- 
 Lloyd Zusman
 ljz@asfast.com


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

* Re: Installing Gnus as a package under XEmacs-21.2
  1998-12-05 13:22 Installing Gnus as a package under XEmacs-21.2 Lloyd Zusman
@ 1998-12-07  9:40 ` Didier Verna
  0 siblings, 0 replies; 2+ messages in thread
From: Didier Verna @ 1998-12-07  9:40 UTC (permalink / raw)
  Cc: ding

Lloyd Zusman writes:

Lloyd> I'm using pgnus-0.63 under XEmacs-21.2.beta4 I'm wondering what it
Lloyd> would take to install Gnus as an auto-autoloadable package under
Lloyd> XEmacs-21.2. I know that part of this procedure entails creating the
Lloyd> following directory:

Lloyd> ../lib/xemacs/site-packages/lisp/gnus

Lloyd> However, I believe that I also need an `auto-autoloads.el' file. Is
Lloyd> that true? If so, how can I generate one? It looks like the
Lloyd> `auto-autoloads.el' files for other packages are somehow automatically
Lloyd> generated.


	I usually compile with `gmake EMACS=xemacs' in the pgnus distribution, 
and then, I have a stupid script that removes the preceding version, installs
the new one, and regenerates the autoloads and the custom-loads. Here it is
fwiw: 

 ,----
| #! /bin/sh     
| 		 
| prefix=/infres/metheny
| package=$prefix/lib/xemacs/site-packages
| lisp_dir=$package/lisp/gnus
| emacs=$prefix/latest/xemacs/src/xemacs
| 		 
| rm -f $package/lisp/gnus/*
| rm -f $package/info/gnus*
| 		 
| gmake lispdir=$lisp_dir infodir=$package/info EMACS=$emacs install
| cp lisp/*.el $lisp_dir
| 		 
| cd $lisp_dir   
| $emacs -batch -q -l autoload -f batch-update-directory .
| $emacs -batch -q -l cus-dep  -f Custom-make-dependencies .
| $emacs -batch -q -f batch-byte-compile auto-autoloads.el custom-load.el
| 		 
| cd ../../      
| 		 
| chmod -R a+rX .
`-----


-- 
    /     /   _   _       Didier Verna        http://www.inf.enst.fr/~verna/
 - / / - / / /_/ /      E.N.S.T. INF C201.1      mailto:verna@inf.enst.fr
/_/ / /_/ / /__ /        46 rue Barrault        Tel.   (33) 01 45 81 73 46
                      75634 Paris  cedex 13     Fax.   (33) 01 45 81 31 19


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

end of thread, other threads:[~1998-12-07  9:40 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1998-12-05 13:22 Installing Gnus as a package under XEmacs-21.2 Lloyd Zusman
1998-12-07  9:40 ` Didier Verna

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