From a2ad1e340e569106cc53327750da4392de0e52f8 Mon Sep 17 00:00:00 2001 From: Leonardo Boshell Date: Wed, 1 Nov 2006 00:17:15 +0000 Subject: New release: 0.5.4 (bug #151767) (Portage version: 2.1.2_rc1) --- app-editors/katoob/ChangeLog | 11 +++++-- app-editors/katoob/files/digest-katoob-0.5.4 | 3 ++ app-editors/katoob/katoob-0.5.4.ebuild | 48 ++++++++++++++++++++++++++++ 3 files changed, 60 insertions(+), 2 deletions(-) create mode 100644 app-editors/katoob/files/digest-katoob-0.5.4 create mode 100644 app-editors/katoob/katoob-0.5.4.ebuild diff --git a/app-editors/katoob/ChangeLog b/app-editors/katoob/ChangeLog index ea8cfa5cbcb4..dc8b7768548f 100644 --- a/app-editors/katoob/ChangeLog +++ b/app-editors/katoob/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-editors/katoob -# Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/katoob/ChangeLog,v 1.13 2005/04/24 10:57:59 hansmi Exp $ +# Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/katoob/ChangeLog,v 1.14 2006/11/01 00:17:15 leonardop Exp $ + +*katoob-0.5.4 (31 Oct 2006) + + 31 Oct 2006; Leonardo Boshell +katoob-0.5.4.ebuild: + New version. Added 'bidi', 'bzip2', 'cups' and 'dbus' USE flags. Updated + dependencies. Original ebuild contributed by + on bug #151767. 24 Apr 2005; Michael Hanselmann katoob-0.3.8.ebuild: Stable on ppc. diff --git a/app-editors/katoob/files/digest-katoob-0.5.4 b/app-editors/katoob/files/digest-katoob-0.5.4 new file mode 100644 index 000000000000..9e5aba6a9a70 --- /dev/null +++ b/app-editors/katoob/files/digest-katoob-0.5.4 @@ -0,0 +1,3 @@ +MD5 d5f5fbcfaebd3d78ebae7a621494310f katoob-0.5.4.tar.gz 403693 +RMD160 ecf665e4211526fc605b6f5beb704858f16098ec katoob-0.5.4.tar.gz 403693 +SHA256 526a2d9b2321e0e0f3fcce394ebbe2a7d51d3757a163c9b5b65c2098692ce30f katoob-0.5.4.tar.gz 403693 diff --git a/app-editors/katoob/katoob-0.5.4.ebuild b/app-editors/katoob/katoob-0.5.4.ebuild new file mode 100644 index 000000000000..9c324b0ea3e1 --- /dev/null +++ b/app-editors/katoob/katoob-0.5.4.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/katoob/katoob-0.5.4.ebuild,v 1.1 2006/11/01 00:17:15 leonardop Exp $ + +inherit eutils + +DESCRIPTION="A light-weight multilingual BiDi aware text editor" +HOMEPAGE="http://foolab.org/projects/katoob" +SRC_URI="ftp://foolab.org/pub/software/${PN}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~ppc ~x86" +IUSE="bidi bzip2 cups dbus debug spell" + +RDEPEND=">=dev-cpp/gtkmm-2.6 + >=dev-libs/glib-2 + spell? ( app-text/aspell ) + bidi? ( dev-libs/fribidi ) + cups? ( + >=net-print/cups-1.1.23 + >=x11-libs/pango-1 ) + bzip2? ( app-arch/bzip2 ) + dbus? ( sys-apps/dbus )" + +DEPEND="${RDEPEND} + >=dev-util/intltool-0.28 + >=dev-util/pkgconfig-0.9" + + +src_compile() { + local myconf="$(use_enable spell aspell) \ + $(use_enable bidi fribidi) \ + $(use_enable cups print) \ + $(use_enable bzip2) \ + $(use_enable dbus) \ + $(use_enable !debug release)" + + econf ${myconf} || die "econf failed" + emake || die "Compilation failed" +} + +src_install() { + make DESTDIR="${D}" install || die "Installation failed" + + dodoc AUTHORS ChangeLog NEWS README THANKS TODO +} + -- cgit v1.2.3-65-gdbad