blob: 931617629ded677fd0f29acc9dc2914e944d6ba9 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-irc/ircmap/ircmap-0.99.ebuild,v 1.9 2004/07/24 01:48:22 swegener Exp $
DESCRIPTION="This script connects to the specified IRC server and creates a diagram of the network performing LINKS command."
HOMEPAGE="http://pasky.ji.cz/~pasky/irc/"
SRC_URI="http://pasky.ji.cz/~pasky/irc/${PN}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"
IUSE=""
RDEPEND="virtual/libc
media-gfx/graphviz
dev-lang/perl"
DEPEND="${RDEPEND}
>=sys-apps/sed-4"
S=${WORKDIR}/${PN}
src_compile() {
eval `perl -V:installprivlib`
sed -i \
-e "s:/home/pasky/ircmap:${installprivlib}/ircmap:" \
{ircmapC,ircmapR-aa,ircmapR-gvdot,ircmapR-ircnet,ircmapS}.pl
}
src_install () {
dodoc README
dobin ircmapS.pl ircmapC.pl ircmapR-aa.pl ircmapR-gvdot.pl ircmapR-ircnet.pl
eval `perl -V:installprivlib`
insinto ${D}/${installprivlib}/ircmap
doins IHash.pm
}
pkg_postinst() {
einfo 'Usage:'
einfo 'IRCSERVER="irc.generic.com ircmapS.pl [-options parameters] \'
einfo '| tee /tmp/sendmethisifitdoesntwork \'
einfo '| ircmapC.pl \'
einfo '| tee /tmp/coredump \'
einfo '| ircmapR-aa.pl > ${IRCSERVER}.txt'
einfo ''
einfo 'cat /tmp/coredump \'
einfo '| ircmapR-gvdot.pl \'
einfo '| dot -Tgif -o ${IRCSERVER}.gif'
}
|