blob: d01d3abd991d912a52e648fc3b332e4fac94dad4 (
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
27
28
29
30
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/leafpad/leafpad-0.8.12.ebuild,v 1.2 2008/03/25 15:02:07 armin76 Exp $
inherit eutils
DESCRIPTION="Simple GTK+ Text Editor"
HOMEPAGE="http://tarot.freeshell.org/leafpad/"
SRC_URI="http://savannah.nongnu.org/download/leafpad/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc x86"
IUSE="emacs"
RDEPEND=">=x11-libs/gtk+-2.10"
DEPEND="${RDEPEND}
sys-devel/gettext
>=dev-util/intltool-0.31
>=dev-util/pkgconfig-0.9"
src_compile() {
econf --enable-chooser --enable-print $(use_enable emacs)
emake
}
src_install() {
einstall
dodoc AUTHORS ChangeLog NEWS README
}
|