blob: b08deb963cfb7a52825c066f8dce91460200a508 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/naim/naim-0.11.8.3.2.ebuild,v 1.1 2009/09/23 09:43:57 ssuominen Exp $
EAPI=2
DESCRIPTION="An ncurses based AOL Instant Messenger"
HOMEPAGE="http://naim.n.ml.org"
SRC_URI="http://naim.googlecode.com/files/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug screen"
RDEPEND="sys-libs/ncurses
screen? ( app-misc/screen )"
DEPEND="${RDEPEND}"
MAKEOPTS="${MAKEOPTS} -j1"
src_configure() {
local myconf="--disable-dnsupdate"
use debug && myconf="${myconf} --enable-debug"
use screen && myconf="${myconf} --enable-detach"
econf \
--with-pkgdocdir=/usr/share/doc/${PF} \
${myconf}
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc AUTHORS BUGS ChangeLog FAQ NEWS README doc/*.hlp
}
|