diff options
Diffstat (limited to 'app-editors/juffed/juffed-0.10.ebuild')
-rw-r--r-- | app-editors/juffed/juffed-0.10.ebuild | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/app-editors/juffed/juffed-0.10.ebuild b/app-editors/juffed/juffed-0.10.ebuild new file mode 100644 index 000000000000..068d98c47087 --- /dev/null +++ b/app-editors/juffed/juffed-0.10.ebuild @@ -0,0 +1,45 @@ +# Copyright 1999-2015 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit cmake-utils + +DESCRIPTION="QScintilla-based tabbed text editor with syntax highlighting" +HOMEPAGE="http://juffed.com/" +SRC_URI="mirror://sourceforge/${PN}/${P}-1054.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="amd64 ~ppc ~ppc64 x86" +IUSE="debug" + +RDEPEND=" + app-i18n/enca + dev-qt/qtcore:4 + dev-qt/qtgui:4 + dev-qt/qtsingleapplication[qt4(+),X] + x11-libs/qscintilla:= +" +DEPEND="${RDEPEND}" + +DOCS=( ChangeLog README ) + +PATCHES=( + # bug 540554 + "${FILESDIR}/0.10-link-libjuff-against-libenca.patch" +) + +src_prepare() { + cmake-utils_src_prepare + + sed -i -e '/set(CMAKE_CXX_FLAGS/d' CMakeLists.txt || die +} + +src_configure() { + local mycmakeargs=( + -DUSE_SYSTEM_QTSINGLEAPPLICATION=ON + ) + cmake-utils_src_configure +} |