summaryrefslogtreecommitdiff
blob: 55cfce5f8045ffa7f70f9b0c21e4b11e0c94d62b (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-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Tom von Schwerdtner <tvon@etria.org>
# $Header: /var/cvsroot/gentoo-x86/net-irc/irssi/irssi-0.7.98.4.ebuild,v 1.3 2002/04/12 19:04:22 spider Exp $

S=${WORKDIR}/${P}
DESCRIPTION="A modular textUI IRC client with IPv6 support."
SRC_URI="http://irssi.org/files/${P}.tar.bz2"
HOMEPAGE="http://irssi.org"

DEPEND="virtual/glibc
	=dev-libs/glib-1.2*
	sys-libs/ncurses
	perl? ( sys-devel/perl ) 
	nls? ( sys-devel/gettext )"


src_compile() {

	# Note: there is an option to build a GUI for irssi, but according
	# to the website the gui is no longer developed, so that option is
	# not used here.
	
	# Edit these if you like
	myconf="--without-servertest --with-bot --with-proxy --with-ncurses"
	
	if [ -z "`use nls`" ]
	then
		myconf="${myconf} --disable-nls"
	fi
	if [ "`use perl`" ]
	then
		myconf="${myconf} --enable-perl=yes"
	fi
	if [ "`use ipv6`" ]
	then
		myconf="${myconf} --enable-ipv6"
	fi

	./configure \
		--host=${CHOST} \
		--prefix=/usr \
		--infodir=/usr/share/info \
		--mandir=/usr/share/man \
		--sysconfdir=/etc \
		${myconf} || die "./configure failed"

	emake || die
}

src_install () {

	make DESTDIR=${D} \
		docdir=/usr/share/doc/${PF} \
		gnulocaledir=${D}/usr/share/locale \
		install || die

	dodoc AUTHORS ChangeLog README TODO NEWS
}