diff options
author | Dawid Węgliński <cla@gentoo.org> | 2009-03-07 22:45:38 +0000 |
---|---|---|
committer | Dawid Węgliński <cla@gentoo.org> | 2009-03-07 22:45:38 +0000 |
commit | ae6b80db091214069661ab8e2092c72ca59b30dc (patch) | |
tree | 940700c934ff79a2e00e2a28233e05ef3d5badda /net-nntp | |
parent | use EAPI 2 for USE flag check (diff) | |
download | gentoo-2-ae6b80db091214069661ab8e2092c72ca59b30dc.tar.gz gentoo-2-ae6b80db091214069661ab8e2092c72ca59b30dc.tar.bz2 gentoo-2-ae6b80db091214069661ab8e2092c72ca59b30dc.zip |
Migration to EAPI 2
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'net-nntp')
-rw-r--r-- | net-nntp/tin/ChangeLog | 7 | ||||
-rw-r--r-- | net-nntp/tin/tin-1.8.3.ebuild | 14 |
2 files changed, 13 insertions, 8 deletions
diff --git a/net-nntp/tin/ChangeLog b/net-nntp/tin/ChangeLog index 3f31acda9bc4..e84c8d52c97a 100644 --- a/net-nntp/tin/ChangeLog +++ b/net-nntp/tin/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-nntp/tin -# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nntp/tin/ChangeLog,v 1.20 2008/09/23 07:22:00 corsair Exp $ +# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-nntp/tin/ChangeLog,v 1.21 2009/03/07 22:45:38 cla Exp $ + + 07 Mar 2009; Dawid Węgliński <cla@gentoo.org> tin-1.8.3.ebuild: + Migration to EAPI 2 23 Sep 2008; Markus Rothe <corsair@gentoo.org> tin-1.8.3.ebuild: Stable on ppc diff --git a/net-nntp/tin/tin-1.8.3.ebuild b/net-nntp/tin/tin-1.8.3.ebuild index 7057ebed8835..6a1002c15780 100644 --- a/net-nntp/tin/tin-1.8.3.ebuild +++ b/net-nntp/tin/tin-1.8.3.ebuild @@ -1,6 +1,8 @@ -# Copyright 1999-2008 Gentoo Foundation +# Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-nntp/tin/tin-1.8.3.ebuild,v 1.4 2008/09/23 07:22:00 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nntp/tin/tin-1.8.3.ebuild,v 1.5 2009/03/07 22:45:38 cla Exp $ + +EAPI="2" inherit versionator eutils @@ -13,11 +15,11 @@ SLOT="0" KEYWORDS="~amd64 arm ia64 ppc sparc x86" IUSE="crypt debug idn ipv6 nls unicode" -DEPEND="sys-libs/ncurses - dev-libs/libpcre +DEPEND="dev-libs/libpcre dev-libs/uulib idn? ( net-dns/libidn ) - unicode? ( dev-libs/icu ) + unicode? ( dev-libs/icu sys-libs/ncurses[unicode] ) + !unicode? ( sys-libs/ncurses ) nls? ( sys-devel/gettext ) crypt? ( app-crypt/gnupg )" RDEPEND="${DEPEND} @@ -37,7 +39,7 @@ src_unpack() { epatch "${FILESDIR}"/1.8.2-various.patch } -src_compile() { +src_configure() { local screen="ncurses" use unicode && screen="ncursesw" |