blob: 36cb82c483415d3abd75215cb0901f24971f37b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/initsplit/initsplit-1.6-r1.ebuild,v 1.2 2007/12/01 11:53:24 opfer Exp $
inherit elisp
DESCRIPTION="Split customizations into different files"
HOMEPAGE="http://www.emacswiki.org/cgi-bin/wiki?InitSplit"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ~ppc x86"
IUSE=""
SITEFILE=51${PN}-gentoo.el
pkg_postinst() {
elisp-site-regen
elog "Initsplit is no longer enabled as a site default. Add the following"
elog "line to your ~/.emacs file to enable configuration file splitting:"
elog " (add-hook 'write-file-hooks 'initsplit-split-user-init-file t)"
elog ""
elog "If you want configuration files byte-compiled, also add this line:"
elog " (add-hook 'after-save-hook 'initsplit-byte-compile-files t)"
}
|