diff options
author | Markos Chandras <hwoarang@gentoo.org> | 2010-09-23 21:27:30 +0000 |
---|---|---|
committer | Markos Chandras <hwoarang@gentoo.org> | 2010-09-23 21:27:30 +0000 |
commit | 5297ae19b0dcce9ee43537d65917478280c1ac1b (patch) | |
tree | 6b52d78edbc5d951630336e80e02734e4ad4ae55 /app-editors | |
parent | arm stable, bug #334165 (diff) | |
download | gentoo-2-5297ae19b0dcce9ee43537d65917478280c1ac1b.tar.gz gentoo-2-5297ae19b0dcce9ee43537d65917478280c1ac1b.tar.bz2 gentoo-2-5297ae19b0dcce9ee43537d65917478280c1ac1b.zip |
Version bump thats to Alexander van der Mey
(Portage version: 2.2_rc84/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/gummi/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/gummi/gummi-0.5.0.ebuild | 49 |
2 files changed, 55 insertions, 1 deletions
diff --git a/app-editors/gummi/ChangeLog b/app-editors/gummi/ChangeLog index e1b4b8089414..bb2be33cff6e 100644 --- a/app-editors/gummi/ChangeLog +++ b/app-editors/gummi/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/gummi # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/gummi/ChangeLog,v 1.2 2010/09/23 16:54:55 hwoarang Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/gummi/ChangeLog,v 1.3 2010/09/23 21:27:30 hwoarang Exp $ + +*gummi-0.5.0 (23 Sep 2010) + + 23 Sep 2010; Markos Chandras <hwoarang@gentoo.org> +gummi-0.5.0.ebuild: + Version bump thats to Alexander van der Mey 23 Sep 2010; Markos Chandras <hwoarang@gentoo.org> metadata.xml: Add Alexander van der Mey on metadata.xml as he is the upstream developer diff --git a/app-editors/gummi/gummi-0.5.0.ebuild b/app-editors/gummi/gummi-0.5.0.ebuild new file mode 100644 index 000000000000..a26c2deb4516 --- /dev/null +++ b/app-editors/gummi/gummi-0.5.0.ebuild @@ -0,0 +1,49 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/gummi/gummi-0.5.0.ebuild,v 1.1 2010/09/23 21:27:30 hwoarang Exp $ + +EAPI=2 +inherit base eutils + +DESCRIPTION="Simple LaTeX editor for GTK+ users" +HOMEPAGE="http://gummi.midnightcoding.org" +SRC_URI="http://dev.midnightcoding.org/redmine/attachments/download/62/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +LANGS="ca da de fr el it nl pt_BR ru zh_TW" + +for X in ${LANGS} ; do + IUSE="${IUSE} linguas_${X}" +done + +RDEPEND=">=dev-libs/glib-2.16:2 + dev-texlive/texlive-latex + dev-texlive/texlive-latexextra + >=x11-libs/gtk+-2.16:2" +DEPEND="${RDEPEND} + app-text/gtkspell + app-text/poppler + x11-libs/gtksourceview:2.0 + x11-libs/pango" + +DOCS=( AUTHORS ChangeLog README ) + +src_prepare() { + # fix linguas + cd "${S}"/po + mv ca_ES.po ca.po || die + mv gr_EL.po el.po || die + mv it_IT.po it.po || die + mv nl_NL.po nl.po || die + strip-linguas ${LANGS} +} + +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." +} |