diff options
Diffstat (limited to 'sys-apps/openrc-wrapper/openrc-wrapper-1.2.ebuild')
-rw-r--r-- | sys-apps/openrc-wrapper/openrc-wrapper-1.2.ebuild | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/sys-apps/openrc-wrapper/openrc-wrapper-1.2.ebuild b/sys-apps/openrc-wrapper/openrc-wrapper-1.2.ebuild new file mode 100644 index 00000000..b478d0fa --- /dev/null +++ b/sys-apps/openrc-wrapper/openrc-wrapper-1.2.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: $ + +EAPI=5 +RESTRICT="mirror" +inherit eutils systemd vcs-snapshot + +DESCRIPTION="Use openrc init scripts with systemd or other init systems" +HOMEPAGE="http://github.com/vaeth/openrc-wrapper" +SRC_URI="http://github.com/vaeth/${PN}/tarball/release-${PV} -> ${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="!!<sys-fs/squash_dir-3.2" +RDEPEND="${DEPEND}" +IUSE="" + +src_prepare() { + epatch_user +} + +src_install() { + dodoc README + dobin bin/* + systemd_dounit systemd/system/* + insinto /usr/share/zsh/site-functions + doins zsh/* +} |