forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Closes: https://bugs.gentoo.org/639752 Package-Manager: Portage-2.3.16, Repoman-2.3.6
- Loading branch information
Showing
2 changed files
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
DIST ess-15.09-2.tgz 3248241 BLAKE2B 63e83436e60d6f9398dabaaed2aa795dee8888f3a992749bdf6ab9541464c65297c29e1d2936d3e6b1da6284c0c3508556b30a6b5a68e4e090e8e1ce3d925894 SHA512 9ba2f8800ece437e18749e29b6ecec3cf52297fa1c5a149dbf8eeb991df4f5dc99a76925458bd03203b7e8418347c4bcb5226e08dc64bd95d16e9a5b32f8634b | ||
DIST ess-16.04.tgz 3265496 BLAKE2B 2b7b9c972afb0fdea1b8c386d91ab0f2797c8ab1bf0e6a9ca17915670d7e4d61afbec108beb5e61fe7e0491f851aac21d5c2145c6c61d77b3be4046448479580 SHA512 5070197c8c622c83db98100272aa3bc947a0687fa357db1d63dab81b30175d7044f1eb5dc7274039f85636c613d23ad7b84eaae5ccef0cca7061d6d5af7b97d6 | ||
DIST ess-17.11.zip 3388618 BLAKE2B a935f11f71455791efe01a3d0fa5461cf2bf99c48807ef596f0c5b04e1c3a6d4b8710746c9dc5849c37261c9f8d528a64a48557a2350d5cae7109c0142bcb24c SHA512 0265ff2d284a1ce11b0ae125b4e77d7c4c10c2b491ceccb1efa6e59400f8377d2ac8951953fcbd38408d92d697c4cdd60dfb8385f19956414b88ac8f100c8551 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# Copyright 1999-2017 Gentoo Foundation | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
EAPI=6 | ||
|
||
inherit elisp readme.gentoo-r1 | ||
|
||
DESCRIPTION="Emacs Speaks Statistics" | ||
HOMEPAGE="http://ess.r-project.org/" | ||
# ${P}.tgz is plain (uncompresses) tar, so use zip for this version | ||
SRC_URI="http://ess.r-project.org/downloads/ess/${P}.zip" | ||
|
||
LICENSE="GPL-2+ GPL-3+ Texinfo-manual" | ||
SLOT="0" | ||
KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~x86-macos" | ||
|
||
DEPEND="app-text/texi2html | ||
virtual/latex-base | ||
app-arch/unzip" | ||
|
||
SITEFILE="50${PN}-gentoo.el" | ||
|
||
src_compile() { | ||
default | ||
} | ||
|
||
src_install() { | ||
emake PREFIX="${ED}/usr" \ | ||
INFODIR="${ED}/usr/share/info" \ | ||
LISPDIR="${ED}${SITELISP}/ess" \ | ||
DOCDIR="${ED}/usr/share/doc/${PF}" \ | ||
install | ||
|
||
elisp-site-file-install "${FILESDIR}/${SITEFILE}" | ||
|
||
# Most documentation is installed by the package's build system. | ||
rm -f "${ED}${SITELISP}/${PN}/ChangeLog" | ||
dodoc ChangeLog *NEWS doc/{TODO,ess-intro.pdf} | ||
newdoc doc/ChangeLog ChangeLog-doc | ||
newdoc lisp/ChangeLog ChangeLog-lisp | ||
|
||
DOC_CONTENTS="Please see /usr/share/doc/${PF} for the complete | ||
documentation. Usage hints are in ${SITELISP}/${PN}/ess-site.el ." | ||
readme.gentoo_create_doc | ||
} |