diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2009-11-29 22:46:55 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2009-11-29 22:46:55 +0000 |
commit | 364227073e9620efce467086b4e6e505c495ba98 (patch) | |
tree | f473c687b8c8b991eaba588854481178dccbe583 /app-editors | |
parent | Bug #293272: Parallel compile fix for case where no LVM/DM was already presen... (diff) | |
download | gentoo-2-364227073e9620efce467086b4e6e505c495ba98.tar.gz gentoo-2-364227073e9620efce467086b4e6e505c495ba98.tar.bz2 gentoo-2-364227073e9620efce467086b4e6e505c495ba98.zip |
Version bump. Fixes bug #295098.
(Portage version: 2.2_rc53/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/kile/ChangeLog | 8 | ||||
-rw-r--r-- | app-editors/kile/kile-2.1_beta3.ebuild | 44 |
2 files changed, 51 insertions, 1 deletions
diff --git a/app-editors/kile/ChangeLog b/app-editors/kile/ChangeLog index 9a7c12d01ec6..41b1ac28f1ce 100644 --- a/app-editors/kile/ChangeLog +++ b/app-editors/kile/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-editors/kile # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/kile/ChangeLog,v 1.124 2009/11/16 22:14:53 maekke Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/kile/ChangeLog,v 1.125 2009/11/29 22:46:55 scarabeus Exp $ + +*kile-2.1_beta3 (29 Nov 2009) + + 29 Nov 2009; Tomáš Chvátal <scarabeus@gentoo.org> + +kile-2.1_beta3.ebuild: + Version bump. Fixes bug #295098. 16 Nov 2009; Markus Meier <maekke@gentoo.org> kile-2.1_beta2.ebuild: amd64/x86 stable, bug #292808 diff --git a/app-editors/kile/kile-2.1_beta3.ebuild b/app-editors/kile/kile-2.1_beta3.ebuild new file mode 100644 index 000000000000..f97dc1e3b11f --- /dev/null +++ b/app-editors/kile/kile-2.1_beta3.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/kile/kile-2.1_beta3.ebuild,v 1.1 2009/11/29 22:46:55 scarabeus Exp $ + +EAPI=2 +inherit kde4-base + +MY_P=${P/_beta/b} + +DESCRIPTION="A Latex Editor and TeX shell for kde" +HOMEPAGE="http://kile.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~hppa ~x86" +SLOT="4" +IUSE="debug +pdf +png" + +RDEPEND=" + || ( + >=kde-base/okular-${KDE_MINIMAL}[pdf?,ps] + app-text/acroread + ) + virtual/latex-base + virtual/tex-base + pdf? ( + app-text/dvipdfmx + app-text/ghostscript-gpl + ) + png? ( + app-text/dvipng + media-gfx/imagemagick[png] + ) +" + +S=${WORKDIR}/${MY_P} + +src_configure() { + mycmakeargs=" + -DKILE_VERSION=${PF/${PN}-/} + " + + kde4-base_src_configure +} |