blob: 6e85c32db0217a78ec6c120c9e3635d4446b9c51 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.2 2009/11/08 20:39:44 nixnut 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
}
|