Mailing List Archive


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [tlug] Re: Gentoo ebuild for XEmacs-21.5



On 16/03/2008, Stephen J. Turnbull <stephen@example.com> wrote:

> Josh Glover writes:
>
>   > http://gentoo-portage.com/app-xemacs/tooltalk
>
> What does this do?  tooltalk is a SunOS-specific protocol from the
>  Dark Ages.  It seems weird it would be in portage.

This is an XEmacs package (probably some Lisp stuff). Lemme find the
eclass so we can figure this out.

: jmglov@example.com; cat /usr/portage/eclass/xemacs-packages.eclass
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/eclass/xemacs-packages.eclass,v
1.14 2008/02/24 13:35:15 graaff Exp $
#
# xemacs-packages eclass inherited by all xemacs packages
# $PKG_CAT need's to be set before inheriting xemacs-packages

EXPORT_FUNCTIONS src_unpack src_compile src_install

DEPEND="virtual/xemacs"

[ -z "$HOMEPAGE" ]    && HOMEPAGE="http://xemacs.org/";
[ -z "$LICENSE" ]     && LICENSE="GPL-2"

case "${PKG_CAT}" in
        "standard" )
                MY_INSTALL_DIR="/usr/lib/xemacs/xemacs-packages" ;;

        "mule" )
                MY_INSTALL_DIR="/usr/lib/xemacs/mule-packages" ;;

        "contrib" )
                MY_INSTALL_DIR="/usr/lib/xemacs/site-packages" ;;
esac
[ -n "$DEBUG" ] && einfo "MY_INSTALL_DIR is ${MY_INSTALL_DIR}"

if [ -n "$EXPERIMENTAL" ]
then
        [ -z "$SRC_URI" ] &&
SRC_URI="ftp://ftp.xemacs.org/beta/experimental/packages/${P}-pkg.tar.gz";
else
        [ -z "$SRC_URI" ] &&
SRC_URI="http://ftp.xemacs.org/pub/xemacs/packages/${P}-pkg.tar.gz";
fi
[ -n "$DEBUG" ] && einfo "SRC_URI is ${SRC_URI}"

xemacs-packages_src_unpack() {
        return 0
}

xemacs-packages_src_compile() {
        einfo "Nothing to compile"
}

xemacs-packages_src_install() {
        dodir ${MY_INSTALL_DIR}
        cd "${D}${MY_INSTALL_DIR}"
        unpack ${A}
}


Looks like it grabs this file:

http://ftp.xemacs.org/pub/xemacs/packages/tooltalk-1.15-pkg.tar.gz

and installs it into

/usr/lib/xemacs/xemacs-packages

So your guess is as good as mine. :) I'd bet a major mode or
something. Checking...

: jmglov@example.com; tar tzf tooltalk-1.15-pkg.tar.gz
pkginfo/MANIFEST.tooltalk
lisp/tooltalk/ChangeLog
lisp/tooltalk/_pkg.el
lisp/tooltalk/auto-autoloads.el
lisp/tooltalk/auto-autoloads.elc
lisp/tooltalk/custom-load.el
lisp/tooltalk/custom-load.elc
lisp/tooltalk/tooltalk-init.el
lisp/tooltalk/tooltalk-init.elc
lisp/tooltalk/tooltalk-macros.el
lisp/tooltalk/tooltalk-macros.elc
lisp/tooltalk/tooltalk-util.el
lisp/tooltalk/tooltalk-util.elc

So there you have it.

Though this file exists:

http://ftp.xemacs.org/beta/experimental/packages/tooltalk-1.15-pkg.tar.gz

so maybe this package is still vital for 21.5.x?

-- 
Cheers,
Josh


Home | Main Index | Thread Index

Home Page Mailing List Linux and Japan TLUG Members Links