blob: fd19f482809b7c56a019a67b157699b8fff9799c (
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-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-vcs/hub/hub-1.12.1.ebuild,v 1.2 2014/08/14 13:53:39 mrueg Exp $
EAPI="5"
USE_RUBY="ruby19"
RUBY_FAKEGEM_TASK_DOC=
RUBY_FAKEGEM_EXTRADOC="README.md"
inherit readme.gentoo ruby-fakegem
ruby_add_bdepend "
test? (
dev-ruby/webmock
dev-util/cucumber
virtual/ruby-minitest
)"
DESCRIPTION="command-line wrapper for git that makes you better at GitHub"
HOMEPAGE="https://github.com/github/hub"
SRC_URI="${HOMEPAGE}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
RDEPEND="dev-vcs/git"
DOC_CONTENTS="You may want to add 'alias git=hub' to your .{csh,bash}rc"
all_ruby_prepare() {
sed -i -e 's/Minitest/MiniTest/g' test/*.rb
}
src_install() {
ruby-ng_src_install
readme.gentoo_create_doc
}
|