blob: 36574646a52eb9c741fa55d87f7dec5d6cfc18cf (
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-im/silc-plugin/silc-plugin-1.0.1-r5.ebuild,v 1.4 2006/10/26 19:47:24 ticho Exp $
inherit eutils perl-module
IRSSI_PV=0.8.9
DESCRIPTION="A SILC plugin for Irssi"
HOMEPAGE="http://penguin-breeder.org/silc/"
SRC_URI="http://irssi.org/files/irssi-${IRSSI_PV}.tar.bz2
http://silcnet.org/download/client/sources/silc-client-${PV}.tar.gz
http://penguin-breeder.org/silc/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="debug"
# All necessary dependencies are pulled in by irssi.
DEPEND="virtual/libc
=dev-libs/glib-1.2*
www-client/lynx" # this is for .html -> .txt docs convert
RDEPEND=">=net-irc/irssi-${IRSSI_PV}
>=dev-perl/MIME-tools-5.413
dev-perl/File-MMagic
dev-perl/MailTools"
S_SILC="${S}/../silc-client-${PV}"
S_IRSSI="${S}/../irssi-${IRSSI_PV}"
src_compile() {
echo
einfo "Preparing silc-client\n"
cd ${S_SILC}
if has_version ">=net-irc/irssi-0.8.10_rc1" ; then
sed -i -e "s:\"term_type\":\"term_charset\":" \
irssi/src/silc/core/silc-servers.c
sed -i -e "s:\"term_type\":\"term_charset\":" \
irssi/src/fe-text/term.c
fi
local myconf
myconf="--without-libtoolfix --enable-static \
--with-helpdir=${D}/usr/share/irssi/help/silc/"
if use debug ; then
myconf="${myconf} --enable-debug"
else
myconf="${myconf} --disable-debug"
fi
if use amd64; then
myconf="${myconf} --with-pic"
fi
econf ${myconf} || die "configure failed"
( MAKEOPTS="" emake -C lib ) || die "silc-client's lib compilation failed"
echo
einfo "Patching irssi source for silc-plugin\n"
cd ${S}
epatch ${FILESDIR}/${PV}-branch-update.patch || die "${PV}-branch-update.patch failed"
emake patch IRSSI=${S_IRSSI} SILC=${S_SILC} || die "patching irssi sources failed"
cd ${S_IRSSI}
# this tiny patch fixes a compile-time error (bug #67255) - ticho
epatch ${FILESDIR}/${PV}-gcc34.patch || die "${PV}-gcc34.patch failed"
echo
einfo "Configuring irssi\n"
econf --sysconfdir=/etc || die "irssi configure failed"
echo
einfo "Compiling silc-plugin\n"
emake -C src/perl || die "irssi's src/perl compilation failed"
emake -C src/fe-common/silc || die "irssi's src/fe-common/silc compilation failed"
emake -C src/silc/core || die "irssi's src/silc/core compilation failed"
}
src_install() {
cd ${S_IRSSI}
make -C src/perl/silc DESTDIR=${D} install || die "irssi's src/perl/silc installation failed"
make -C src/fe-common/silc DESTDIR=${D} install || die "irssi's src/fe-common/silc installation failed"
make -C src/silc/core install DESTDIR=${D} install || die "irssi's src/silc/core installation failed"
cd ${S_SILC}
make -C irssi/docs/help install || die "silc-client's helpfiles installation failed"
cd ${S}
insinto /usr/share/irssi/scripts
doins scripts/*
insinto /usr/share/irssi
doins default.theme
dodoc AUTHORS COPYING README USAGE
fixlocalpod
}
pkg_postinst() {
einfo "You can load the plugin with following command in Irssi:"
einfo
einfo "\t/LOAD silc"
einfo
einfo "It will automatically generate a new key pair for you. You will be asked to"
einfo "enter a passphrase for this keypair twice. If you leave the passphrase"
einfo "empty, your key will not be stored encrypted."
einfo
einfo "To make full use of silc-plugin, you should load the following perl scripts"
einfo "into irssi:"
einfo
einfo "\t/SCRIPT LOAD silc"
einfo "\t/SCRIPT LOAD silc-mime"
einfo
einfo "To connect to the SILCNet, you can use following command in Irssi:"
einfo
einfo "\t/CONNECT -silcnet SILCNet silc.silcnet.org"
einfo
einfo "Have fun."
}
|