2014-02-20 16:23:56 +04:00
|
|
|
# Copyright 1999-2014 Gentoo Foundation
|
2013-03-22 21:41:39 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-11 00:17:55 +03:00
|
|
|
# $Id$
|
2013-03-22 21:41:39 +04:00
|
|
|
|
|
|
|
EAPI="5"
|
|
|
|
PYTHON_DEPEND="*"
|
|
|
|
|
|
|
|
inherit python
|
|
|
|
|
|
|
|
DESCRIPTION="Sabayon distro-agnostic images build tool"
|
|
|
|
HOMEPAGE="http://www.sabayon.org"
|
|
|
|
SRC_URI="mirror://sabayon/${CATEGORY}/${P}.tar.bz2"
|
|
|
|
|
|
|
|
LICENSE="GPL-2"
|
|
|
|
SLOT="0"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
DEPEND="dev-util/intltool
|
|
|
|
sys-devel/gettext"
|
2014-02-20 16:23:56 +04:00
|
|
|
RDEPEND="!<dev-util/molecule-1
|
2013-03-22 21:41:39 +04:00
|
|
|
sys-process/lsof"
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
emake DESTDIR="${D}" LIBDIR="/usr/lib" \
|
|
|
|
PREFIX="/usr" SYSCONFDIR="/etc" install \
|
|
|
|
|| die "emake install failed"
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postinst() {
|
|
|
|
python_mod_optimize "/usr/lib/molecule"
|
|
|
|
}
|
|
|
|
|
|
|
|
pkg_postrm() {
|
|
|
|
python_mod_cleanup "/usr/lib/molecule"
|
|
|
|
}
|