diff options
author | Greg Kroah-Hartman <gregkh@gentoo.org> | 2009-02-14 06:48:46 +0000 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@gentoo.org> | 2009-02-14 06:48:46 +0000 |
commit | 623b38629ac4ac22f4521705fde6ad52f4c9abfd (patch) | |
tree | 1782812ac63f15f38adb86806ed0567e4c1dc7fb /net-misc/bti | |
parent | whitespace (diff) | |
download | gentoo-2-623b38629ac4ac22f4521705fde6ad52f4c9abfd.tar.gz gentoo-2-623b38629ac4ac22f4521705fde6ad52f4c9abfd.tar.bz2 gentoo-2-623b38629ac4ac22f4521705fde6ad52f4c9abfd.zip |
014 bump
(Portage version: 2.2_rc23/cvs/Linux i686)
Diffstat (limited to 'net-misc/bti')
-rw-r--r-- | net-misc/bti/ChangeLog | 5 | ||||
-rw-r--r-- | net-misc/bti/bti-014.ebuild | 24 |
2 files changed, 28 insertions, 1 deletions
diff --git a/net-misc/bti/ChangeLog b/net-misc/bti/ChangeLog index 5f54047212f1..1674eca80d41 100644 --- a/net-misc/bti/ChangeLog +++ b/net-misc/bti/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-misc/bti # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-misc/bti/ChangeLog,v 1.6 2009/02/04 18:22:16 gregkh Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-misc/bti/ChangeLog,v 1.7 2009/02/14 06:48:46 gregkh Exp $ + + 14 Feb 2009; Greg Kroah-Hartman <gregkh@gentoo.org> +bti-014.ebuild: + 014 version bump, fixed bad problem in 013 *bti-013 (04 Feb 2009) diff --git a/net-misc/bti/bti-014.ebuild b/net-misc/bti/bti-014.ebuild new file mode 100644 index 000000000000..a230bbe5de43 --- /dev/null +++ b/net-misc/bti/bti-014.ebuild @@ -0,0 +1,24 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-misc/bti/bti-014.ebuild,v 1.1 2009/02/14 06:48:46 gregkh Exp $ + +inherit bash-completion + +DESCRIPTION="A command line twitter/identi.ca client" +HOMEPAGE="http://www.kernel.org/pub/linux/kernel/people/gregkh/bti/" +SRC_URI="mirror://kernel/linux/kernel/people/gregkh/bti/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +DEPEND="net-misc/curl sys-libs/readline" +RDEPEND="${DEPEND}" + +src_install() { + doman bti.1 || die "bti.1 could not be installed" + dobin bti || die "bti could not be installed" + dodoc bti.example README RELEASE-NOTES || + die "bti documentation could not be installed" + dobashcompletion bti-bashcompletion +} |