summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Olexa <darkside@gentoo.org>2012-03-27 18:11:50 +0000
committerJeremy Olexa <darkside@gentoo.org>2012-03-27 18:11:50 +0000
commit3757677eb134f6c7e05298504cd4fe38ee74d231 (patch)
treec1b9f437f82dec7d12ad6f4df0ff2d8b08cedcdf /net-irc/pisg
parentMigrate to gnu-alpha mirror. (diff)
downloadgentoo-2-3757677eb134f6c7e05298504cd4fe38ee74d231.tar.gz
gentoo-2-3757677eb134f6c7e05298504cd4fe38ee74d231.tar.bz2
gentoo-2-3757677eb134f6c7e05298504cd4fe38ee74d231.zip
version bump with only minor updates
(Portage version: 2.1.10.44/cvs/Linux i686)
Diffstat (limited to 'net-irc/pisg')
-rw-r--r--net-irc/pisg/ChangeLog9
-rw-r--r--net-irc/pisg/pisg-0.73.ebuild55
2 files changed, 62 insertions, 2 deletions
diff --git a/net-irc/pisg/ChangeLog b/net-irc/pisg/ChangeLog
index 5d8f8e4ad0ea..059a066869e1 100644
--- a/net-irc/pisg/ChangeLog
+++ b/net-irc/pisg/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for net-irc/pisg
-# Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-irc/pisg/ChangeLog,v 1.59 2008/08/31 15:00:43 armin76 Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/pisg/ChangeLog,v 1.60 2012/03/27 18:11:50 darkside Exp $
+
+*pisg-0.73 (27 Mar 2012)
+
+ 27 Mar 2012; Jeremy Olexa <darkside@gentoo.org> +pisg-0.73.ebuild:
+ version bump with only minor updates
31 Aug 2008; Raúl Porcel <armin76@gentoo.org> -pisg-0.71.ebuild,
pisg-0.72.ebuild:
diff --git a/net-irc/pisg/pisg-0.73.ebuild b/net-irc/pisg/pisg-0.73.ebuild
new file mode 100644
index 000000000000..576fc8d1ebe4
--- /dev/null
+++ b/net-irc/pisg/pisg-0.73.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/net-irc/pisg/pisg-0.73.ebuild,v 1.1 2012/03/27 18:11:50 darkside 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"
+}