blob: bd39c2af29481edeff23b2855d87b42d7d9d2e6d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
# Copyright 1999-2016 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="6"
PYTHON_COMPAT=( python{2_7,3_3,3_4} )
inherit python-r1
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"
RDEPEND="!<dev-util/molecule-1
sys-process/lsof"
src_install() {
emake DESTDIR="${D}" LIBDIR="/usr/lib" \
PREFIX="/usr" SYSCONFDIR="/etc" install
}
|