Gentoo Archives: gentoo-commits

From: Tim Harder <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-news/newsbeuter/
Date: Tue, 04 Oct 2016 22:28:33
Message-Id: 1475620092.2162a56ba9b944aaed6f9fd724a295e0e8d05f82.radhermit@gentoo
1 commit: 2162a56ba9b944aaed6f9fd724a295e0e8d05f82
2 Author: Tim Harder <radhermit <AT> gentoo <DOT> org>
3 AuthorDate: Tue Oct 4 22:28:12 2016 +0000
4 Commit: Tim Harder <radhermit <AT> gentoo <DOT> org>
5 CommitDate: Tue Oct 4 22:28:12 2016 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2162a56b
7
8 net-news/newsbeuter: remove old
9
10 net-news/newsbeuter/newsbeuter-2.9-r1.ebuild | 68 ----------------------------
11 1 file changed, 68 deletions(-)
12
13 diff --git a/net-news/newsbeuter/newsbeuter-2.9-r1.ebuild b/net-news/newsbeuter/newsbeuter-2.9-r1.ebuild
14 deleted file mode 100644
15 index a7b24b1..00000000
16 --- a/net-news/newsbeuter/newsbeuter-2.9-r1.ebuild
17 +++ /dev/null
18 @@ -1,68 +0,0 @@
19 -# Copyright 1999-2016 Gentoo Foundation
20 -# Distributed under the terms of the GNU General Public License v2
21 -# $Id$
22 -
23 -EAPI=6
24 -
25 -inherit toolchain-funcs
26 -
27 -DESCRIPTION="A RSS/Atom feed reader for the text console"
28 -HOMEPAGE="http://www.newsbeuter.org/index.html"
29 -SRC_URI="http://www.${PN}.org/downloads/${P}.tar.gz"
30 -
31 -LICENSE="MIT"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~ppc ~x86"
34 -IUSE="test"
35 -
36 -RDEPEND="
37 - >=dev-db/sqlite-3.5:3
38 - >=dev-libs/stfl-0.21
39 - >=net-misc/curl-7.18.0
40 - >=dev-libs/json-c-0.11:=
41 - dev-libs/libxml2
42 - sys-libs/ncurses:0=[unicode]
43 -"
44 -DEPEND="${RDEPEND}
45 - dev-lang/perl
46 - virtual/pkgconfig
47 - sys-devel/gettext
48 - test? (
49 - dev-libs/boost
50 - sys-devel/bc
51 - )
52 -"
53 -
54 -# tests require network access
55 -RESTRICT="test"
56 -
57 -PATCHES=(
58 - "${FILESDIR}"/${PN}-2.9-ncurses6.patch
59 - "${FILESDIR}"/${PN}-2.9-fix-mem-leak.patch
60 - "${FILESDIR}"/${PN}-2.9-fix-segfault.patch
61 -)
62 -
63 -src_prepare() {
64 - default
65 - sed -i 's:-ggdb::' Makefile || die
66 -}
67 -
68 -src_configure() {
69 - ./config.sh || die
70 -}
71 -
72 -src_compile() {
73 - emake prefix="/usr" CXX="$(tc-getCXX)" AR="$(tc-getAR)" RANLIB="$(tc-getRANLIB)"
74 -}
75 -
76 -src_test() {
77 - emake test
78 - # Tests fail if in ${S} rather than in ${S}/test
79 - cd "${S}"/test
80 - ./test || die
81 -}
82 -
83 -src_install() {
84 - emake DESTDIR="${D}" prefix="/usr" PACKAGE="${PF}" install
85 - dodoc AUTHORS README CHANGES
86 -}