diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /net-irc/ircmap | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.bz2 gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.zip |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'net-irc/ircmap')
-rw-r--r-- | net-irc/ircmap/Manifest | 1 | ||||
-rw-r--r-- | net-irc/ircmap/ircmap-0.99.ebuild | 50 | ||||
-rw-r--r-- | net-irc/ircmap/metadata.xml | 5 |
3 files changed, 56 insertions, 0 deletions
diff --git a/net-irc/ircmap/Manifest b/net-irc/ircmap/Manifest new file mode 100644 index 000000000000..67dfa31a8008 --- /dev/null +++ b/net-irc/ircmap/Manifest @@ -0,0 +1 @@ +DIST ircmap.tar.gz 27944 SHA256 01215ec0871a05f74ecf9141e98a6fa9e6e5efd7de2244b889059a8d02a1e1ec SHA512 52ce62d7846e5e50525800af86b4296d427da21d129f68b83cd30daa75fdd9fe78c6615771e729c4ad5f8afe75f20b1cab0b6d4b01be4a7c2889524676b60ac9 WHIRLPOOL 61dd6bea1a864383f1a3fd6573a5bf7351929dc3bc50142bf95caeb19f33ddf80bf58f117468fdadda980d8a86e5b006a43e59c8600a2a7d77cf9d808aa5e359 diff --git a/net-irc/ircmap/ircmap-0.99.ebuild b/net-irc/ircmap/ircmap-0.99.ebuild new file mode 100644 index 000000000000..835d41b0ac7e --- /dev/null +++ b/net-irc/ircmap/ircmap-0.99.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +DESCRIPTION="Scripts to treate diagrams of IRC networks using the LINKS command" +HOMEPAGE="http://pasky.or.cz/~pasky/irc/" +SRC_URI="http://pasky.ji.cz/~pasky/irc/${PN}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86" +IUSE="" + +DEPEND="dev-lang/perl" +RDEPEND="${RDEPEND} + media-gfx/graphviz" +DEPEND="${DEPEND} + >=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 /"${installprivlib}"/ircmap + doins IHash.pm +} + +pkg_postinst() { + elog 'Usage:' + elog 'IRCSERVER="irc.generic.com ircmapS.pl [-options parameters] \' + elog '| tee /tmp/sendmethisifitdoesntwork \' + elog '| ircmapC.pl \' + elog '| tee /tmp/coredump \' + elog '| ircmapR-aa.pl > ${IRCSERVER}.txt' + elog '' + elog 'cat /tmp/coredump \' + elog '| ircmapR-gvdot.pl \' + elog '| dot -Tgif -o ${IRCSERVER}.gif' +} diff --git a/net-irc/ircmap/metadata.xml b/net-irc/ircmap/metadata.xml new file mode 100644 index 000000000000..6ef15e900f17 --- /dev/null +++ b/net-irc/ircmap/metadata.xml @@ -0,0 +1,5 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>net-irc</herd> +</pkgmetadata> |