diff options
Diffstat (limited to 'net-nntp/tin')
-rw-r--r-- | net-nntp/tin/Manifest | 2 | ||||
-rw-r--r-- | net-nntp/tin/tin-2.6.0.ebuild | 87 |
2 files changed, 0 insertions, 89 deletions
diff --git a/net-nntp/tin/Manifest b/net-nntp/tin/Manifest index f330e6836404..1849d14f576e 100644 --- a/net-nntp/tin/Manifest +++ b/net-nntp/tin/Manifest @@ -1,5 +1,3 @@ -DIST tin-2.6.0.tar.xz 1575564 BLAKE2B 2f42261457b359c63461953335f25de21fd3e54b3730b5db39daf0f25929e8c39a4c89be4d558bed9ce81801d2e3cad3d163c1827d2f3064144d8b2bf34ae645 SHA512 d843bd313fd144fbb5f4c40e3f0f776cab3a974494adc7004ee265235ab538dde520bc72c956d5a8517225fdb50e754b444f25bd3b661ddf51ff9e4135904862 DIST tin-2.6.1.tar.xz 1570500 BLAKE2B ec9c54b8b89ecd33a42ede37c8db50828de2dce56ddff01900121903a18d73bde8a06733ca2dfb72c676eb373b5ea874cecb9a1ee7890ada4ad6539d9ff1a435 SHA512 dc9ace5e24cac1efcaac25df1747dd435573130cff4e9c846c89e8faaed8e8120d66a2021332c01f350744155bcb7be608657285560a1a2457b4635cc8fa22b3 -EBUILD tin-2.6.0.ebuild 2012 BLAKE2B 8581e98cc3f83f1bf54baabdaa0330c1ec0e43ab6a8bc2baaf633804c41ebc0df59c802e18a60a2abf3a92682da1c79470ad1f511f63a13f0e74d681b44cb744 SHA512 681e501d03e8ae70bfd45f253e70b83ccad34b33ab52a2a3257ac0abeb4d28efed5ae78d10822f5da6f747ce68b15b0480272ed488766264126ac1be83fd7337 EBUILD tin-2.6.1.ebuild 2015 BLAKE2B e9f5f192c1059ad467ec9b9f003f24728d0adc12e5ed96db6909d4e099da358e5ee87102456c7f6ce153fb5da0816bdc04deb1f481bc8fd9a833b100308f8a68 SHA512 1439afa59987a6503a0a19e2d59070c524930d6e14c12b5d17e3622e7dec585159fe454c694cd940ececf82fdd3e4dfc218c8004057b3bd49335d189290639d1 MISC metadata.xml 408 BLAKE2B a89a2128685a8dc089ba37438352ae8c7171b74c90a8f838a5b7d930b142a90e6d69672ec4ec3f4e97e71c6b38ef9daf988bd5b46d6ccc9f3e4aa0f173075679 SHA512 26855098ca6c2da9fa4edf5620be29402f3c854280e3ca1b26a43af9d630ca34d229a34cc7b513c20c0a03c9e500830fc586f0086668042cff645d08741306b3 diff --git a/net-nntp/tin/tin-2.6.0.ebuild b/net-nntp/tin/tin-2.6.0.ebuild deleted file mode 100644 index 4ed62f8cc87d..000000000000 --- a/net-nntp/tin/tin-2.6.0.ebuild +++ /dev/null @@ -1,87 +0,0 @@ -# Copyright 1999-2021 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 - virtual/yacc -" - -DOCS=( - README{,.MAC,.WIN} - doc/{CHANGES{,.old},CREDITS,TODO,WHATSNEW,filtering} -) - -src_configure() { - tc-export AR CC RANLIB - - econf_args=( - $(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 - econf_args+=( - --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 "${econf_args[@]}" -} - -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 "view MIME articles" net-mail/metamail - optfeature "spell checker support" app-text/aspell -} |