blob: 50c791424fd271e8f16785057f993291119ed8a1 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-gfx/splash-themes-livedvd/splash-themes-livedvd-12.0.ebuild,v 1.1 2012/03/01 20:48:48 tampakrap Exp $
EAPI=4
inherit eutils
DESCRIPTION="Gentoo theme for gensplash consoles"
HOMEPAGE="http://www.gentoo.org/"
SRC_URI="http://dev.gentoo.org/~tampakrap/tarballs/${P}.tar.bz2"
LICENSE="Artistic GPL-2 as-is"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RESTRICT="binchecks strip"
DEPEND=">=media-gfx/splashutils-1.4.1[png]"
RDEPEND="${DEPEND}"
src_prepare() {
sed -i -e 's:/sbin/functions.sh:/etc/init.d/functions.sh:' scripts/rc_init-pre
}
src_install() {
dodir /etc/splash/livedvd-${PV}
insinto /etc/splash/livedvd-${PV}
doins -r *
}
|