diff --git a/media-video/ripping-cluster/Manifest b/media-video/ripping-cluster/Manifest index 82a027a..880997a 100644 --- a/media-video/ripping-cluster/Manifest +++ b/media-video/ripping-cluster/Manifest @@ -1 +1 @@ -EBUILD ripping-cluster-0.1.ebuild 1014 RMD160 a28024960b1cd3f797613ebb852265f7d1c09aaf SHA1 5493861704383e033d5f03d693b62fb675e5082b SHA256 96acfc9d1290726fdd34c0a7e52da9ed6e2718150162214d40e0f844bbb49097 +EBUILD ripping-cluster-0.1.1.ebuild 1014 RMD160 a28024960b1cd3f797613ebb852265f7d1c09aaf SHA1 5493861704383e033d5f03d693b62fb675e5082b SHA256 96acfc9d1290726fdd34c0a7e52da9ed6e2718150162214d40e0f844bbb49097 diff --git a/media-video/ripping-cluster/ripping-cluster-0.1.1.ebuild b/media-video/ripping-cluster/ripping-cluster-0.1.1.ebuild new file mode 100644 index 0000000..2c531a4 --- /dev/null +++ b/media-video/ripping-cluster/ripping-cluster-0.1.1.ebuild @@ -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" + +} +