blob: b6b4e822930b2ec5647d772dee813fe60b3e6b89 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/ttytter/ttytter-1.2.0.ebuild,v 1.1 2011/06/23 08:15:46 hwoarang Exp $
EAPI="2"
MY_PV="${PV}0"
DESCRIPTION="A multi-functional, console-based Twitter client"
HOMEPAGE="http://www.floodgap.com/software/ttytter/"
SRC_URI="http://www.floodgap.com/software/ttytter/dist1/${MY_PV}.txt"
LICENSE="FFSL"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND=""
RDEPEND=">=dev-lang/perl-5.8
|| ( net-misc/curl www-client/lynx )"
src_unpack() {
cp "${DISTDIR}"/${A} "${S}" || die
}
src_install() {
newbin "${S}" ttytter || die
}
pkg_postinst() {
einfo
einfo "Please consult the following webpage on how to"
einfo "configure your client."
einfo "http://www.floodgap.com/software/ttytter/dl.html"
einfo
}
|