diff options
-rw-r--r-- | app-editors/juffed/ChangeLog | 7 | ||||
-rw-r--r-- | app-editors/juffed/juffed-0.6.1.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/app-editors/juffed/ChangeLog b/app-editors/juffed/ChangeLog index f34d1bd61335..ba7715907359 100644 --- a/app-editors/juffed/ChangeLog +++ b/app-editors/juffed/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-editors/juffed # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/juffed/ChangeLog,v 1.9 2009/03/23 23:13:27 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/juffed/ChangeLog,v 1.10 2009/04/25 23:59:34 patrick Exp $ + +*juffed-0.6.1 (25 Apr 2009) + + 25 Apr 2009; Patrick Lauer <patrick@gentoo.org> +juffed-0.6.1.ebuild: + Bump to 0.6.1, fixes #267430 *juffed-0.5_beta1 (23 Mar 2009) diff --git a/app-editors/juffed/juffed-0.6.1.ebuild b/app-editors/juffed/juffed-0.6.1.ebuild new file mode 100644 index 000000000000..07ad5e2d3bb5 --- /dev/null +++ b/app-editors/juffed/juffed-0.6.1.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/juffed/juffed-0.6.1.ebuild,v 1.1 2009/04/25 23:59:34 patrick Exp $ + +EAPI=2 +inherit cmake-utils + +DESCRIPTION="QScintilla-based tabbed text editor with syntax highlighting" +HOMEPAGE="http://www.qt-apps.org/content/show.php/JuffEd?content=59940" +SRC_URI="mirror://sourceforge/${PN}/${P/_/-}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="debug" + +RDEPEND="x11-libs/qscintilla[qt4] + x11-libs/qt-gui:4" +DEPEND="${RDEPEND}" + +S="${WORKDIR}"/${P/_/-} + +src_install() { + cmake-utils_src_install + dodoc ChangeLog README +} |