Gentoo Archives: gentoo-commits

From: Pacho Ramos <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-nntp/suck/
Date: Sun, 04 Nov 2018 13:50:22
Message-Id: 1541339409.0683984c3574aa2f18f97f7231e21fe63bde437c.pacho@gentoo
1 commit: 0683984c3574aa2f18f97f7231e21fe63bde437c
2 Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
3 AuthorDate: Sun Nov 4 13:48:52 2018 +0000
4 Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
5 CommitDate: Sun Nov 4 13:50:09 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0683984c
7
8 net-nntp/suck: Drop old
9
10 Signed-off-by: Pacho Ramos <pacho <AT> gentoo.org>
11 Package-Manager: Portage-2.3.51, Repoman-2.3.11
12
13 net-nntp/suck/suck-4.3.3.ebuild | 61 -----------------------------------------
14 1 file changed, 61 deletions(-)
15
16 diff --git a/net-nntp/suck/suck-4.3.3.ebuild b/net-nntp/suck/suck-4.3.3.ebuild
17 deleted file mode 100644
18 index 684bae61e05..00000000000
19 --- a/net-nntp/suck/suck-4.3.3.ebuild
20 +++ /dev/null
21 @@ -1,61 +0,0 @@
22 -# Copyright 1999-2018 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -inherit autotools
27 -
28 -DESCRIPTION="Grab news from a remote NNTP server and feed them to another"
29 -HOMEPAGE="https://lazarus-pkgs.github.io/lazarus-pkgs/suck.html"
30 -SRC_URI="https://github.com/lazarus-pkgs/suck/archive/${PV}.tar.gz -> ${P}.tar.gz"
31 -LICENSE="public-domain"
32 -SLOT="0"
33 -KEYWORDS="~amd64 ~ppc ~x86"
34 -IUSE="perl ssl"
35 -
36 -COMMON_DEPEND="sys-libs/gdbm:=
37 - ssl? ( dev-libs/openssl:0= )"
38 -
39 -DEPEND="${COMMON_DEPEND}
40 - sys-libs/db
41 - perl? ( dev-lang/perl )"
42 -
43 -RDEPEND="${COMMON_DEPEND}
44 - net-nntp/inn"
45 -
46 -PATCHES=( "${FILESDIR}/${PV}-fputs.patch" )
47 -
48 -src_prepare() {
49 - default
50 -
51 - # Fix paths to the locations in Gentoo
52 - sed -i \
53 - -e 's:/usr/bin/rnews:/usr/$(get_libdir)/news/bin/rnews:' \
54 - -e 's:/var/lib/news/history:/var/spool/news/db/history:' \
55 - suck_config.h || die "path adaption sed failed"
56 -
57 - eautoreconf
58 -}
59 -
60 -src_configure() {
61 - use ssl || sed -i -e 's/^SSL_/#SSL_/' Makefile.in || die "ssl sed failed"
62 - use perl || sed -i -e 's/^PERL_/#PERL_/' Makefile.in || die "perl sed failed"
63 -
64 - econf
65 -}
66 -
67 -src_compile() {
68 - emake phrases.h
69 - emake all lpost
70 -}
71 -
72 -src_install() {
73 - dobin lmove lpost rpost suck testhost
74 - doman man/*
75 - dodoc CHANGELOG CONTENTS README*
76 - docinto java
77 - dodoc java/*
78 - docinto perl
79 - dodoc perl/*
80 - docinto sample
81 - dodoc sample/*
82 -}