diff options
author | Sven Wegener <swegener@gentoo.org> | 2004-07-24 01:48:22 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2004-07-24 01:48:22 +0000 |
commit | a93672188ba9b09d6b8f7b8969f338b43172aed3 (patch) | |
tree | c334d7f329234fb355ade20b2a425c6897959614 /net-irc/ircmap | |
parent | Tidied the ebuild. (diff) | |
download | historical-a93672188ba9b09d6b8f7b8969f338b43172aed3.tar.gz historical-a93672188ba9b09d6b8f7b8969f338b43172aed3.tar.bz2 historical-a93672188ba9b09d6b8f7b8969f338b43172aed3.zip |
Tidied the ebuild.
Diffstat (limited to 'net-irc/ircmap')
-rw-r--r-- | net-irc/ircmap/ChangeLog | 5 | ||||
-rw-r--r-- | net-irc/ircmap/Manifest | 14 | ||||
-rw-r--r-- | net-irc/ircmap/ircmap-0.99.ebuild | 36 |
3 files changed, 35 insertions, 20 deletions
diff --git a/net-irc/ircmap/ChangeLog b/net-irc/ircmap/ChangeLog index 5e5958a8b36c..48786e89c1cd 100644 --- a/net-irc/ircmap/ChangeLog +++ b/net-irc/ircmap/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-irc/ircmap # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/ircmap/ChangeLog,v 1.6 2004/07/01 22:22:06 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/ircmap/ChangeLog,v 1.7 2004/07/24 01:48:22 swegener Exp $ + + 24 Jul 2004; Sven Wegener <swegener@gentoo.org> ircmap-0.99.ebuild: + Tidied the ebuild. 01 Jul 2004; Jeremy Huddleston <eradicator@gentoo.org> ircmap-0.99.ebuild: virtual/glibc -> virtual/libc diff --git a/net-irc/ircmap/Manifest b/net-irc/ircmap/Manifest index dfc92704a744..c1bbc9008b28 100644 --- a/net-irc/ircmap/Manifest +++ b/net-irc/ircmap/Manifest @@ -1,4 +1,14 @@ -MD5 6fa69bc87628b207d6de1f1578b389b6 ChangeLog 727 -MD5 9b57ba06889b3dbc443b01bf0707f518 ircmap-0.99.ebuild 1412 +-----BEGIN PGP SIGNED MESSAGE----- +Hash: SHA1 + +MD5 cbf1ee2cb152952545fdb63bbc07891e ChangeLog 817 +MD5 850eae67d55a170eb1dd467cc3b48856 ircmap-0.99.ebuild 1348 MD5 44c39c6ad372a8e5a5e7ee3311f703a7 metadata.xml 160 MD5 d17873231bc2757495c032cf2b08a946 files/digest-ircmap-0.99 57 +-----BEGIN PGP SIGNATURE----- +Version: GnuPG v1.2.4 (GNU/Linux) + +iD8DBQFBAcAxAXomK8S72HoRAmuLAJ0RDQ2vOJxPLXnT5/27rNyZRtar0wCeOvq9 +oZUYor31ajMharL0+5ln0Z8= +=VY9O +-----END PGP SIGNATURE----- diff --git a/net-irc/ircmap/ircmap-0.99.ebuild b/net-irc/ircmap/ircmap-0.99.ebuild index d0e1f38b27f2..931617629ded 100644 --- a/net-irc/ircmap/ircmap-0.99.ebuild +++ b/net-irc/ircmap/ircmap-0.99.ebuild @@ -1,37 +1,39 @@ # Copyright 1999-2004 Gentoo Foundation # 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.8 2004/07/01 22:22:06 eradicator Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/ircmap/ircmap-0.99.ebuild,v 1.9 2004/07/24 01:48:22 swegener Exp $ -IUSE="" - -DESCRIPTION="This script connects to the specified IRC server and creates a -diagram of the network performing LINKS command." +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/libc - media-gfx/graphviz" +IUSE="" + +RDEPEND="virtual/libc + media-gfx/graphviz + dev-lang/perl" +DEPEND="${RDEPEND} + >=sys-apps/sed-4" + 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 -} + 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 - 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/ + eval `perl -V:installprivlib` + + insinto ${D}/${installprivlib}/ircmap + doins IHash.pm } pkg_postinst() { |