Bump ripping-cluster version

This commit is contained in:
2011-06-18 18:38:00 +01:00
parent 618e195d16
commit 34e8c92091
2 changed files with 63 additions and 1 deletions

View File

@@ -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

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"
}