blob: 9ae51b8e35d76ee4467b52c6f2486e60f2a4d360 (
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
39
40
41
42
43
44
45
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-ruby/mail/mail-2.2.17.ebuild,v 1.1 2011/04/20 05:57:51 graaff Exp $
EAPI=2
USE_RUBY="ruby18 ree18"
RUBY_FAKEGEM_TASK_TEST="spec"
RUBY_FAKEGEM_DOCDIR="rdoc"
RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.rdoc TODO.rdoc"
RUBY_FAKEGEM_GEMSPEC="mail.gemspec"
inherit ruby-fakegem
GITHUB_USER="mikel"
COMMIT="c2dd1ca11886e4ac7f6cafc0fd638f71e6a72dd5"
DESCRIPTION="An email handling library"
HOMEPAGE="https://github.com/mikel/mail"
SRC_URI="https://github.com/${GITHUB_USER}/mail/tarball/${PV} -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
S="${WORKDIR}/${GITHUB_USER}-${PN}-*"
ruby_add_rdepend "
>=dev-ruby/activesupport-2.3.6
>=dev-ruby/i18n-0.4.0
>=dev-ruby/mime-types-1.16
>=dev-ruby/treetop-1.4.8"
ruby_add_bdepend "doc? ( dev-ruby/rspec:0 )
test? ( dev-ruby/rspec:0 )"
all_ruby_prepare() {
sed -i -e '/[Bb]undle/d' -e '6d' Rakefile || die "Unable to remove Bundler code."
# Fix up dependencies to match our own.
sed -i -e 's/~>/>=/' mail.gemspec || die "Unable to fix up dependencies."
}
|