summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPeter Weller <welp@gentoo.org>2007-04-10 17:19:17 +0000
committerPeter Weller <welp@gentoo.org>2007-04-10 17:19:17 +0000
commitec4e7d6f2d2538e60e5553cc110bd71dd9c1f5d2 (patch)
treea2834412963557704f497f28f5660159212514fc /net-irc/pisg
parentStable on sparc wrt #173958 (diff)
downloadgentoo-2-ec4e7d6f2d2538e60e5553cc110bd71dd9c1f5d2.tar.gz
gentoo-2-ec4e7d6f2d2538e60e5553cc110bd71dd9c1f5d2.tar.bz2
gentoo-2-ec4e7d6f2d2538e60e5553cc110bd71dd9c1f5d2.zip
Bumped to 0.71
(Portage version: 2.1.2.3)
Diffstat (limited to 'net-irc/pisg')
-rw-r--r--net-irc/pisg/ChangeLog7
-rw-r--r--net-irc/pisg/files/digest-pisg-0.713
-rw-r--r--net-irc/pisg/pisg-0.71.ebuild55
3 files changed, 64 insertions, 1 deletions
diff --git a/net-irc/pisg/ChangeLog b/net-irc/pisg/ChangeLog
index a4c7edbd064d..53848df87426 100644
--- a/net-irc/pisg/ChangeLog
+++ b/net-irc/pisg/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-irc/pisg
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/pisg/ChangeLog,v 1.50 2007/02/19 20:56:48 welp Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/pisg/ChangeLog,v 1.51 2007/04/10 17:19:17 welp Exp $
+
+*pisg-0.71 (10 Apr 2007)
+
+ 10 Apr 2007; Peter Weller <welp@gentoo.org> +pisg-0.71.ebuild:
+ Bumped to 0.71
19 Feb 2007; <welp@gentoo.org> pisg-0.70.ebuild:
Stable on amd64
diff --git a/net-irc/pisg/files/digest-pisg-0.71 b/net-irc/pisg/files/digest-pisg-0.71
new file mode 100644
index 000000000000..d03699f67504
--- /dev/null
+++ b/net-irc/pisg/files/digest-pisg-0.71
@@ -0,0 +1,3 @@
+MD5 bfe947b734d8e11bd56c3b252fe77063 pisg-0.71.tar.gz 233919
+RMD160 48b5f8f47b225951950873f37b480f279ec516e2 pisg-0.71.tar.gz 233919
+SHA256 a6c6b49baed4d2602070f3d85040acb83cb607b812c4776f2db4ad367d40b292 pisg-0.71.tar.gz 233919
diff --git a/net-irc/pisg/pisg-0.71.ebuild b/net-irc/pisg/pisg-0.71.ebuild
new file mode 100644
index 000000000000..6be7dd2a3f68
--- /dev/null
+++ b/net-irc/pisg/pisg-0.71.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2007 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/pisg/pisg-0.71.ebuild,v 1.1 2007/04/10 17:19:17 welp Exp $
+
+inherit perl-app
+
+DESCRIPTION="Perl IRC Statistics Generator"
+HOMEPAGE="http://pisg.sourceforge.net/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+
+IUSE=""
+
+RDEPEND="dev-lang/perl
+ dev-perl/Text-Iconv"
+DEPEND="dev-lang/perl
+ >=sys-apps/sed-4"
+
+src_unpack() {
+ unpack ${A}
+
+ sed -i \
+ -e 's!lang\.txt!/usr/share/pisg/lang.txt!' \
+ -e 's!layout/!/usr/share/pisg/layout/!' \
+ "${S}"/modules/Pisg.pm \
+ || die "sed failed"
+}
+
+src_compile() {
+ einfo "Nothing to compile"
+}
+
+src_install() {
+ perlinfo
+
+ dobin pisg || die "dobin failed"
+
+ insinto "${VENDOR_LIB}"
+ 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 "The pisg images have been installed in /usr/share/pisg/gfx"
+}