blob: 54d8a0b0fc486a11ab0b2f3ebf8bedeba3eea7fd (
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
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $ Header: $
inherit kde-base
need-kde 3
S=${WORKDIR}/ksplashml-${PV}
DESCRIPTION="Fancy splash-screen for KDE 3.x"
SRC_URI="http://www.shadowcom.net/Software/ksplash-ml/ksplashml-${PV}.tgz"
HOMEPAGE="http://www.shadowcom.net/Software/ksplash-ml"
newdepend ">=kde-base/kdebase-3.0"
LICENSE="ksplash-ml"
KEYWORDS="x86 ~ppc"
src_install() {
kde_src_install
dodir /etc/env.d
echo "KSPLASH=${PREFIX}/bin/ksplash" > ${D}/etc/env.d/90ksplash-ml
}
|