41 lines
1,021 B
Bash
41 lines
1,021 B
Bash
# Copyright 1999-2011 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/net-misc/bti/bti-031.ebuild,v 1.1 2011/03/22 00:15:43 flameeyes Exp $
|
|
|
|
EAPI=2
|
|
|
|
inherit bash-completion eutils
|
|
|
|
DESCRIPTION="A command line twitter/identi.ca client"
|
|
HOMEPAGE="http://gregkh.github.com/bti/"
|
|
SRC_URI="mirror://kernel/software/web/bti/${P}.tar.bz2"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE=""
|
|
|
|
RDEPEND="net-misc/curl
|
|
dev-libs/libxml2
|
|
dev-libs/libpcre
|
|
net-libs/liboauth"
|
|
DEPEND="${RDEPEND}
|
|
dev-util/pkgconfig"
|
|
|
|
# Readline is dynamically loaded, for whatever reason, and can use
|
|
# libedit as an alternative...
|
|
RDEPEND="${RDEPEND}
|
|
|| ( sys-libs/readline dev-libs/libedit )"
|
|
|
|
src_configure() {
|
|
econf \
|
|
--disable-dependency-tracking
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "bti could not be installed"
|
|
dodoc bti.example README RELEASE-NOTES ||
|
|
die "bti documentation could not be installed"
|
|
dobashcompletion bti-bashcompletion
|
|
}
|