blob: 7123155e822e427b0e6ff72cfc11d2273b74365a (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/zoinks/zoinks-0.3.8-r1.ebuild,v 1.1 2005/01/05 12:24:46 genone 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="x86 ppc ~amd64"
IUSE="nls imlib"
DEPEND="nls? ( sys-devel/gettext )
imlib? ( media-libs/imlib )
virtual/x11"
src_compile() {
epatch ${FILESDIR}/xorg-library-configure.patch
econf \
`use_enable nls` \
`use_enable imlib` \
|| die
emake || die
}
src_install() {
make DESTDIR="${D}" install || die
dodoc README INSTALL AUTHORS NEWS ChangeLog
}
|