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/irssistats/
Date: Wed, 10 Oct 2018 06:41:05
Message-Id: 1539153580.801455199cb8e1b6d1e473109d84d31e2d35ee2b.monsieurp@gentoo
1 commit: 801455199cb8e1b6d1e473109d84d31e2d35ee2b
2 Author: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
3 AuthorDate: Thu Oct 4 16:18:12 2018 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Wed Oct 10 06:39:40 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80145519
7
8 net-irc/irssistats: EAPI 6 bump.
9
10 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
11 Package-Manager: Portage-2.3.49, Repoman-2.3.10
12
13 net-irc/irssistats/irssistats-0.75-r1.ebuild | 28 ++++++++++++++++++++++++++++
14 1 file changed, 28 insertions(+)
15
16 diff --git a/net-irc/irssistats/irssistats-0.75-r1.ebuild b/net-irc/irssistats/irssistats-0.75-r1.ebuild
17 new file mode 100644
18 index 00000000000..15a1faa17b1
19 --- /dev/null
20 +++ b/net-irc/irssistats/irssistats-0.75-r1.ebuild
21 @@ -0,0 +1,28 @@
22 +# Copyright 1999-2018 Gentoo Foundation
23 +# Distributed under the terms of the GNU General Public License v2
24 +
25 +EAPI=6
26 +
27 +inherit toolchain-funcs
28 +
29 +DESCRIPTION="Generates HTML IRC stats based on irssi logs"
30 +HOMEPAGE="http://royale.zerezo.com/irssistats/"
31 +SRC_URI="http://royale.zerezo.com/irssistats/${P}.tar.gz"
32 +
33 +LICENSE="GPL-2"
34 +SLOT="0"
35 +
36 +KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~x86-fbsd"
37 +
38 +DEPEND="net-irc/irssi"
39 +
40 +src_compile() {
41 + $(tc-getCC) -o irssistats ${CFLAGS} ${LDFLAGS} irssistats.c
42 +}
43 +
44 +src_install() {
45 + emake \
46 + PRE="${D}"/usr \
47 + DOC="${D}"/usr/share/doc/${PF} \
48 + install
49 +}