blob: 812409a8803f1230eec4a582572349149773f64c (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emacs/yow/yow-21.4_p20020329.ebuild,v 1.7 2009/09/10 22:38:08 ulm Exp $
inherit elisp
MY_P="emacs-${PV%_p*}"
DESCRIPTION="Zippy the pinhead data base"
HOMEPAGE="http://www.gnu.org/software/emacs/"
SRC_URI="mirror://gnu/emacs/${MY_P}a.tar.gz"
# A slightly different version of yow.lines is also included with
# app-xemacs/cookie, and also with games-misc/fortune-mod which is
# under a BSD licence.
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE=""
S="${WORKDIR}/${MY_P}/etc"
ELISP_PATCHES="${PN}-fix-misspellings.patch"
SITEFILE="50${PN}-gentoo.el"
src_compile() { :; }
src_install() {
insinto "${SITEETC}/${PN}"
doins yow.lines || die
elisp-site-file-install "${FILESDIR}/${SITEFILE}" || die
}
pkg_postinst() {
elisp-site-regen
elog "To add a menu-bar item for \"yow\" (as it used to be in Emacs 21),"
elog "add the following lines to your ~/.emacs file:"
elog
elog " (define-key-after menu-bar-games-menu [yow]"
elog " '(menu-item \"Random Quotation\" yow"
elog " :help \"Display a random Zippy quotation\"))"
}
|