From b58a87c0e22d42cadba4d481e29c5d1805d5f2de Mon Sep 17 00:00:00 2001 From: Tilman Klar Date: Thu, 12 Dec 2002 17:42:33 +0000 Subject: Initial import. This closes bug #8713. --- net-irc/ircmap/ChangeLog | 10 +++++++ net-irc/ircmap/files/digest-ircmap-0.99 | 1 + net-irc/ircmap/ircmap-0.99.ebuild | 49 +++++++++++++++++++++++++++++++++ 3 files changed, 60 insertions(+) create mode 100644 net-irc/ircmap/ChangeLog create mode 100644 net-irc/ircmap/files/digest-ircmap-0.99 create mode 100644 net-irc/ircmap/ircmap-0.99.ebuild (limited to 'net-irc') diff --git a/net-irc/ircmap/ChangeLog b/net-irc/ircmap/ChangeLog new file mode 100644 index 000000000000..2f9ed0dd2df9 --- /dev/null +++ b/net-irc/ircmap/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-irc/ircmap +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/ircmap/ChangeLog,v 1.1 2002/12/12 17:42:33 phoenix Exp $ + +*ircmap-0.99 (12 Dec 2002) + + 12 Dec 2002; phoen][x ChangeLog, ircmap-0.99.ebuild, + files/ircmap-0.99 : + Initial import. Ebuild submitted by Paul Belt . + This closes bug #8713. diff --git a/net-irc/ircmap/files/digest-ircmap-0.99 b/net-irc/ircmap/files/digest-ircmap-0.99 new file mode 100644 index 000000000000..7c4bce240120 --- /dev/null +++ b/net-irc/ircmap/files/digest-ircmap-0.99 @@ -0,0 +1 @@ +MD5 cfa3830828dd2f82bc4215d9e56daa72 ircmap.tar.gz 27944 diff --git a/net-irc/ircmap/ircmap-0.99.ebuild b/net-irc/ircmap/ircmap-0.99.ebuild new file mode 100644 index 000000000000..e2f4bac03049 --- /dev/null +++ b/net-irc/ircmap/ircmap-0.99.ebuild @@ -0,0 +1,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.1 2002/12/12 17:42:33 phoenix 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' +} -- cgit v1.2.3-65-gdbad