summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2023-12-16 09:25:25 +0000
committerSam James <sam@gentoo.org>2023-12-16 09:30:53 +0000
commitc67aea5f5f79cfdbb9a3ae5f8f4fe476ae44b59a (patch)
tree105b444cbd4c44bddfc1905dc82535c33312ac9a /net-nntp
parentdev-util/heaptrack: fix modern C issue(s) (diff)
downloadgentoo-c67aea5f5f79cfdbb9a3ae5f8f4fe476ae44b59a.tar.gz
gentoo-c67aea5f5f79cfdbb9a3ae5f8f4fe476ae44b59a.tar.bz2
gentoo-c67aea5f5f79cfdbb9a3ae5f8f4fe476ae44b59a.zip
net-nntp/tin: drop 2.6.1-r1
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-nntp')
-rw-r--r--net-nntp/tin/Manifest1
-rw-r--r--net-nntp/tin/tin-2.6.1-r1.ebuild88
2 files changed, 0 insertions, 89 deletions
diff --git a/net-nntp/tin/Manifest b/net-nntp/tin/Manifest
index a1a8f0c73e92..557d1afd2fbd 100644
--- a/net-nntp/tin/Manifest
+++ b/net-nntp/tin/Manifest
@@ -1,2 +1 @@
-DIST tin-2.6.1.tar.xz 1570500 BLAKE2B ec9c54b8b89ecd33a42ede37c8db50828de2dce56ddff01900121903a18d73bde8a06733ca2dfb72c676eb373b5ea874cecb9a1ee7890ada4ad6539d9ff1a435 SHA512 dc9ace5e24cac1efcaac25df1747dd435573130cff4e9c846c89e8faaed8e8120d66a2021332c01f350744155bcb7be608657285560a1a2457b4635cc8fa22b3
DIST tin-2.6.2.tar.xz 1598732 BLAKE2B 0e5bac9a711fb69e64d64b4f0c070d456f38f727e7b7aa794ad5ada8695c2174023964b8f07d2e7d6add51cf0c7c3102965bef653a7e873275747145cb70dbe2 SHA512 4c9e0edb3268d57fb89d9d53a90e8a5ba73da7c1da63c834224bed0f763502a7c3dd325351d3e57b1ddcb57494a84228cc38f227c49300b759fad8d112b1cac1
diff --git a/net-nntp/tin/tin-2.6.1-r1.ebuild b/net-nntp/tin/tin-2.6.1-r1.ebuild
deleted file mode 100644
index cc1eac16cc3e..000000000000
--- a/net-nntp/tin/tin-2.6.1-r1.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit optfeature toolchain-funcs
-
-DESCRIPTION="A threaded NNTP and spool based UseNet newsreader"
-HOMEPAGE="http://www.tin.org/"
-SRC_URI="ftp://ftp.tin.org/pub/news/clients/tin/stable/${P}.tar.xz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 arm ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="cancel-locks debug gpg nls sasl socks5"
-
-RDEPEND="
- dev-libs/icu:=
- dev-libs/libpcre:3
- dev-libs/uulib
- sys-libs/ncurses:=[unicode(+)]
- cancel-locks? ( >=net-libs/canlock-3.0:= )
- gpg? ( app-crypt/gnupg )
- nls? ( virtual/libintl )
- sasl? ( virtual/gsasl )
- socks5? ( net-proxy/dante )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
- virtual/pkgconfig
- app-alternatives/yacc
-"
-
-DOCS=(
- README{,.MAC,.WIN}
- doc/{CHANGES{,.old},CREDITS,TODO,WHATSNEW,filtering}
-)
-
-PATCHES=(
- "${FILESDIR}"/${PN}-2.6.1-configure-clang16.patch
-)
-
-src_configure() {
- tc-export AR CC RANLIB
-
- local myeconfargs=(
- $(use_enable cancel-locks) $(use_with cancel-locks canlock)
- $(use_enable debug)
- $(use_enable gpg pgp-gpg)
- $(use_enable nls)
- $(use_with socks5 socks) $(use_with socks5)
- --disable-mime-strict-charset
- --enable-nntp-only
- --enable-prototypes
- --with-coffee
- --with-nntp-default-server="${TIN_DEFAULT_SERVER:-${NNTPSERVER:-news.gmane.io}}"
- --with-pcre=/usr
- --with-screen=ncursesw
-
- # set default paths for utilities
- --with-editor="${EPREFIX}"/usr/libexec/editor
- --with-gpg="${EPREFIX}"/usr/bin/gpg
- --with-ispell="${EPREFIX}"/usr/bin/aspell
- --with-mailer="${EPREFIX}"/bin/mail
- --with-metamail="${EPREFIX}"/usr/bin/metamail
- --with-sum="${EPREFIX}"/usr/bin/sum
- )
-
- econf "${myeconfargs[@]}"
-}
-
-src_compile() {
- # To build from the root dir you have to call `make build`, not just
- # `make`.
- emake build
-}
-
-src_install() {
- default
- emake DESTDIR="${D}" install_sysdefs
- emake -C src DESTDIR="${D}" install_nls_man
-
- dodoc doc/{*.sample,*.txt}
-}
-
-pkg_postinst() {
- optfeature "spell checker support" app-text/aspell
-}