summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Wegener <swegener@gentoo.org>2006-10-22 21:28:01 +0000
committerSven Wegener <swegener@gentoo.org>2006-10-22 21:28:01 +0000
commita2b34a368ae204817cb629f629427058e8cbd71c (patch)
treef361aed215f5a80dc355d4d34cb12f9984f2a77e /net-irc
parentStable on Alpha. (diff)
downloadgentoo-2-a2b34a368ae204817cb629f629427058e8cbd71c.tar.gz
gentoo-2-a2b34a368ae204817cb629f629427058e8cbd71c.tar.bz2
gentoo-2-a2b34a368ae204817cb629f629427058e8cbd71c.zip
Version bump.
(Portage version: 2.1.2_pre3-r6)
Diffstat (limited to 'net-irc')
-rw-r--r--net-irc/pisg/ChangeLog7
-rw-r--r--net-irc/pisg/files/digest-pisg-0.703
-rw-r--r--net-irc/pisg/pisg-0.70.ebuild53
3 files changed, 62 insertions, 1 deletions
diff --git a/net-irc/pisg/ChangeLog b/net-irc/pisg/ChangeLog
index ceb727838e56..f28d3599d33f 100644
--- a/net-irc/pisg/ChangeLog
+++ b/net-irc/pisg/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-irc/pisg
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/pisg/ChangeLog,v 1.45 2006/09/05 09:09:25 swegener Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-irc/pisg/ChangeLog,v 1.46 2006/10/22 21:28:01 swegener Exp $
+
+*pisg-0.70 (22 Oct 2006)
+
+ 22 Oct 2006; Sven Wegener <swegener@gentoo.org> +pisg-0.70.ebuild:
+ Version bump.
*pisg-0.69 (05 Sep 2006)
diff --git a/net-irc/pisg/files/digest-pisg-0.70 b/net-irc/pisg/files/digest-pisg-0.70
new file mode 100644
index 000000000000..bafc293fe4ca
--- /dev/null
+++ b/net-irc/pisg/files/digest-pisg-0.70
@@ -0,0 +1,3 @@
+MD5 870c5ddf353c70d32159ac2dd310efc7 pisg-0.70.tar.gz 230711
+RMD160 26ce4757a5951e02dbab654c075ce45f8a9bd236 pisg-0.70.tar.gz 230711
+SHA256 a2e127f16a63a872d08312832b03023bd1569e8329d5db4b9ac384f163b244bc pisg-0.70.tar.gz 230711
diff --git a/net-irc/pisg/pisg-0.70.ebuild b/net-irc/pisg/pisg-0.70.ebuild
new file mode 100644
index 000000000000..8b43d4b7eb4a
--- /dev/null
+++ b/net-irc/pisg/pisg-0.70.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/pisg/pisg-0.70.ebuild,v 1.1 2006/10/22 21:28:01 swegener 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"
+
+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_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
+ einfo "The pisg images have been installed in /usr/share/pisg/gfx"
+ einfo
+}