diff options
author | Sven Wegener <swegener@gentoo.org> | 2005-08-19 15:28:54 +0000 |
---|---|---|
committer | Sven Wegener <swegener@gentoo.org> | 2005-08-19 15:28:54 +0000 |
commit | 7d42f16270b287c249ecd6a3aee6beec58825c2f (patch) | |
tree | 6e732e88dc2accc7a91a210220156e730d85e844 /net-irc/pisg | |
parent | keyworded ~amd64 (diff) | |
download | gentoo-2-7d42f16270b287c249ecd6a3aee6beec58825c2f.tar.gz gentoo-2-7d42f16270b287c249ecd6a3aee6beec58825c2f.tar.bz2 gentoo-2-7d42f16270b287c249ecd6a3aee6beec58825c2f.zip |
Version bump.
(Portage version: 2.0.51.22-r2)
Diffstat (limited to 'net-irc/pisg')
-rw-r--r-- | net-irc/pisg/ChangeLog | 7 | ||||
-rw-r--r-- | net-irc/pisg/Manifest | 12 | ||||
-rw-r--r-- | net-irc/pisg/files/digest-pisg-0.67 | 1 | ||||
-rw-r--r-- | net-irc/pisg/pisg-0.67.ebuild | 52 |
4 files changed, 61 insertions, 11 deletions
diff --git a/net-irc/pisg/ChangeLog b/net-irc/pisg/ChangeLog index 2b9f085b77bc..97a757404887 100644 --- a/net-irc/pisg/ChangeLog +++ b/net-irc/pisg/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-irc/pisg # Copyright 2000-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-irc/pisg/ChangeLog,v 1.40 2005/07/07 17:17:29 swegener Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-irc/pisg/ChangeLog,v 1.41 2005/08/19 15:28:54 swegener Exp $ + +*pisg-0.67 (19 Aug 2005) + + 19 Aug 2005; Sven Wegener <swegener@gentoo.org> +pisg-0.67.ebuild: + Version bump. 07 Jul 2005; Sven Wegener <swegener@gentoo.org> -files/0.56-network-option-fix.patch, -pisg-0.65.ebuild: diff --git a/net-irc/pisg/Manifest b/net-irc/pisg/Manifest index aafcf77bfa9c..9ce85549bd3f 100644 --- a/net-irc/pisg/Manifest +++ b/net-irc/pisg/Manifest @@ -1,14 +1,6 @@ ------BEGIN PGP SIGNED MESSAGE----- -Hash: SHA1 - MD5 7b87ecff49c55c6f16aa179c22f833b9 ChangeLog 5405 MD5 9eca5760bc6d3ef523ad2ab2105057cf files/digest-pisg-0.66 61 +MD5 8440de9590c3152ca4805125cec2fdf7 files/digest-pisg-0.67 61 MD5 44c39c6ad372a8e5a5e7ee3311f703a7 metadata.xml 160 MD5 ced3de30422c6414d0838a684929509b pisg-0.66.ebuild 1227 ------BEGIN PGP SIGNATURE----- -Version: GnuPG v1.4.1 (GNU/Linux) - -iD8DBQFC7TiVI1lqEGTUzyQRAi+1AJ9yaKWlSYjvppZtgMFK5IH8oD3bpwCgv4r4 -1vnaBQuDZFKymIGG+Y4I9J4= -=18ix ------END PGP SIGNATURE----- +MD5 c81f31112ee2c6b8483c552423505f36 pisg-0.67.ebuild 1229 diff --git a/net-irc/pisg/files/digest-pisg-0.67 b/net-irc/pisg/files/digest-pisg-0.67 new file mode 100644 index 000000000000..bb657f308ef9 --- /dev/null +++ b/net-irc/pisg/files/digest-pisg-0.67 @@ -0,0 +1 @@ +MD5 56b13c20c154a15b698dbd73f9002647 pisg-0.67.tar.gz 220321 diff --git a/net-irc/pisg/pisg-0.67.ebuild b/net-irc/pisg/pisg-0.67.ebuild new file mode 100644 index 000000000000..6910e8b2e2e4 --- /dev/null +++ b/net-irc/pisg/pisg-0.67.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-irc/pisg/pisg-0.67.ebuild,v 1.1 2005/08/19 15:28:54 swegener Exp $ + +DESCRIPTION="Perl IRC Statistics Generator" +HOMEPAGE="http://pisg.sourceforge.net/" +SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~amd64" + +IUSE="" + +RDEPEND="dev-lang/perl + dev-perl/Text-Iconv" +DEPEND="dev-lang/perl + >=sys-apps/sed-4" + +src_unpack() { + unpack ${A} + cd "${S}" + + sed -i \ + -e 's!lang\.txt!/usr/share/pisg/lang.txt!' \ + -e 's!layout/!/usr/share/pisg/layout/!' \ + modules/Pisg.pm \ + || die "sed failed" +} + +src_install () { + eval $(perl -V:installvendorlib) + + dobin pisg || die "dobin failed" + + insinto "${installvendorlib}" + doins -r modules/. || die "doins failed" + + insinto /usr/share/pisg + doins -r gfx layout lang.txt || die "doins failed" + + dodoc \ + docs/{CREDITS,Changelog,FORMATS,pisg-doc.txt} \ + docs/dev/API pisg.cfg README || die "dodoc failed" + doman docs/pisg.1 || die "doman failed" + dohtml docs/pisg-doc.html || die "dohtml failed" +} + +pkg_postinst() { + einfo + einfo "The pisg images have been installed in /usr/share/pisg/gfx" + einfo +} |