blob: 0fce5108cb429b888751cc38dc63d570d50d653b (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/gtalk/gtalk-0.99.10.ebuild,v 1.3 2004/07/01 22:18:29 eradicator Exp $
inherit elisp
DESCRIPTION="GNU Replacement for talk/ntalk programs"
HOMEPAGE="http://gnutalk.sourceforge.net/"
SRC_URI="http://gnutalk.sourceforge.net/files/${P}.tar.gz"
KEYWORDS="~x86 ~amd64"
LICENSE="GPL-2"
SLOT="0"
DEPEND="virtual/libc
ncurses? ( >=sys-libs/ncurses-5.2 )
gtk? ( =x11-libs/gtk+-1* )
X? ( virtual/x11 )"
IUSE="X gtk ncurses"
src_compile() {
local myconf=""
if use X; then
myconf="$myconf --with-x"
if use gtk; then
myconf="$myconf --with-x-toolkit=gtk"
else
myconf="$myconf --with-x-toolkit=athena"
fi
else
myconf="myconf --without-x"
fi
if use ncurses; then
myconf="$myconf --with-curses=ncurses"
else
myconf="$myconf --with-curses=no"
fi
econf ${myconf} || die
emake lispdir="${SITELISP}" || die "emake failed"
}
src_install() {
make DESTDIR="${D}" lispdir="${SITELISP}" install || \
die "make install failed"
dodoc AUTHORS BUGS ChangeLog EMBEDDED.TXT NEWS README TODO || \
die "dodoc failed"
insinto /usr/lib/X11/app-defaults
doins Gtalk || die "doins failed"
#insinto /etc/xinetd.d
#insopts -m 0644 -o root -g root
#doins "${FILESDIR}/xinetd.d-${PV}/*" || die "doins failed"
}
|