From 8a993cab0403f220b4827310588ee3d6de1916cc Mon Sep 17 00:00:00 2001 From: Brandon Philips Date: Fri, 22 Feb 2013 09:25:53 -0800 Subject: [PATCH] feat(efunctions): add initial version --- .../efunctions/efunctions-9999.ebuild | 26 +++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 sdk_container/src/third_party/coreos-overlay/coreos-base/efunctions/efunctions-9999.ebuild diff --git a/sdk_container/src/third_party/coreos-overlay/coreos-base/efunctions/efunctions-9999.ebuild b/sdk_container/src/third_party/coreos-overlay/coreos-base/efunctions/efunctions-9999.ebuild new file mode 100644 index 0000000000..6ba2636d43 --- /dev/null +++ b/sdk_container/src/third_party/coreos-overlay/coreos-base/efunctions/efunctions-9999.ebuild @@ -0,0 +1,26 @@ +# +# Copyright (c) 2013 Brandon Philips. All rights reserved. +# Distributed under the terms of the GNU General Public License v2 +# $Header:$ +# + +EAPI=2 +CROS_WORKON_PROJECT="coreos/efunctions" +CROS_WORKON_LOCALNAME="efunctions" +inherit toolchain-funcs cros-workon + +DESCRIPTION="standalone replacement for functions.sh" +HOMEPAGE="https://bitbucket.org/coreos/efunctions" +SRC_URI="" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~arm ~x86" +IUSE="" + +src_install() { + into "/usr/lib/${PN}" + dodir "${S}/efunctions" + doins "functions.sh" + dosym /usr/lib/${PN}/functions.sh /etc/init.d/functions.sh +}