blob: 815796cfdd191265a900a09c5d6435907347d9e0 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI="3"
inherit eutils
DESCRIPTION="Example X"
HOMEPAGE="http://rogentos.ro/"
SRC_URI="http://pkg2.rogentos.ro/~noxis/distro/creation.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="-configurare"
RESTRICT="fetch strip"
RDEPEND=""
DEPEND=""
S="${WORKDIR}"
src_prepare() {
epatch "${FILESDIR}/creation-1.patch" || die #Aplicam patch-ul inainte
sed -i 's/Acesta/Asta/g' creation.sh || die #Sed-uim fisierul
}
src_install() {
if use configurare ; then
dodir /home/$USER/test || die #Creaza director
insinto /home/$USER/test || die #Intra in director
doins creation.sh || die #Copiaza in directorul creat
fi
if ! use configurare ; then
sed -i 's/Asta/Acesta inapoi/g' "${S}"/creation.sh || die #Schimba Asta inapoi cu Acesta, dar inapoi
fi
}
|