author | Da Risk <da_risk@geekorum.com> |
Fri, 13 May 2022 23:19:29 -0400 | |
changeset 249 | 5f7e05cef088 |
parent 24 | 3d61943fc211 |
permissions | -rw-r--r-- |
18 | 1 |
# Copyright 1999-2007 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
|
3 |
# $Header: $ |
|
4 |
||
24
3d61943fc211
Update syndgen and chenvr to download source from personal space on
Da Risk <da_risk@beem-project.com>
parents:
18
diff
changeset
|
5 |
EAPI="3" |
3d61943fc211
Update syndgen and chenvr to download source from personal space on
Da Risk <da_risk@beem-project.com>
parents:
18
diff
changeset
|
6 |
|
18 | 7 |
DESCRIPTION="An tool to create 32 and/or 64bits chrooted Gentoo" |
8 |
HOMEPAGE="http://tuna.lyua.org/chenvr/" |
|
24
3d61943fc211
Update syndgen and chenvr to download source from personal space on
Da Risk <da_risk@beem-project.com>
parents:
18
diff
changeset
|
9 |
# SRC_URI="http://tuna.lyua.org/downloads/${P}.tar.bz2" |
3d61943fc211
Update syndgen and chenvr to download source from personal space on
Da Risk <da_risk@beem-project.com>
parents:
18
diff
changeset
|
10 |
SRC_URI="http://openid.elyzion.net/~darisk/files/soft/${P}.tar.xz" |
18 | 11 |
|
12 |
LICENSE="GPL-3" |
|
13 |
SLOT="0" |
|
14 |
KEYWORDS="~x86 ~amd64" |
|
15 |
IUSE="doc" |
|
16 |
||
17 |
DEPEND="" |
|
18 |
||
19 |
src_install() { |
|
24
3d61943fc211
Update syndgen and chenvr to download source from personal space on
Da Risk <da_risk@beem-project.com>
parents:
18
diff
changeset
|
20 |
cd "${WORKDIR}/${P}" |
18 | 21 |
|
22 |
mkdir -p ${D}usr/bin |
|
23 |
install chenvr ${D}usr/bin/ || die "installing chenvr script" |
|
24 |
||
25 |
mkdir -p ${D}etc |
|
26 |
install config/chenvr.conf ${D}etc/ || die "installing chenvr configuration" |
|
27 |
||
28 |
if use doc; then |
|
29 |
doinfo doc/chenvr.info |
|
30 |
fi |
|
31 |
} |