Hi Matt, please add ESS (Emacs Speaks Statistics) to app-emacs. Reproducible: Always Steps to Reproduce: 1. 2. 3.
Created attachment 10896 [details] tarball with ess ebuild files. Contains ChangeLog, ess-5.1.24.ebuild, and files/digest-ess-5.1.24.
I've uploaded an ebuild to make the ess package for GNU emacs. This was my first one, so I might have botched some policy-related things. But the script works (at least, it works for me). Thanks.
Steve, sorry for the delay. I looked at your ebuild and it looks clean but has several problems. First, copying PDF files should be done in src_install(), i.e. src_install(){ ... insinto /usr/share/doc/${P} doins doc/ess-intro.pdf insinto /usr/share/doc/${P}/example doins etc/function-outline.S # doins doesn't support recursive operation atm... cp -Rf etc/other/S-spread ${D}/usr/share/doc/${P}/examples } would be better than doing it in pkg_postinst(). (If you copy files in src_install(), you don't need to write pkg_prerm() ) Second, I added 50ess-gentoo.el, which is missing from your ebuild tarball. Third, I updated SRC_URI and HOMEPAGE to point the latest address (I guess these variables pointed the right address when you updated the ebuild almost a year ago. We are sorry for this). After fixing these problems, your ebuild emerged and worked great. I added it to CVS. Thanks for the contribution.