blob: b04caf81b2f330f6ef54c153c81ed86138daa9a3 (
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
|
# Copyright 2013-2014 Thomas Carrie
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
inherit eutils
DESCRIPTION="If you want to use puppet without the puppet server, you can use it via git with a recent puppet setup via rubygems"
HOMEPAGE="http://thocar.org/tarballs/"
SRC_URI="http://thocar.org/tarballs/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="alpha amd64 arm x86"
IUSE=""
DEPEND=""
RDEPEND=">=dev-vcs/git-1.7.0
virtual/rubygems"
src_install() {
# http://devmanual.gentoo.org/function-reference/install-functions/
dobin thoPuppetBootstrap
}
|