diff options
author | Ben de Groot <yngwin@gentoo.org> | 2008-07-07 23:58:09 +0000 |
---|---|---|
committer | Ben de Groot <yngwin@gentoo.org> | 2008-07-07 23:58:09 +0000 |
commit | ae6f421c0ca760c9860d61ba206745d6c0c8edf3 (patch) | |
tree | 86b31fac214c3f036c131c31b2ee3c5678b7a097 /app-editors | |
parent | Added link for mandatory fortran library. (diff) | |
download | gentoo-2-ae6f421c0ca760c9860d61ba206745d6c0c8edf3.tar.gz gentoo-2-ae6f421c0ca760c9860d61ba206745d6c0c8edf3.tar.bz2 gentoo-2-ae6f421c0ca760c9860d61ba206745d6c0c8edf3.zip |
Version bump
(Portage version: 2.2_rc1/cvs/Linux 2.6.25-hh7 i686)
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/juffed/ChangeLog | 10 | ||||
-rw-r--r-- | app-editors/juffed/juffed-0.3_beta20080705.ebuild | 37 |
2 files changed, 46 insertions, 1 deletions
diff --git a/app-editors/juffed/ChangeLog b/app-editors/juffed/ChangeLog index 2cb4ddd5007c..0e0334776b80 100644 --- a/app-editors/juffed/ChangeLog +++ b/app-editors/juffed/ChangeLog @@ -1,6 +1,14 @@ # ChangeLog for app-editors/juffed # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/juffed/ChangeLog,v 1.1 2008/06/04 12:05:23 yngwin Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/juffed/ChangeLog,v 1.2 2008/07/07 23:58:09 yngwin Exp $ + +*juffed-0.3_beta20080705 (07 Jul 2008) + + 07 Jul 2008; Ben de Groot <yngwin@gentoo.org> + +juffed-0.3_beta20080705.ebuild: + Version bump. This beta2 renamed to date, to prevent it looking like + a downgrade from the previous versioning cockup. Next time I will do + better - promise! *juffed-0.3_beta20080421 (04 Jun 2008) diff --git a/app-editors/juffed/juffed-0.3_beta20080705.ebuild b/app-editors/juffed/juffed-0.3_beta20080705.ebuild new file mode 100644 index 000000000000..dc13c3b4cc81 --- /dev/null +++ b/app-editors/juffed/juffed-0.3_beta20080705.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-editors/juffed/juffed-0.3_beta20080705.ebuild,v 1.1 2008/07/07 23:58:09 yngwin Exp $ + +EAPI=1 +inherit qt4 + +MY_P=${PN}_${PV/_beta20080705/-beta2} + +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}/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +RDEPEND=">=x11-libs/qscintilla-2.1 + || ( >=x11-libs/qt-4.2:4 + x11-libs/qt-gui:4 )" +DEPEND="${RDEPEND}" + +S="${WORKDIR}"/${MY_P} + +src_compile() { + # with econf it chokes on Unrecognized option: --host=... + ./configure --qmake=qmake --prefix=/usr + emake || die "Make failed!" +} + +src_install() { + emake FAKE_ROOT="${D}" install || die "Make install failed!" + dodoc ChangeLog README + rm "${D}"/usr/share/juffed/{COPYING,README} +} + |