69bad0631b
git-svn-id: http://svn.sabayonlinux.org/overlay@2803 d7aec97c-591d-0410-af39-a8856400b30a
45 lines
802 B
Bash
45 lines
802 B
Bash
# Copyright 2004-2009 Sabayon Linux
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
inherit eutils subversion
|
|
ESVN_REPO_URI="http://svn.sabayonlinux.org/projects/molecule/tags/${PV}"
|
|
|
|
DESCRIPTION="Release metatool used for creating Sabayon releases"
|
|
HOMEPAGE="http://www.sabayonlinux.org"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE=""
|
|
S="${WORKDIR}"/trunk
|
|
|
|
DEPEND="app-cdr/cdrtools
|
|
sys-fs/squashfs-tools
|
|
net-misc/rsync
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_compile() {
|
|
einfo "nothing to compile"
|
|
}
|
|
|
|
src_install() {
|
|
|
|
|
|
cd "${S}"
|
|
dodir /usr/$(get_libdir)/molecule
|
|
insinto /usr/$(get_libdir)/molecule
|
|
doins -r molecule
|
|
|
|
dodir /usr/bin
|
|
exeinto /usr/bin
|
|
mkdir bin
|
|
mv molecule.py bin/molecule
|
|
doexe bin/molecule
|
|
|
|
dodir /etc/molecule
|
|
insinto /etc/molecule
|
|
doins -r examples
|
|
|
|
}
|