blob: 2cec1d4fc6185891a2eceea21c20dbe7e8ce223c (
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/bootsplash/bootsplash-0.6.1-r7.ebuild,v 1.3 2005/01/12 00:06:53 spock Exp $
inherit eutils
IUSE=""
S=${WORKDIR}
DESCRIPTION="Graphical backgrounds for frame buffer consoles"
HOMEPAGE="http://www.bootsplash.org/ http://linux.tkdack.com/"
SRC_URI="mirror://gentoo/${PN}-core-0.6.1-r6.tar.bz2
mirror://gentoo/${PN}-themes-0.6.1.tar.bz2
mirror://gentoo/${PN}-kernel-0.6.1-r6.tar.bz2"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~amd64 ~ppc"
DEPEND=">=media-libs/freetype-2
media-libs/libmng
media-libs/lcms
!media-gfx/splashutils"
PATCHS="${FILESDIR}/0.6.1-r7-default_theme.patch"
src_compile() {
# compile utils
# the util builds but the rc scripts have not been modified
# animated boot up require patches to the baselayout package
cd ${S}/utils
emake -C fbmngplay || die
emake -C fbtruetype || die
emake -C splashutils || die
cd ${S}
}
src_install() {
# applying patchs
epatch ${PATCHS} || die "error applying patch(s) [${PATCHS}]"
# Splash utilities
exeinto /sbin
doexe utils/fbmngplay/fbmngplay{,.static}
doexe utils/fbtruetype/fbtruetype{,.static}
doexe misc/bootsplash_resize
newexe utils/splashutils/splash splash.bin
doexe misc/splash
doexe utils/splashutils/{fbresolution,getkey,progress,splashpbm}
insinto /sbin
doins misc/splash-functions.sh
exeinto /usr/lib/${PN}
doexe misc/bootsplash_resizer.pl
dodir /etc/${PN}
cp -pR themes/* ${D}/etc/${PN}
# link default config for boot images if not already set
if [ ! -e ${ROOT}/etc/bootsplash/default ]; then
dosym ./gentoo /etc/bootsplash/default
fi
exeinto /etc/init.d
doexe misc/bootsplash
insinto /etc/conf.d
newins misc/bootsplash.conf bootsplash
insinto /usr/share/${PN}
doins kernel/*.bz2 misc/grub.conf.sample misc/yaboot.conf.sample
into /
dosbin misc/bootsplash_patch misc/bootsplash_initrdgen
fperms 0754 /sbin/bootsplash_patch /sbin/bootsplash_initrdgen
}
pkg_postinst() {
# has to be done here so that the initrd images are created properly
if [ "${ROOT}" = "/" ]
then
/sbin/bootsplash_initrdgen --all
fi
# rename bootsplash config file to fit with the standard
if [ -f ${ROOT}/etc/conf.d/bootsplash.conf ]
then
mv -f ${ROOT}/etc/conf.d/bootsplash.conf ${ROOT}/etc/conf.d/bootsplash
fi
echo ""
einfo "Execute \`bootsplash_patch\` to have your kernel sources in"
einfo "/usr/src/linux patched with the Framebuffer Bootsplash patches."
einfo
einfo "You can also use:"
einfo " bootsplash_patch /path/to/your/custom/kernel/"
einfo "to patch your custom kernel sources."
echo ""
ewarn "If you have already patched the kernel then you only need to copy"
ewarn "an initrd from /usr/share/${PN} to /boot"
echo ""
einfo "Run:"
einfo " rc-update add bootsplash default"
einfo "to change the console images after startup"
echo ""
einfo "If you want to automatically generate configs for a new resolution"
einfo "you can use the \`bootsplash_resize\` script. More info:"
einfo " bootsplash_resize -h"
echo ""
ewarn "If you're using bootsplash with a pre-2.6.7 kernel, it will only"
ewarn "work in 16bpp modes."
echo ""
}
|