Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-irc/ii/
Date: Thu, 31 Aug 2017 10:33:37
Message-Id: 1504174392.197ceeb26c968c60f27bbaf702c07d5279f4f899.jer@gentoo
1 commit: 197ceeb26c968c60f27bbaf702c07d5279f4f899
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Thu Aug 31 10:13:12 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Thu Aug 31 10:13:12 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=197ceeb2
7
8 net-irc/ii: Old.
9
10 Package-Manager: Portage-2.3.8, Repoman-2.3.3
11
12 net-irc/ii/ii-1.7.ebuild | 39 ---------------------------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/net-irc/ii/ii-1.7.ebuild b/net-irc/ii/ii-1.7.ebuild
16 deleted file mode 100644
17 index 541535bd7dd..00000000000
18 --- a/net-irc/ii/ii-1.7.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-2017 Gentoo Foundation
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=4
25 -
26 -inherit fixheadtails toolchain-funcs
27 -
28 -DESCRIPTION="A minimalist FIFO and filesystem-based IRC client"
29 -HOMEPAGE="https://tools.suckless.org/ii/"
30 -SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz"
31 -
32 -LICENSE="MIT"
33 -SLOT="0"
34 -KEYWORDS="~amd64 ~x86 ~amd64-linux"
35 -IUSE=""
36 -
37 -src_prepare() {
38 - sed -i \
39 - -e "s/CFLAGS = -g -O0/CFLAGS += /" \
40 - -e "s/LDFLAGS =/LDFLAGS +=/" \
41 - -e /^LIBS/d \
42 - config.mk || die "sed failed to fix {C,LD}FLAGS"
43 -
44 - # enable verbose build
45 - sed -i 's/@${CC}/${CC}/' Makefile || die
46 -
47 - ht_fix_file query.sh
48 -}
49 -
50 -src_compile() {
51 - emake CC="$(tc-getCC)"
52 -}
53 -
54 -src_install() {
55 - dobin ii
56 - newbin query.sh ii-query
57 - dodoc CHANGES FAQ README
58 - doman *.1
59 -}