summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2010-01-09 19:11:53 +0000
committerJeroen Roovers <jer@gentoo.org>2010-01-09 19:11:53 +0000
commit05f6a1b36800b07c56602951fd4ab054abaa1824 (patch)
treedee6721261ac29c9410ffbbda0cb10c6eaba3ced /net-nntp
parentDescribe cancel-locks USE flag better. Do not strip. Do not install the colli... (diff)
downloadgentoo-2-05f6a1b36800b07c56602951fd4ab054abaa1824.tar.gz
gentoo-2-05f6a1b36800b07c56602951fd4ab054abaa1824.tar.bz2
gentoo-2-05f6a1b36800b07c56602951fd4ab054abaa1824.zip
Remove old.
(Portage version: 2.2_rc61/cvs/Linux i686)
Diffstat (limited to 'net-nntp')
-rw-r--r--net-nntp/tin/ChangeLog5
-rw-r--r--net-nntp/tin/tin-1.9.4.ebuild81
2 files changed, 4 insertions, 82 deletions
diff --git a/net-nntp/tin/ChangeLog b/net-nntp/tin/ChangeLog
index aba78c107df3..48fe23c8a13f 100644
--- a/net-nntp/tin/ChangeLog
+++ b/net-nntp/tin/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for net-nntp/tin
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-nntp/tin/ChangeLog,v 1.25 2010/01/09 19:11:02 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-nntp/tin/ChangeLog,v 1.26 2010/01/09 19:11:53 jer Exp $
+
+ 09 Jan 2010; Jeroen Roovers <jer@gentoo.org> -tin-1.9.4.ebuild:
+ Remove old.
*tin-1.9.4-r1 (09 Jan 2010)
diff --git a/net-nntp/tin/tin-1.9.4.ebuild b/net-nntp/tin/tin-1.9.4.ebuild
deleted file mode 100644
index ef35a5d64741..000000000000
--- a/net-nntp/tin/tin-1.9.4.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-nntp/tin/tin-1.9.4.ebuild,v 1.4 2010/01/09 19:11:02 jer Exp $
-
-EAPI="2"
-
-inherit versionator eutils
-
-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 ~ia64 ~ppc ~sparc ~x86"
-IUSE="cancel-locks crypt debug evil forgery idn ipv6 nls unicode socks5 +etiquette"
-
-DEPEND="
- crypt? ( app-crypt/gnupg )
- idn? ( net-dns/libidn )
- nls? ( sys-devel/gettext )
- socks5? ( net-proxy/dante )
- unicode? ( dev-libs/icu )
- dev-libs/libpcre
- dev-libs/uulib
- sys-libs/ncurses[unicode?]
-"
-
-RDEPEND="${DEPEND}
- net-misc/urlview"
-
-src_prepare() {
- # Do not strip
- sed -i src/Makefile.in -e '388s|-s ||g' || die "sed src/Makefile.in failed"
-}
-
-src_compile() {
- emake build || die "emake 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"
-
- 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 crypt pgp-gpg) \
- $(use_enable nls) \
- $(use_enable cancel-locks) \
- $(use_with socks5) \
- ${myconf}
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "make install failed"
- rm -f "${D}"/usr/share/man/man5/{mbox,mmdf}.5
-
- dodoc doc/{CHANGES{,.old},CREDITS,TODO,WHATSNEW,*.sample,*.txt} || die "dodoc failed"
- insinto /etc/tin
- doins doc/tin.defaults || die "doins failed"
-}