Added first attempt at ripping-cluster ebuild

This commit is contained in:
2011-06-18 18:14:37 +01:00
parent 9b3004a078
commit a5426b6b4a

View File

@@ -0,0 +1,62 @@
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=3
inherit eutils
inherit git
DESCRIPTION="Distributed ripping cluster manager using HandBrake as a backend"
HOMEPAGE="http://wiki.sihnon.net/index.php/Ripping-cluster"
EGIT_REPO_URI="https://git.sihnon.net/public/handbrake-cluster-webui.git"
EGIT_BRANCH="release-${PV}"
LICENSE="bsd"
SLOT="0"
KEYWORDS="~amd64"
IUSE="webui worker client"
DEPEND=""
RDEPEND="${DEPEND}"
src_unpack() {
git_src_unpack
git_branch
}
src_install() {
insinto "/usr/lib/${PN}"
doins -r source
if use client; then
doins -r client
fi
if use webui; then
doins -r webui
fi
if use worker; then
doins -r worker
fi
insinto /etc
newins private ripping-cluster
newinitd build/ripping-cluster-worker.init-gentoo ripping-cluster-worker
}
pkg_postinst() {
elog "Please now edit config.php and dbconfig.conf."
elog "You will need to create the database manually with this version"
}