summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Palimaka <kensington@gentoo.org>2013-04-01 11:30:14 +0000
committerMichael Palimaka <kensington@gentoo.org>2013-04-01 11:30:14 +0000
commit66f53e15fbc0f0e3eef7a3366444c7b2e4712aba (patch)
tree4bd85da70f752beb951198fa374aca5d36413c31 /net-nntp/tin
parentFix path handling in header wrapping code. (diff)
downloadgentoo-2-66f53e15fbc0f0e3eef7a3366444c7b2e4712aba.tar.gz
gentoo-2-66f53e15fbc0f0e3eef7a3366444c7b2e4712aba.tar.bz2
gentoo-2-66f53e15fbc0f0e3eef7a3366444c7b2e4712aba.zip
Remove old.
(Portage version: 2.1.11.59/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'net-nntp/tin')
-rw-r--r--net-nntp/tin/ChangeLog6
-rw-r--r--net-nntp/tin/tin-2.0.0.ebuild93
-rw-r--r--net-nntp/tin/tin-2.0.1.ebuild95
3 files changed, 5 insertions, 189 deletions
diff --git a/net-nntp/tin/ChangeLog b/net-nntp/tin/ChangeLog
index 014f9d925157..a57e0afc272f 100644
--- a/net-nntp/tin/ChangeLog
+++ b/net-nntp/tin/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-nntp/tin
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-nntp/tin/ChangeLog,v 1.50 2013/03/28 16:59:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-nntp/tin/ChangeLog,v 1.51 2013/04/01 11:30:14 kensington Exp $
+
+ 01 Apr 2013; Michael Palimaka <kensington@gentoo.org> -tin-2.0.0.ebuild,
+ -tin-2.0.1.ebuild:
+ Remove old.
28 Mar 2013; Agostino Sarubbo <ago@gentoo.org> tin-2.0.1-r1.ebuild:
Stable for arm, wrt bug #463134
diff --git a/net-nntp/tin/tin-2.0.0.ebuild b/net-nntp/tin/tin-2.0.0.ebuild
deleted file mode 100644
index 8431fe8cb66d..000000000000
--- a/net-nntp/tin/tin-2.0.0.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-nntp/tin/tin-2.0.0.ebuild,v 1.7 2012/06/17 18:40:55 armin76 Exp $
-
-EAPI="4"
-
-inherit eutils toolchain-funcs versionator
-
-DESCRIPTION="A threaded NNTP and spool based UseNet newsreader"
-HOMEPAGE="http://www.tin.org/"
-SRC_URI="ftp://ftp.tin.org/pub/news/clients/tin/v$(get_version_component_range 1-2)/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 arm ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="cancel-locks debug doc +etiquette evil forgery gpg idn ipv6 mime nls sasl socks5 spell unicode"
-
-RDEPEND="
- dev-libs/libpcre
- dev-libs/uulib
- gpg? ( app-crypt/gnupg )
- idn? ( net-dns/libidn )
- mime? ( net-mail/metamail )
- net-misc/urlview
- nls? ( sys-devel/gettext )
- sasl? ( virtual/gsasl )
- socks5? ( net-proxy/dante )
- sys-libs/ncurses[unicode?]
- unicode? ( dev-libs/icu )
-"
-
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
-"
-
-src_prepare() {
- # Do not strip
- sed -i src/Makefile.in -e '388s|-s ||g' || die "sed src/Makefile.in failed"
-}
-
-src_configure() {
- if use evil || use cancel-locks; then
- sed -i -e"s/# -DEVIL_INSIDE/-DEVIL_INSIDE/" src/Makefile.in
- fi
-
- if use forgery
- then
- sed -i -e"s/^CPPFLAGS.*/& -DFORGERY/" src/Makefile.in
- fi
-
- local screen="ncurses"
- use unicode && screen="ncursesw"
-
- use etiquette || myconf="${myconf} --disable-etiquette"
-
- tc-export CC
-
- econf \
- --with-pcre=/usr \
- --enable-nntp-only \
- --enable-prototypes \
- --disable-echo \
- --disable-mime-strict-charset \
- --with-coffee \
- --with-screen=${screen} \
- --with-nntp-default-server="${TIN_DEFAULT_SERVER:-${NNTPSERVER:-news.gmane.org}}" \
- $(use_enable ipv6) \
- $(use_enable debug) \
- $(use_enable gpg pgp-gpg) \
- $(use_enable nls) \
- $(use_enable cancel-locks) \
- $(use_with mime metamail /usr) \
- $(use_with spell ispell /usr) \
- $(use_with socks5 socks) $(use_with socks5) \
- ${myconf}
-}
-
-src_compile() {
- emake build
-}
-
-src_install() {
- default
-
- # File collision?
- rm -f "${ED}"/usr/share/man/man5/{mbox,mmdf}.5
-
- dodoc doc/{CHANGES{,.old},CREDITS,TODO,WHATSNEW}
- use doc && dodoc doc/{*.sample,*.txt}
- insinto /etc/tin
- doins doc/tin.defaults
-}
diff --git a/net-nntp/tin/tin-2.0.1.ebuild b/net-nntp/tin/tin-2.0.1.ebuild
deleted file mode 100644
index da2139dab483..000000000000
--- a/net-nntp/tin/tin-2.0.1.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-nntp/tin/tin-2.0.1.ebuild,v 1.7 2013/01/22 17:33:35 ago Exp $
-
-EAPI=4
-inherit autotools eutils toolchain-funcs versionator
-
-DESCRIPTION="A threaded NNTP and spool based UseNet newsreader"
-HOMEPAGE="http://www.tin.org/"
-SRC_URI="ftp://ftp.tin.org/pub/news/clients/tin/v$(get_version_component_range 1-2)/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 arm ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="cancel-locks debug doc +etiquette evil forgery gpg idn ipv6 mime nls sasl socks5 spell unicode"
-
-RDEPEND="
- dev-libs/libpcre
- dev-libs/uulib
- gpg? ( app-crypt/gnupg )
- idn? ( net-dns/libidn )
- mime? ( net-mail/metamail )
- net-misc/urlview
- nls? ( sys-devel/gettext )
- sasl? ( virtual/gsasl )
- socks5? ( net-proxy/dante )
- sys-libs/ncurses[unicode?]
- unicode? ( dev-libs/icu )
-"
-
-DEPEND="
- ${RDEPEND}
- virtual/pkgconfig
-"
-
-src_prepare() {
- # Do not strip
- sed -i src/Makefile.in -e '388s|-s ||g' || die "sed src/Makefile.in failed"
- sed -i configure.in -e '/CFLAGS/s|-g||g' || die
- eautoreconf
-}
-
-src_configure() {
- if use evil || use cancel-locks; then
- sed -i -e"s/# -DEVIL_INSIDE/-DEVIL_INSIDE/" src/Makefile.in
- fi
-
- if use forgery
- then
- sed -i -e"s/^CPPFLAGS.*/& -DFORGERY/" src/Makefile.in
- fi
-
- local screen="ncurses"
- use unicode && screen="ncursesw"
-
- use etiquette || myconf="${myconf} --disable-etiquette"
-
- tc-export AR CC RANLIB
-
- econf \
- $(use_enable cancel-locks) \
- $(use_enable debug) \
- $(use_enable gpg pgp-gpg) \
- $(use_enable ipv6) \
- $(use_enable nls) \
- $(use_with mime metamail /usr) \
- $(use_with socks5 socks) $(use_with socks5) \
- $(use_with spell ispell /usr) \
- --disable-mime-strict-charset \
- --enable-echo \
- --enable-nntp-only \
- --enable-prototypes \
- --with-coffee \
- --with-nntp-default-server="${TIN_DEFAULT_SERVER:-${NNTPSERVER:-news.gmane.org}}" \
- --with-pcre=/usr \
- --with-screen=${screen} \
- ${myconf}
-}
-
-src_compile() {
- emake build
-}
-
-src_install() {
- default
-
- # File collision?
- rm -f "${ED}"/usr/share/man/man5/{mbox,mmdf}.5
-
- dodoc doc/{CHANGES{,.old},CREDITS,TODO,WHATSNEW}
- use doc && dodoc doc/{*.sample,*.txt}
-
- insinto /etc/tin
- doins doc/tin.defaults
-}