blob: 695da5dc7c698281940fdba15b397d22f7635884 (
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-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# Author Bart Verwilst <verwilst@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/net-im/naim/naim-0.11.2.ebuild,v 1.2 2002/02/09 11:47:57 verwilst Exp $
S=${WORKDIR}/${P}
SRC_URI="http://dev.n.ml.org/${P}.tar.gz"
DESCRIPTION="An ncurses AOL Instant Messenger."
HOMEPAGE="http://naim.n.ml.org/"
SLOT="0"
DEPEND="virtual/glibc
>=sys-libs/ncurses-5.2"
src_unpack() {
unpack ${P}.tar.gz
}
src_compile() {
cd ${S}
./configure --prefix=/usr --host=${CHOST} || die
emake || die
}
src_install() {
make DESTDIR=${D} install || die
}
|