diff options
author | Carsten Lohrke <carlo@gentoo.org> | 2006-08-27 15:27:31 +0000 |
---|---|---|
committer | Carsten Lohrke <carlo@gentoo.org> | 2006-08-27 15:27:31 +0000 |
commit | 41838f43599749451e422cedb7574194a8949623 (patch) | |
tree | 91c3a9026cb57d0d2a99e1649e2ab94d18afbbfb /app-editors | |
parent | Version bump. (diff) | |
download | gentoo-2-41838f43599749451e422cedb7574194a8949623.tar.gz gentoo-2-41838f43599749451e422cedb7574194a8949623.tar.bz2 gentoo-2-41838f43599749451e422cedb7574194a8949623.zip |
Version bump.
(Portage version: 2.1.1_rc1)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/kile/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/kile/files/digest-kile-1.9.2 | 3 | ||||
-rw-r--r-- | app-editors/kile/kile-1.9.2.ebuild | 45 |
3 files changed, 54 insertions, 1 deletions
diff --git a/app-editors/kile/ChangeLog b/app-editors/kile/ChangeLog index eee240cdf8e5..4af0e33671a1 100644 --- a/app-editors/kile/ChangeLog +++ b/app-editors/kile/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/kile # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/kile/ChangeLog,v 1.72 2006/06/25 19:21:15 cryos Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/kile/ChangeLog,v 1.73 2006/08/27 15:27:31 carlo Exp $ + +*kile-1.9.2 (27 Aug 2006) + + 27 Aug 2006; Carsten Lohrke <carlo@gentoo.org> +kile-1.9.2.ebuild: + Version bump. *kile-1.9.1 (24 Jun 2006) diff --git a/app-editors/kile/files/digest-kile-1.9.2 b/app-editors/kile/files/digest-kile-1.9.2 new file mode 100644 index 000000000000..1f96630b8cf3 --- /dev/null +++ b/app-editors/kile/files/digest-kile-1.9.2 @@ -0,0 +1,3 @@ +MD5 2f4fa752595c9011fd9292d7ff99d124 kile-1.9.2.tar.bz2 5038779 +RMD160 d3b7245412d57ce38275348fc67b6f8b875a2976 kile-1.9.2.tar.bz2 5038779 +SHA256 292bc8a5d868faf70f7e0b3c868da30ad3ad77b3355ca08389e60e1339175c00 kile-1.9.2.tar.bz2 5038779 diff --git a/app-editors/kile/kile-1.9.2.ebuild b/app-editors/kile/kile-1.9.2.ebuild new file mode 100644 index 000000000000..c881fa25c1ef --- /dev/null +++ b/app-editors/kile/kile-1.9.2.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/kile/kile-1.9.2.ebuild,v 1.1 2006/08/27 15:27:31 carlo Exp $ + +inherit kde + +MY_P="${P/_rc/rc}" +S="${WORKDIR}/${MY_P}" + +DESCRIPTION="A Latex Editor and TeX shell for kde" +HOMEPAGE="http://kile.sourceforge.net/" +SRC_URI="mirror://sourceforge/kile/${MY_P}.tar.bz2" +LICENSE="GPL-2" + +SLOT=0 +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="kde" + +RDEPEND="dev-lang/perl + virtual/tetex + dev-tex/latex2html + kde? ( || ( ( kde-base/kpdf + kde-base/kghostview + kde-base/kdvi + kde-base/kviewshell ) + kde-base/kdegraphics ) )" + +need-kde 3.2 + +LANGS="br ca cs cy da de el en_GB es et eu fi fr ga gl hi hu is it ja lt mt nb +nl nn pa pl pt pt_BR ro ru rw sk sr sr@Latn sv ta tr zh_CN" +for lang in ${LANGS}; do + IUSE="${IUSE} linguas_${lang}" +done + +src_unpack() { + kde_src_unpack + + if [[ -n ${LINGUAS} ]]; then + MAKE_TRANSL=$(echo $(echo "${LINGUAS} ${LANGS}" | fmt -w 1 | sort | uniq -d)) + einfo "Building translations for: ${MAKE_TRANSL}" + sed -i -e "s:^SUBDIRS.*=.*:SUBDIRS = ${MAKE_TRANSL}:" ${S}/translations/Makefile.am || die "sed for locale failed" + rm -f ${S}/configure + fi +} |