logo

overlay

My own overlay for experimentations, use with caution, no support is provided git clone https://hacktivis.me/git/overlay.git
commit: c1b4d84039c15895b00cbe833f22018007582093
parent 8cd725b60d33aa7f530eeffdd5bee24386f691a6
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Wed, 20 Mar 2024 20:42:33 +0100

net-nntp/suck: treeclean

Diffstat:

Dnet-nntp/suck/Manifest1-
Dnet-nntp/suck/metadata.xml15---------------
Dnet-nntp/suck/suck-4.3.4.ebuild58----------------------------------------------------------
3 files changed, 0 insertions(+), 74 deletions(-)

diff --git a/net-nntp/suck/Manifest b/net-nntp/suck/Manifest @@ -1 +0,0 @@ -DIST suck-4.3.4.tar.gz 153774 BLAKE2B dc7943af43a305386872995a27b6e2faf34949813960314cbf85c4f2ad1658107480cdf77241394aa031270afc3faab5fbd30ec19559fb3d4d261fd8fa5e3416 SHA512 79892cfce1b569bbd5fb6468a919d77bce82a533c1b70369ab88a2066dc3d4396480b9a56b25e960d6e49cd0f9abad605d841693f086c9d07913798d7ac99730 diff --git a/net-nntp/suck/metadata.xml b/net-nntp/suck/metadata.xml @@ -1,15 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> - <maintainer type="person"> - <email>contact@hacktivis.me</email> - <name>Haelwenn (lanodan) Monnier</name> - </maintainer> - <maintainer type="project"> - <email>proxy-maint@gentoo.org</email> - <name>Proxy Maintainers</name> - </maintainer> - <upstream> - <remote-id type="github">lazarus-pkgs/suck</remote-id> - </upstream> -</pkgmetadata> diff --git a/net-nntp/suck/suck-4.3.4.ebuild b/net-nntp/suck/suck-4.3.4.ebuild @@ -1,58 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 -inherit autotools - -DESCRIPTION="Grab news from a remote NNTP server and feed them to another" -HOMEPAGE="https://lazarus-pkgs.github.io/lazarus-pkgs/suck.html" -SRC_URI="https://github.com/lazarus-pkgs/suck/archive/${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="public-domain" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="perl ssl" - -RDEPEND=" - sys-libs/gdbm:= - ssl? ( dev-libs/openssl:0= ) -" -DEPEND="${RDEPEND} - sys-libs/db - perl? ( dev-lang/perl ) -" - -src_prepare() { - default - - # Fix paths to the locations in Gentoo - sed -i \ - -e 's:/usr/bin/rnews:/usr/$(get_libdir)/news/bin/rnews:' \ - -e 's:/var/lib/news/history:/var/spool/news/db/history:' \ - suck_config.h || die "path adaption sed failed" - - eautoreconf -} - -src_configure() { - use ssl || sed -i -e 's/^SSL_/#SSL_/' Makefile.in || die "ssl sed failed" - use perl || sed -i -e 's/^PERL_/#PERL_/' Makefile.in || die "perl sed failed" - - econf --without-inn-lib --without-inn-include -} - -src_compile() { - emake phrases.h - emake all lpost -} - -src_install() { - dobin lmove lpost rpost suck testhost - doman man/* - dodoc CHANGELOG CONTENTS README* - docinto java - dodoc java/* - docinto perl - dodoc perl/* - docinto sample - dodoc sample/* -}