diff options
Diffstat (limited to 'app-emacs/google-c-style')
-rw-r--r-- | app-emacs/google-c-style/ChangeLog | 8 | ||||
-rw-r--r-- | app-emacs/google-c-style/google-c-style-20091009-r1.ebuild | 13 |
2 files changed, 14 insertions, 7 deletions
diff --git a/app-emacs/google-c-style/ChangeLog b/app-emacs/google-c-style/ChangeLog index 5d08f327eec1..83320497837f 100644 --- a/app-emacs/google-c-style/ChangeLog +++ b/app-emacs/google-c-style/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emacs/google-c-style -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/google-c-style/ChangeLog,v 1.4 2010/11/17 10:56:52 maekke Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-emacs/google-c-style/ChangeLog,v 1.5 2011/11/11 22:04:44 ulm Exp $ + + 11 Nov 2011; Ulrich Mueller <ulm@gentoo.org> + google-c-style-20091009-r1.ebuild: + Upgrade postinst message from einfo to elog. Bump EAPI to 4. 17 Nov 2010; Markus Meier <maekke@gentoo.org> google-c-style-20091009-r1.ebuild: diff --git a/app-emacs/google-c-style/google-c-style-20091009-r1.ebuild b/app-emacs/google-c-style/google-c-style-20091009-r1.ebuild index 465b06fce5ff..d02d306f8acd 100644 --- a/app-emacs/google-c-style/google-c-style-20091009-r1.ebuild +++ b/app-emacs/google-c-style/google-c-style-20091009-r1.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2010 Gentoo Foundation +# Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/google-c-style/google-c-style-20091009-r1.ebuild,v 1.3 2010/11/17 10:56:52 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/google-c-style/google-c-style-20091009-r1.ebuild,v 1.4 2011/11/11 22:04:44 ulm Exp $ + +EAPI=4 inherit elisp @@ -13,12 +15,13 @@ SLOT="0" KEYWORDS="amd64 x86" IUSE="" +S="${WORKDIR}" SITEFILE="50${PN}-gentoo.el" pkg_postinst() { elisp-site-regen - einfo "Example usage (.emacs):" - einfo " (add-hook 'c-mode-common-hook 'google-set-c-style)" - einfo " (add-hook 'c-mode-common-hook 'google-make-newline-indent)" + elog "Example usage (~/.emacs):" + elog " (add-hook 'c-mode-common-hook 'google-set-c-style)" + elog " (add-hook 'c-mode-common-hook 'google-make-newline-indent)" } |