Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/ircstats/
Date: Fri, 15 Feb 2019 23:13:04
Message-Id: 1550272307.efb3647a77f0436c4bf4008b9f97aabf53212fdf.monsieurp@gentoo
1 commit: efb3647a77f0436c4bf4008b9f97aabf53212fdf
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Feb 14 22:56:48 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Fri Feb 15 23:11:47 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efb3647a
7
8 net-irc/ircstats: version bump.
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 net-irc/ircstats/Manifest | 1 +
14 net-irc/ircstats/ircstats-1.2.ebuild | 34 ++++++++++++++++++++++++++++++++++
15 2 files changed, 35 insertions(+)
16
17 diff --git a/net-irc/ircstats/Manifest b/net-irc/ircstats/Manifest
18 index bdeee809b3a..fd4c016ed94 100644
19 --- a/net-irc/ircstats/Manifest
20 +++ b/net-irc/ircstats/Manifest
21 @@ -1 +1,2 @@
22 DIST IRCStats-1.1.tgz 47781 BLAKE2B dd37a9c27fb2072d8edb77eda07e3bcf197e7c43d624d60899fb3fea229e5efc6e0b4b49167aa18f2c6360680be3f56364696ec26865dd50b4bd5de13ae07147 SHA512 009beb7b0aac9138aed6f55131498eefcb004e4478e241dc17ce98b89af607b2599e8ab6879eb1dcd11c6cffad27ded3058bb875eb6516a87c830ed1eda5fe83
23 +DIST IRCStats-1.2.tgz 48036 BLAKE2B ecdfd2be915f60af81d907b2347dba9c45e47416c4777d623d4cee04111a8dc57e35e31d303eab53a4424004e7ef57ebfef3b48c484fc27959807a302512d45c SHA512 195c0b5e954526d7c55eee74172db4d55487bc415eea393a780fdfce0886fd4ebc523309b4dbb1db0a2f5eb5d941db7d71e57234b75b11650ead30aa31017b03
24
25 diff --git a/net-irc/ircstats/ircstats-1.2.ebuild b/net-irc/ircstats/ircstats-1.2.ebuild
26 new file mode 100644
27 index 00000000000..d5034507237
28 --- /dev/null
29 +++ b/net-irc/ircstats/ircstats-1.2.ebuild
30 @@ -0,0 +1,34 @@
31 +# Copyright 1999-2019 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=6
35 +
36 +inherit eutils toolchain-funcs
37 +
38 +MY_P="IRCStats-${PV}"
39 +
40 +DESCRIPTION="IRCStats is a Linux log analyzer"
41 +HOMEPAGE="https://humdi.net/ircstats/"
42 +SRC_URI="https://humdi.net/ircstats/${MY_P}.tgz"
43 +LICENSE="GPL-2"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~x86"
46 +
47 +S="${WORKDIR}"/${MY_P}
48 +
49 +src_compile() {
50 + default
51 + emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
52 +}
53 +
54 +src_install() {
55 + dobin ircstats
56 + insinto /usr/share/ircstats
57 + doins -r html languages colors
58 + dodoc CHANGES README TODO ircstats.cfg
59 +}
60 +
61 +pkg_postinst() {
62 + elog "The IRCStats files have been installed in /usr/share/ircstats"
63 + elog "You can find an example ircstats.cfg in /usr/share/doc/${PF}"
64 +}