diff options
author | 2007-07-03 06:33:18 +0000 | |
---|---|---|
committer | 2007-07-03 06:33:18 +0000 | |
commit | 2be53a7b5f81e6cafe3b02763f9484d95fd10315 (patch) | |
tree | 9121152e9c76f12cc14e8e93e032dfa21da4aefc /app-emacs/session/session-2.2a.ebuild | |
parent | removed src_install, as it is exactly like that in elisp.eclass (make use of ... (diff) | |
download | gentoo-2-2be53a7b5f81e6cafe3b02763f9484d95fd10315.tar.gz gentoo-2-2be53a7b5f81e6cafe3b02763f9484d95fd10315.tar.bz2 gentoo-2-2be53a7b5f81e6cafe3b02763f9484d95fd10315.zip |
removed src_install and postinst, as they are exactly like that in elisp.eclass (make use of DOCS variable)
(Portage version: 2.1.2.9)
Diffstat (limited to 'app-emacs/session/session-2.2a.ebuild')
-rw-r--r-- | app-emacs/session/session-2.2a.ebuild | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/app-emacs/session/session-2.2a.ebuild b/app-emacs/session/session-2.2a.ebuild index b1af6561c77e..0fd57a3dcf47 100644 --- a/app-emacs/session/session-2.2a.ebuild +++ b/app-emacs/session/session-2.2a.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/session/session-2.2a.ebuild,v 1.9 2007/01/28 04:28:38 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/session/session-2.2a.ebuild,v 1.10 2007/07/03 06:33:18 opfer Exp $ inherit elisp @@ -13,28 +13,18 @@ LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 amd64 ppc" -DEPEND="virtual/emacs" - S="${WORKDIR}/${PN}" +SITEFILE=50${PN}-gentoo.el +DOCS="INSTALL README lisp/ChangeLog" src_compile() { cd lisp elisp-compile session.el || die } -src_install() { - elisp-install ${PN} lisp/*.el lisp/*.elc - elisp-site-file-install ${FILESDIR}/50session-gentoo.el - dodoc INSTALL README lisp/ChangeLog -} - pkg_postinst() { elisp-site-regen elog "Add the folloing to your ~/.emacs to use session:" elog " (require 'session)" elog " (add-hook 'after-init-hook 'session-initialize)" } - -pkg_postrm() { - elisp-site-regen -} |