summaryrefslogtreecommitdiff
blob: e0a66b4382d7e89ec6923cf8653c495f147013a7 (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
# Copyright 2002 Paul Belt
# 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.3 2003/09/11 01:23:41 msterret 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"
RDEPEND="virtual/glibc
	media-gfx/graphviz"
DEPEND="${RDEPEND}"
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'
}