blob: 0b655375b42630a7d3daf4d1daf5ee05be943803 (
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
|
# Copyright 1999-2012 Sabayon Linux and Rogentos Linux
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
EGIT_REPO_URI="git://github.com/Rogentos/roskel.git"
inherit eutils git-2 fdo-mime
DESCRIPTION="Kogaion Linux skel tree"
HOMEPAGE="http://www.rogentos.ro/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~arm ~x86"
IUSE=""
RDEPEND=""
DEPEND="!>app-misc/rogentos-skel-1
!app-misc/sabayon-skel"
src_install () {
dodir /etc/xdg/menus
cp "${S}"/* "${D}"/etc/ -Ra
chown root:root "${D}"/etc/skel -R
insinto /etc/bash/ || die "Failed to insinto"
doins "${S}"/skel/.bash/bashrc /etc/bash/ || die "Cannot copy bashrc"
}
|