blob: 32b6e55df1b7ede11fdb27f68e72ba26bdff5682 (
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
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/zoinks/zoinks-0.4.0.ebuild,v 1.6 2007/07/22 09:01:03 calchan Exp $
inherit eutils
DESCRIPTION="programmer's text editor and development environment"
HOMEPAGE="http://zoinks.mikelockwood.com/"
SRC_URI="http://zoinks.mikelockwood.com/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc x86"
IUSE="nls imlib"
DEPEND="nls? ( sys-devel/gettext )
imlib? ( media-libs/imlib )
x11-libs/libX11
x11-libs/libXpm
x11-libs/libXext
x11-libs/libXt"
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-gcc-4.1-fix.diff
}
src_compile() {
econf \
`use_enable nls` \
`use_enable imlib` \
|| die
emake || die
}
src_install() {
make DESTDIR="${D}" install || die
dodoc README INSTALL AUTHORS NEWS ChangeLog
}
|