diff options
author | Tilman Klar <phoenix@gentoo.org> | 2002-12-12 17:42:33 +0000 |
---|---|---|
committer | Tilman Klar <phoenix@gentoo.org> | 2002-12-12 17:42:33 +0000 |
commit | 1df8488bb36eb251a760fafcaf768f0106e4b981 (patch) | |
tree | 07c8b6ec57d5969743381095d85da920bddc83ed /net-irc/ircmap | |
parent | version bump (diff) | |
download | gentoo-2-1df8488bb36eb251a760fafcaf768f0106e4b981.tar.gz gentoo-2-1df8488bb36eb251a760fafcaf768f0106e4b981.tar.bz2 gentoo-2-1df8488bb36eb251a760fafcaf768f0106e4b981.zip |
Initial import. This closes bug #8713.
Diffstat (limited to 'net-irc/ircmap')
-rw-r--r-- | net-irc/ircmap/ChangeLog | 10 | ||||
-rw-r--r-- | net-irc/ircmap/files/digest-ircmap-0.99 | 1 | ||||
-rw-r--r-- | net-irc/ircmap/ircmap-0.99.ebuild | 49 |
3 files changed, 60 insertions, 0 deletions
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 <phoenix@gentoo.org> ChangeLog, ircmap-0.99.ebuild, + files/ircmap-0.99 : + Initial import. Ebuild submitted by Paul Belt <gaarde@yahoo.com>. + 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' +} |