diff options
author | Pacho Ramos <pacho@gentoo.org> | 2013-02-15 17:29:38 +0000 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2013-02-15 17:29:38 +0000 |
commit | 22bed939d59f60a32fe1cb1da99eb84e36374d20 (patch) | |
tree | 105e46c3fbe726ca1a6489333af93d480b98f0ce /app-editors/gummi | |
parent | Don't show elog messages always (#457596) (diff) | |
download | gentoo-2-22bed939d59f60a32fe1cb1da99eb84e36374d20.tar.gz gentoo-2-22bed939d59f60a32fe1cb1da99eb84e36374d20.tar.bz2 gentoo-2-22bed939d59f60a32fe1cb1da99eb84e36374d20.zip |
Don't show elog messages always (#457596)
(Portage version: 2.1.11.52/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
Diffstat (limited to 'app-editors/gummi')
-rw-r--r-- | app-editors/gummi/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/gummi/gummi-0.6.5.ebuild | 16 |
2 files changed, 14 insertions, 9 deletions
diff --git a/app-editors/gummi/ChangeLog b/app-editors/gummi/ChangeLog index f960173802b8..8099f8fb70fe 100644 --- a/app-editors/gummi/ChangeLog +++ b/app-editors/gummi/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-editors/gummi -# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/gummi/ChangeLog,v 1.44 2012/12/16 14:01:01 ago Exp $ +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/gummi/ChangeLog,v 1.45 2013/02/15 17:29:38 pacho Exp $ + + 15 Feb 2013; Pacho Ramos <pacho@gentoo.org> gummi-0.6.5.ebuild: + Don't show elog messages always (#457596) 16 Dec 2012; Agostino Sarubbo <ago@gentoo.org> gummi-0.6.5.ebuild: Stable for x86, wrt bug #442434 diff --git a/app-editors/gummi/gummi-0.6.5.ebuild b/app-editors/gummi/gummi-0.6.5.ebuild index 98460bf910bc..9f656caa9cc9 100644 --- a/app-editors/gummi/gummi-0.6.5.ebuild +++ b/app-editors/gummi/gummi-0.6.5.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2012 Gentoo Foundation +# Copyright 1999-2013 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/gummi/gummi-0.6.5.ebuild,v 1.3 2012/12/16 14:01:01 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/gummi/gummi-0.6.5.ebuild,v 1.4 2013/02/15 17:29:38 pacho Exp $ EAPI=4 -inherit base eutils +inherit base eutils readme.gentoo DESCRIPTION="Simple LaTeX editor for GTK+" HOMEPAGE="http://gummi.midnightcoding.org" @@ -35,10 +35,12 @@ DOCS=( AUTHORS ChangeLog README ) src_prepare() { strip-linguas ${LANGS} + DOC_CONTENTS="Gummi supports spell-checking through gtkspell. Support for + additional languages can be added by installing myspell-** packages + for your language of choice." } -pkg_postinst() { - elog "Gummi >=0.4.8 supports spell-checking through gtkspell. Support for" - elog "additional languages can be added by installing myspell-** packages" - elog "for your language of choice." +src_install() { + base_src_install + readme.gentoo_create_doc } |