diff options
author | 2017-06-02 19:14:18 +0200 | |
---|---|---|
committer | 2017-06-02 19:14:18 +0200 | |
commit | d12d8da3a8519e604db3c4d0f293ff3358f89373 (patch) | |
tree | 229a0e4506f37fb8c588d426fb200cf5ada4792a /net-misc/ttytter/ttytter-2.1.00.ebuild | |
parent | dev-python/sphinxcontrib-blockdiag: [QA] Use proper distfile name (diff) | |
download | gentoo-d12d8da3a8519e604db3c4d0f293ff3358f89373.tar.gz gentoo-d12d8da3a8519e604db3c4d0f293ff3358f89373.tar.bz2 gentoo-d12d8da3a8519e604db3c4d0f293ff3358f89373.zip |
net-misc/ttytter: [QA] Use proper distfile name
Bug: https://bugs.gentoo.org/show_bug.cgi?id=619854
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'net-misc/ttytter/ttytter-2.1.00.ebuild')
-rw-r--r-- | net-misc/ttytter/ttytter-2.1.00.ebuild | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/net-misc/ttytter/ttytter-2.1.00.ebuild b/net-misc/ttytter/ttytter-2.1.00.ebuild index f659a1db7f10..585c023d30e2 100644 --- a/net-misc/ttytter/ttytter-2.1.00.ebuild +++ b/net-misc/ttytter/ttytter-2.1.00.ebuild @@ -1,35 +1,35 @@ -# Copyright 1999-2013 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=6 -inherit readme.gentoo +inherit readme.gentoo-r1 DESCRIPTION="A multi-functional, console-based Twitter client" HOMEPAGE="http://www.floodgap.com/software/ttytter/" -SRC_URI="http://www.floodgap.com/software/ttytter/dist2/${PV}.txt" +SRC_URI="http://www.floodgap.com/software/ttytter/dist2/${PV}.txt -> ${P}.txt" LICENSE="FFSL" SLOT="0" KEYWORDS="amd64 x86" IUSE="" + DEPEND="" RDEPEND=">=dev-lang/perl-5.8 || ( net-misc/curl www-client/lynx )" -pkg_setup() { - DOC_CONTENTS="Please consult the following webpage on how to - configure your client. - http://www.floodgap.com/software/ttytter/dl.html" -} +S=${WORKDIR} -S="${WORKDIR}" +src_install() { + newbin "${DISTDIR}/${A}" ${PN} -src_unpack() { - cp "${DISTDIR}"/${A} ${WORKDIR}/${PN} || die + local DOC_CONTENTS=" + Please consult the following webpage on how to + configure your client. + http://www.floodgap.com/software/ttytter/dl.html" + readme.gentoo_create_doc } -src_install() { - dobin ${PN} - readme.gentoo_create_doc +pkg_postinst() { + readme.gentoo_print_elog } |