summaryrefslogtreecommitdiff
blob: 65b7eb207a09e224a8a1c0df8123db68c3584899 (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
36
37
38
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

EAPI=6

inherit bash-completion-r1

DESCRIPTION="A command line twitter/identi.ca client"
HOMEPAGE="https://gregkh.github.com/bti/"
SRC_URI="mirror://kernel/software/web/bti/${P}.tar.xz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

COMMON_DEPEND="
	dev-libs/json-c
	dev-libs/libpcre
	dev-libs/libxml2
	net-libs/liboauth
	net-misc/curl
"
DEPEND="${COMMON_DEPEND}
	virtual/pkgconfig
"
# Readline is dynamically loaded, for whatever reason, and can use
# libedit as an alternative...
RDEPEND="${COMMON_DEPEND}
	|| ( sys-libs/readline dev-libs/libedit )
"

DOCS=( bti.example ChangeLog README RELEASE-NOTES )

src_install() {
	default
	newbashcomp bti-bashcompletion ${PN}
}