sys-apps/chenvr/chenvr-0.6.ebuild
author Da Risk <da_risk@beem-project.com>
Mon, 03 Oct 2011 18:13:08 +0200
changeset 24 3d61943fc211
parent 18 b20ce960cbc0
permissions -rw-r--r--
Update syndgen and chenvr to download source from personal space on elyzion.net Add heimdall a samsung galaxys flasher.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
18
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
     1
# Copyright 1999-2007 Gentoo Foundation
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
     2
# Distributed under the terms of the GNU General Public License v2
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
     3
# $Header:  $
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
     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
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
     7
DESCRIPTION="An tool to create 32 and/or 64bits chrooted Gentoo"
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
     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
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    11
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    12
LICENSE="GPL-3"
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    13
SLOT="0"
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    14
KEYWORDS="~x86 ~amd64"
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    15
IUSE="doc"
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    16
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    17
DEPEND=""
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    18
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    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
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    21
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    22
	mkdir -p ${D}usr/bin
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    23
	install chenvr ${D}usr/bin/ || die "installing chenvr script"
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    24
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    25
	mkdir -p ${D}etc
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    26
	install config/chenvr.conf ${D}etc/ || die "installing chenvr configuration"
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    27
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    28
	if use doc; then
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    29
	   doinfo doc/chenvr.info
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    30
	fi
b20ce960cbc0 Add chenvr and syndgen ebuild
Da Risk <darisk972@gmail.com>
parents:
diff changeset
    31
}