blob: d8fb302688c1afcbb80c73e148abfea9f03b46d3 (
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
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# 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.6 2004/03/23 19:05:33 mholzer Exp $
IUSE=""
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"
DEPEND="virtual/glibc
media-gfx/graphviz"
S=${WORKDIR}/${PN}
src_compile() {
for myfile in ircmapC ircmapR-aa ircmapR-gvdot ircmapR-ircnet ircmapS
do
mv ${myfile}.pl ${myfile}.unpatched
sed -e 's!/home/pasky/ircmap!/usr/lib/perl5/site_perl/5.6.1/ircmap!' \
${myfile}.unpatched > ${myfile}.pl
rm ${myfile}.unpatched
done
}
src_install () {
dodoc README
dobin ircmapS.pl ircmapC.pl ircmapR-aa.pl ircmapR-gvdot.pl ircmapR-ircnet.pl
mkdir -p ${D}/usr/lib/perl5/site_perl/5.6.1/ircmap
cp IHash.pm ${D}/usr/lib/perl5/site_perl/5.6.1/ircmap/
}
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'
}
|