diff options
Diffstat (limited to 'app-emacs/ess/ess-5.1.24.ebuild')
-rw-r--r-- | app-emacs/ess/ess-5.1.24.ebuild | 60 |
1 files changed, 60 insertions, 0 deletions
diff --git a/app-emacs/ess/ess-5.1.24.ebuild b/app-emacs/ess/ess-5.1.24.ebuild new file mode 100644 index 000000000000..e598f78a9be8 --- /dev/null +++ b/app-emacs/ess/ess-5.1.24.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/ess/ess-5.1.24.ebuild,v 1.1 2004/03/14 09:06:06 usata Exp $ + +inherit elisp + +IUSE="" + +DESCRIPTION="Emacs Speaks Statistics" +HOMEPAGE="http://www.analytics.washington.edu/statcomp/projects/ess/" +SRC_URI="http://www.analytics.washington.edu/downloads/ess/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +DEPEND="virtual/emacs + app-text/texi2html + sys-apps/debianutils + sys-apps/sed + virtual/tetex" + +SITEFILE=50ess-gentoo.el + +src_compile() { + einfo "Compiling lisp sources..." + pushd ${S}/lisp && make; + popd; + einfo "Making documentation..." + tmpfile=`mktemp`; + # The -glossary option doesn't work with Gentoo texi2html. + sed "s:-glossary::g" ${S}/doc/Makefile > ${tmpfile}; + mv -f ${tmpfile} ${S}/doc/Makefile; + pushd ${S}/doc && make; + popd; +} + +src_install() { + elisp-install ${PN} lisp/*.el lisp/*.elc; + elisp-site-file-install ${FILESDIR}/${SITEFILE}; + doinfo ${S}/doc/*.info*; + dohtml ${S}/doc/*.html; + dodoc ${S}/doc/[N-Z]*; + dodoc ${S}/etc/{sas-keys.ps,ess-sas-sh-command,ess-s?.S} + insinto /usr/share/doc/${P} + doins ${S}/doc/ess-intro.pdf + insinto /usr/share/doc/${P}/examples + doins ${S}/etc/function-outline.S + cp -Rf ${S}/etc/other/S-spread ${D}/usr/share/doc/${P}/examples +} + +pkg_postinst() { + elisp-site-regen + einfo "Please see /usr/share/doc/${P} for the complete documentation." + einfo "Usage hints are in /usr/share/emacs/site-lisp/${PN}/ess-site.el." +} + +pkg_postrm() { + elisp-site-regen +} |