blob: 614ad3975e46dab032aac29bcd365e5860cb55bd (
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-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/ninja/ninja-1.5.9_pre14.ebuild,v 1.3 2007/02/19 21:24:33 welp Exp $
S=${WORKDIR}/${P/_*/}
DESCRIPTION="Ninja IRC Client"
HOMEPAGE="http://ninja.qoop.org/"
SRC_URI="ftp://qoop.org/ninja/stable/${P/_/}.tar.gz"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="amd64 ppc ~sparc x86"
IUSE="ncurses ipv6 ssl"
RESTRICT="test"
DEPEND="virtual/libc
ncurses? ( sys-libs/ncurses )
ssl? ( dev-libs/openssl )"
MAKEOPTS="${MAKEOPTS} -j1"
src_compile() {
econf $(use_enable ipv6) || die "econf failed"
emake || die "emake failed"
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
|