blob: d4d938e7cf745758243364225d39889a39d2a645 (
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
46
47
48
49
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
USE_RUBY="ruby21"
inherit ruby-single versionator
DESCRIPTION="Command-line tools that serve as client interface to the Amazon EC2 web service"
HOMEPAGE="http://developer.amazonwebservices.com/connect/entry.jspa?externalID=368&categoryID=88"
SRC_URI="http://s3.amazonaws.com/ec2-downloads/${P}.zip"
LICENSE="Amazon
|| ( Ruby GPL-2 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
DEPEND="app-arch/unzip"
RDEPEND="
${RUBY_DEPS}
virtual/ruby-ssl
net-misc/rsync
net-misc/curl"
src_prepare() {
# Remove a left behind license file.
rm lib/ec2/oem/LICENSE.txt || die 'Removal of LICENSE failed.'
}
src_install() {
dobin bin/*
insinto /usr
doins -r lib
insinto /etc/ec2/amitools
doins etc/ec2/amitools/*
dodir /etc/env.d
echo "EC2_AMITOOL_HOME=/usr" >> "${T}"/99${PN} || die "Can't write environment variable."
doenvd "${T}"/99${PN}
}
pkg_postinst() {
ewarn "Remember to run \`env-update && source /etc/profile\` if you plan"
ewarn "to use these tools in a shell before logging out (or restarting"
ewarn "your login manager)."
}
|