blob: 4667e74e146bc57100c46298bfdad184ad8056d2 (
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
41
42
43
44
45
46
|
# Copyright 1999-2012 Sabayon Promotion
# Copyright 2012 Rogentos Linux
# Distributed under the terms of the GNU General Public License v2
# Original Authors Sabayon Team
# Maintainer BlackNoxis <stefan.cristian at rogentos.ro>
EAPI=4
inherit mount-boot rogentos-artwork
DESCRIPTION="Offical Rogentos Linux Core Artwork"
HOMEPAGE="http://www.rogentos.ro"
SRC_URI=""
LICENSE="CCPL-Attribution-ShareAlike-3.0"
SLOT="0"
KEYWORDS="~arm ~x86 ~amd64"
IUSE=""
RDEPEND=">=app-admin/stability-watcher-0.1
app-misc/rogentos-version"
DEPEND="${RDEPEND}"
S="${WORKDIR}"
pkg_config() {
ewarn "This is ONLY for Sabayon-derived linux users" || die
# mount boot first
mount-boot_mount_boot_partition
# Update Sabayon initramfs images
update_kogaion_kernel_initramfs_splash
einfo "Please report bugs or glitches to"
einfo "BlackNoxis"
}
pkg_postinst() {
# mount boot first
mount-boot_mount_boot_partition
# Update Sabayon initramfs images
update_kogaion_kernel_initramfs_splash
einfo "Please report bugs or glitches to"
einfo "BlackNoxis"
}
|