blob: 13d76037e55f0a9852e257ff17587202ea7145b5 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/naim/naim-0.11.5.4.ebuild,v 1.4 2003/03/20 13:50:45 seemant Exp $
VA="`echo ${PV}|sed -e 's:^\([0-9]*\)\..*$:\1:'`"
VB="`echo ${PV}|sed -e 's:^[0-9]*\.\([0-9]*\)\..*$:\1:'`"
FOLDER="${P}"
SNAP=""
MY_P=${P/_/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="An ncurses AOL Instant Messenger."
SRC_URI="http://128.113.139.111/~n/.${PN}_archive/${VA}/${VB}/${FOLDER}${SNAP}.tar.gz"
HOMEPAGE="http://site.rpi-acm.org/info/naim/"
#P="`echo ${P}|sed -e 's:_.*$::'`"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~x86 ~ppc ~alpha"
DEPEND=">=sys-libs/ncurses-5.2
virtual/glibc"
src_compile() {
local myconf
myconf="--with-gnu-ld --enable-detach"
use static && myconf="${myconf} --enable-static=yes"
econf ${myconf} || die "configure failed"
emake || die "make failed"
}
src_install() {
dobin src/naim
doman naim.1
dodoc AUTHORS BUGS ChangeLog FAQ NEWS README doc/*
insinto /usr/share/${P}
newins contrib/README.aimconvert README.aimconvert
newins contrib/aimconvert.tcl aimconvert.tcl
newins contrib/extractbuddy.sh extractbuddy.sh
newins contrib/sendim.sh sendim.sh
newins src/cmplhlp2.sh cmplhlp2.sh
newins src/cmplhelp.sh cmplhelp.sh
newins src/cmplsample.sh cmplsample.sh
newins src/genkeys.sh genkeys.sh
insinto /usr/include/${PN}
newins include/modutil.h modutil.h
newins include/naim.h naim.h
newins include/config.h config.h
dodir /usr/share/doc/naim
insinto /usr/share/doc/naim
doins ${S}/src/{commands,keyboard}.txt
doins ${S}/doc/COLORS ${S}/FAQ
}
|